diff --git a/baystation12.dme b/baystation12.dme index 2a8c5729dd4ea..6c3d56ef5cc19 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -3333,6 +3333,7 @@ #include "mods\_master_files\code\game\world.dm" #include "mods\_master_files\code\game\gamemodes\ert.dm" #include "mods\_master_files\code\game\objects\effects\decals\contraband.dm" +#include "mods\_master_files\code\game\objects\structures\signs.dm" #include "mods\_master_files\code\game\objects\structures\crates_lockers\closets\_closet_appearance_definitions.dm" #include "mods\_master_files\code\modules\client\asset_cache.dm" #include "mods\_master_files\code\modules\client\preferences_persist.dm" diff --git a/code/__defines/health.dm b/code/__defines/health.dm index c95c5d6314af4..1e47dfcfa94bb 100644 --- a/code/__defines/health.dm +++ b/code/__defines/health.dm @@ -85,3 +85,17 @@ #define DAMAGE_FLAG_DISPERSED FLAG(7) /// Toxin damage that should be mitigated by biological (i.e. sterile) armor #define DAMAGE_FLAG_BIO FLAG(8) + + +/// Health Status flags for `/atom/var/health_status`. +/// The atom is currently dead. +#define HEALTH_STATUS_DEAD FLAG(0) +/// The atom is currently broken. An atom is `broken` if `HEALTH_FLAG_BREAKABLE` is set and the atom's health falls below 1/2 of `health_max`. Used for certain atoms that needed an additional damage state. +#define HEALTH_STATUS_BROKEN FLAG(1) + + +/// Health Flags for `/atom/var/health_flags`. +/// The atom is 'breakable', and considered broken upon reaching 1/2 health. +#define HEALTH_FLAG_BREAKABLE FLAG(0) +/// The atom should be treated as a structure for damage calculations. +#define HEALTH_FLAG_STRUCTURE FLAG(1) diff --git a/code/__defines/items_clothing.dm b/code/__defines/items_clothing.dm index a0212eba18f02..a2d97f56b610d 100644 --- a/code/__defines/items_clothing.dm +++ b/code/__defines/items_clothing.dm @@ -20,24 +20,24 @@ #define SLOT_TIE FLAG(14) #define SLOT_HOLSTER FLAG(15) -#define ACCESSORY_SLOT_UTILITY "Utility" -#define ACCESSORY_SLOT_HOLSTER "Holster" -#define ACCESSORY_SLOT_ARMBAND "Armband" -#define ACCESSORY_SLOT_RANK "Rank" -#define ACCESSORY_SLOT_DEPT "Department" -#define ACCESSORY_SLOT_DECOR "Decor" -#define ACCESSORY_SLOT_MEDAL "Medal" -#define ACCESSORY_SLOT_INSIGNIA "Insignia" -#define ACCESSORY_SLOT_ARMOR_C "Chest armor" -#define ACCESSORY_SLOT_ARMOR_A "Arm armor" -#define ACCESSORY_SLOT_ARMOR_L "Leg armor" -#define ACCESSORY_SLOT_ARMOR_S "Armor storage" -#define ACCESSORY_SLOT_ARMOR_M "Misc armor" -#define ACCESSORY_SLOT_HELM_C "Helmet cover" -#define ACCESSORY_SLOT_HELM_D "Helmet decor" -#define ACCESSORY_SLOT_VISOR "Helmet visor" -#define ACCESSORY_SLOT_VISION "Vision modification" -#define ACCESSORY_SLOT_HUD "HUD modification" +#define ACCESSORY_SLOT_UTILITY "CU" +#define ACCESSORY_SLOT_HOLSTER "CH" +#define ACCESSORY_SLOT_ARMBAND "CA" +#define ACCESSORY_SLOT_RANK "CR" +#define ACCESSORY_SLOT_FLASH "CF" +#define ACCESSORY_SLOT_DECOR "CD" +#define ACCESSORY_SLOT_MEDAL "CM" +#define ACCESSORY_SLOT_INSIGNIA "CI" +#define ACCESSORY_SLOT_ARMOR_CHEST "AC" +#define ACCESSORY_SLOT_ARMOR_ARMS "AA" +#define ACCESSORY_SLOT_ARMOR_LEGS "AL" +#define ACCESSORY_SLOT_ARMOR_STORAGE "AS" +#define ACCESSORY_SLOT_ARMOR_MISC "AM" +#define ACCESSORY_SLOT_HELMET_COVER "HC" +#define ACCESSORY_SLOT_HELMET_DECOR "HD" +#define ACCESSORY_SLOT_HELMET_VISOR "HV" +#define ACCESSORY_SLOT_GLASSES_VISION "GV" +#define ACCESSORY_SLOT_GLASSES_HUD "GH" #define ACCESSORY_REMOVABLE FLAG(0) #define ACCESSORY_HIDDEN FLAG(1) diff --git a/code/__defines/~mods/~master_defines.dm b/code/__defines/~mods/~master_defines.dm index a56f067ae074a..60d724c789cfa 100644 --- a/code/__defines/~mods/~master_defines.dm +++ b/code/__defines/~mods/~master_defines.dm @@ -46,6 +46,15 @@ // DON_LOADOUT - End +// GUNS - Start +#define GUN_BULK_PISTOL 1 +#define GUN_BULK_REVOLVER 2 +#define GUN_BULK_SMG 3 +#define GUN_BULK_CARABINE 4 +#define GUN_BULK_SNIPER_RIFLE 6 +#define GUN_BULK_MACHINEGUN 7 +// GUNS - End + // GLIDING - Start #define DELAY2GLIDESIZE(delay) (world.icon_size / max(ceil(delay / world.tick_lag), 1)) // GLIDING - End diff --git a/code/_onclick/hud/movable_screen_objects.dm b/code/_onclick/hud/movable_screen_objects.dm index 6bb954ff40cf9..80e038d843e59 100644 --- a/code/_onclick/hud/movable_screen_objects.dm +++ b/code/_onclick/hud/movable_screen_objects.dm @@ -46,9 +46,21 @@ /obj/screen/movable/proc/encode_screen_X(X, mob/viewer) var/view = viewer.client ? viewer.client.view : world.view - if(X > view+1) - . = "EAST-[view*2 + 1-X]" - else if(X < view+1) + // [SIERRA-EDIT] + // if(X > view+1) // SIERA-EDIT - ORIGINAL + // . = "EAST-[view*2 + 1-X]" // SIERA-EDIT - ORIGINAL + // else if(X < view+1) // SIERA-EDIT - ORIGINAL + var/local_view + if(view == "19x15") + local_view = 9 + else if(view == "17x15") + local_view = 8 + else if(view == "15x15") + local_view = 7 + // [/SIERRA-EDIT] + if(X > local_view+1) + . = "EAST-[local_view*2 + 1-X]" + else if(X < local_view+1) . = "WEST+[X-1]" else . = "CENTER" @@ -71,9 +83,18 @@ /obj/screen/movable/proc/encode_screen_Y(Y, mob/viewer) var/view = viewer.client ? viewer.client.view : world.view - if(Y > view+1) - . = "NORTH-[view*2 + 1-Y]" - else if(Y < viewer.client.view+1) + // [SIERRA-EDIT] + // if(Y > view+1) // SIERA-EDIT - ORIGINAL + // . = "NORTH-[view*2 + 1-Y]" // SIERA-EDIT - ORIGINAL + // else if(Y < viewer.client.view+1) // SIERA-EDIT - ORIGINAL + var/local_view + if(view == "19x15" || view == "17x15" || view == "15x15") + local_view = 7 + // [/SIERRA-EDIT] + if(Y > local_view+1) + + . = "NORTH-[local_view*2 + 1-Y]" + else if(Y < local_view+1) . = "SOUTH+[Y-1]" else . = "CENTER" diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm index 450a0130e7709..15dc0a3aa2174 100644 --- a/code/_onclick/hud/radial.dm +++ b/code/_onclick/hud/radial.dm @@ -1,11 +1,4 @@ -#define NEXT_PAGE_ID "__next__" -#define DEFAULT_CHECK_DELAY 20 - -var/global/list/radial_menus = list() - -/obj/screen/radial/Destroy() - parent = null - return ..() +GLOBAL_LIST_EMPTY(radial_menus) /obj/screen/radial icon = 'icons/screen/radial.dmi' @@ -13,6 +6,10 @@ var/global/list/radial_menus = list() plane = HUD_PLANE var/datum/radial_menu/parent +/obj/screen/radial/Destroy() + parent = null + return ..() + /obj/screen/radial/slice icon_state = "radial_slice" var/choice @@ -55,6 +52,9 @@ var/global/list/radial_menus = list() parent.finished = TRUE /datum/radial_menu + var/const/NEXT_PAGE_ID = "__next__" + var/const/DEFAULT_CHECK_DELAY = 2 SECONDS + var/list/choices = list() //List of choice id's var/list/choices_icons = list() //choice_id -> icon var/list/choices_values = list() //choice_id -> choice @@ -316,14 +316,14 @@ var/global/list/radial_menus = list() for(var/atom/thing in check_locs) check_locs[thing] = thing.loc - if(global.radial_menus[uniqueid]) + if(GLOB.radial_menus[uniqueid]) if(!no_repeat_close) - var/datum/radial_menu/menu = global.radial_menus[uniqueid] + var/datum/radial_menu/menu = GLOB.radial_menus[uniqueid] menu.finished = TRUE return var/datum/radial_menu/menu = new - global.radial_menus[uniqueid] = menu + GLOB.radial_menus[uniqueid] = menu if(radius) menu.radius = radius if(istype(custom_check)) @@ -335,7 +335,7 @@ var/global/list/radial_menus = list() menu.wait(user, anchor, require_near, check_locs) var/answer = menu.selected_choice qdel(menu) - global.radial_menus -= uniqueid + GLOB.radial_menus -= uniqueid return answer #define RADIAL_INPUT(user, choices) show_radial_menu(user, user, choices) diff --git a/code/_onclick/hud/radial_persistent.dm b/code/_onclick/hud/radial_persistent.dm index 6c71762b68b26..44c0ab009a8ec 100644 --- a/code/_onclick/hud/radial_persistent.dm +++ b/code/_onclick/hud/radial_persistent.dm @@ -37,7 +37,7 @@ /datum/radial_menu/persistent/Destroy() QDEL_NULL(select_proc_callback) - global.radial_menus -= uniqueid + GLOB.radial_menus -= uniqueid Reset() hide() return ..() @@ -55,12 +55,12 @@ if(!uniqueid) uniqueid = "defmenu_\ref[user]_\ref[anchor]" - if(global.radial_menus[uniqueid]) + if(GLOB.radial_menus[uniqueid]) return var/datum/radial_menu/persistent/menu = new menu.uniqueid = uniqueid - global.radial_menus[uniqueid] = menu + GLOB.radial_menus[uniqueid] = menu if(radius) menu.radius = radius menu.select_proc_callback = select_proc diff --git a/code/datums/outfits/misc.dm b/code/datums/outfits/misc.dm index 4ae5405578682..f1c50326789e0 100644 --- a/code/datums/outfits/misc.dm +++ b/code/datums/outfits/misc.dm @@ -70,3 +70,11 @@ id_types = list(/obj/item/card/id/syndicate) id_pda_assignment = "Scavenger" flags = OUTFIT_HAS_BACKPACK|OUTFIT_RESET_EQUIPMENT + + +/singleton/hierarchy/outfit/anomalist + name = "Anomalist" + uniform = /obj/item/clothing/under/color/white + shoes = /obj/item/clothing/shoes/white + suit = /obj/item/clothing/suit/bio_suit/anomaly + head = /obj/item/clothing/head/bio_hood/anomaly diff --git a/code/datums/supplypacks/nonessent.dm b/code/datums/supplypacks/nonessent.dm index 57e1149b9af91..f3262fb42954d 100644 --- a/code/datums/supplypacks/nonessent.dm +++ b/code/datums/supplypacks/nonessent.dm @@ -249,7 +249,7 @@ -// [SIERRA-REMOVE] - MECHS_BY_SHEGAR - (Не нужны, т.к все эти типы камуфляжей есть в новом камуфляторы) +// [SIERRA-REMOVE] - Mechs_by_shegar - (Не нужны, т.к все эти типы камуфляжей есть в новом камуфляторы) /* /singleton/hierarchy/supply_pack/nonessent/exosuit_mod diff --git a/code/game/atoms.dm b/code/game/atoms.dm index a5dd9d49bf979..303f3d1cbc0c2 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -103,7 +103,6 @@ if (health_max) health_current = health_max - health_dead = FALSE return INITIALIZE_HINT_NORMAL @@ -303,7 +302,7 @@ . = 0 if (get_max_health()) var/damage = P.damage - if (istype(src, /obj/structure) || istype(src, /turf/simulated/wall) || istype(src, /obj/machinery)) // TODO Better conditions for non-structures that want to use structure damage + if (GET_FLAGS(health_flags, HEALTH_FLAG_STRUCTURE)) damage = P.get_structure_damage() if (!can_damage_health(damage, P.damage_type, P.damage_flags)) return diff --git a/code/game/atoms_health.dm b/code/game/atoms_health.dm index b3c43e897df09..0eab187013c5e 100644 --- a/code/game/atoms_health.dm +++ b/code/game/atoms_health.dm @@ -4,8 +4,11 @@ /// Maximum health for simple health processing. Use `get_max_health()` or `set_max_health()` to reference/modify. /atom/var/health_max -/// Boolean. Whether or not the atom is dead. Toggled by death state changes in standardized health and provided as a simple way to check for death without additional proc call overhead from `is_alive()`. -/atom/var/health_dead +/// Bitflag (Any of `HEALTH_STATUS_*`). Various health-related status flags for the atom. See `code\__defines\health.dm` for details. +/atom/var/health_status = EMPTY_BITFIELD + +/// Bitflag (Any of `HEALTH_FLAG_*`). Various health-related config flags for the atom. See `code\__defines\health.dm` for details. +/atom/var/health_flags = EMPTY_BITFIELD /** * LAZY List of damage type resistance or weakness multipliers, decimal form. Only applied to health reduction. Use `set_damage_resistance()`, `remove_damage_resistance()`, and `get_damage_resistance()` to reference/modify. @@ -48,9 +51,20 @@ /** * Whether or not the atom is currently dead. + * + * Returns boolean. */ /atom/proc/health_dead() - return health_dead + return HAS_FLAGS(health_status, HEALTH_STATUS_DEAD) + + +/** + * Whether or not the atom is currently broken. Does not consider death as broken, to minimize on recursive proc calls. + * + * Returns boolean. + */ +/atom/proc/health_broken() + return HAS_FLAGS(health_status, HEALTH_STATUS_BROKEN) /** @@ -111,15 +125,34 @@ return FALSE health_mod = round(health_mod) var/prior_health = get_current_health() - var/death_state = health_dead + var/death_state = health_dead() + var/broken_state = health_broken() + health_current = round(clamp(health_current + health_mod, 0, get_max_health())) post_health_change(health_mod, prior_health, damage_type) + + if (HAS_FLAGS(health_flags, HEALTH_FLAG_BREAKABLE)) + var/new_broken_state = health_current > floor(health_max / 2) ? FALSE : TRUE + if (new_broken_state != broken_state) + if (new_broken_state) + SET_FLAGS(health_status, HEALTH_STATUS_BROKEN) + else + CLEAR_FLAGS(health_status, HEALTH_STATUS_BROKEN) + if (!skip_death_state_change) + if (new_broken_state) + on_broken() + else + on_unbroken() + var/new_death_state = health_current > 0 ? FALSE : TRUE if (death_state == new_death_state) return FALSE - health_dead = new_death_state + if (new_death_state) + SET_FLAGS(health_status, HEALTH_STATUS_DEAD) + else + CLEAR_FLAGS(health_status, HEALTH_STATUS_DEAD) if (!skip_death_state_change) - if (health_dead) + if (new_death_state) on_death() else on_revive() @@ -192,6 +225,14 @@ /atom/proc/on_revive() return +/// Proc called when the atom transitions from unbroken to broken. Only used if `HEALTH_FLAG_BREAKABLE` is set. +/atom/proc/on_broken() + return + +/// Proc called when the atom transitions from broken to unbroken. Only used if `HEALTH_FLAG_BREAKABLE` is set. +/atom/proc/on_unbroken() + return + /** * Sets the atoms maximum health to the new value. * If `set_current_health` is `TRUE`, also sets the current health to the new value. @@ -292,4 +333,4 @@ target_atom.health_max = source_atom.health_max target_atom.health_resistances = source_atom.health_resistances target_atom.health_min_damage = source_atom.health_min_damage - target_atom.health_dead = source_atom.health_dead + target_atom.health_status = source_atom.health_status diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index 3936985f1766e..b5121f2a33068 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -172,7 +172,15 @@ var/global/list/priv_region_access priv_region_access["[A.region]"] += A.id var/list/region = priv_region_access["[code]"] - return region.Copy() + //[SIERRA-EDIT] + //Позволяет избавиться от рантайма. + //return region.Copy() + + if(region) + return region.Copy() + else + return + //[SIERRA-EDIT] /proc/get_region_accesses_name(code) switch(code) diff --git a/code/game/machinery/_machines_base/machinery.dm b/code/game/machinery/_machines_base/machinery.dm index 817f55f4d0060..43b878aad8b1f 100644 --- a/code/game/machinery/_machines_base/machinery.dm +++ b/code/game/machinery/_machines_base/machinery.dm @@ -15,6 +15,7 @@ throw_range = 5 health_resistances = DAMAGE_RESIST_ELECTRICAL + health_flags = HEALTH_FLAG_STRUCTURE /// Boolean. Whether or not the machine has been emagged. var/emagged = FALSE diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm index cc915ed707be3..7a24525eaba37 100644 --- a/code/game/machinery/cell_charger.dm +++ b/code/game/machinery/cell_charger.dm @@ -10,7 +10,18 @@ power_channel = EQUIP var/obj/item/cell/charging = null var/chargelevel = -1 + construct_state = /singleton/machine_construction/default/panel_closed + uncreated_component_parts = null +//Sierra add +/obj/machinery/cell_charger/Initialize() + . = ..() + RefreshParts() +/obj/machinery/cell_charger/RefreshParts() + for(var/obj/item/stock_parts/SP in component_parts) + if(istype(SP, /obj/item/stock_parts/capacitor)) + active_power_usage *= SP.rating +// Sierra add-end /obj/machinery/cell_charger/on_update_icon() icon_state = "ccharger[charging ? 1 : 0]" if(charging && operable()) diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index be290e1942776..f44fd29b6f9b0 100644 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -15,6 +15,17 @@ var/icon_state_charging = "recharger1" var/icon_state_idle = "recharger0" //also when unpowered var/portable = 1 + construct_state = /singleton/machine_construction/default/panel_closed + uncreated_component_parts = null + +/obj/machinery/recharger/Initialize() + . = ..() + RefreshParts() + +/obj/machinery/recharger/RefreshParts() + for(var/obj/item/stock_parts/SP in component_parts) + if(istype(SP, /obj/item/stock_parts/capacitor)) + active_power_usage *= SP.rating /obj/machinery/recharger/use_tool(obj/item/G, mob/living/user, list/click_params) var/allowed = 0 diff --git a/code/game/machinery/telecomms/telecomunications.dm b/code/game/machinery/telecomms/telecomunications.dm index e1541cd43bd2a..169137bae0889 100644 --- a/code/game/machinery/telecomms/telecomunications.dm +++ b/code/game/machinery/telecomms/telecomunications.dm @@ -478,6 +478,8 @@ var/global/list/obj/machinery/telecomms/telecomms_list = list() ..() server_radio = new() +// [SIERRA-REMOVE] MODPACK-TELECOMMS (Гитхаю жалуется) +/* /obj/machinery/telecomms/server/receive_information(datum/signal/signal, obj/machinery/telecomms/machine_from) if(signal.data["message"]) @@ -558,6 +560,9 @@ var/global/list/obj/machinery/telecomms/telecomms_list = list() if(!can_send) relay_information(signal, /obj/machinery/telecomms/broadcaster) +*/ +// [SIERRA-REMOVE] + /obj/machinery/telecomms/server/proc/update_logs() // start deleting the very first log entry if(logs >= 400) diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 7be079a5ed206..1b47e1696e685 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -19,6 +19,7 @@ origin_tech = list(TECH_MAGNET = 1, TECH_ENGINEERING = 1) + var/buffer var/buffer_name var/atom/buffer_object diff --git a/code/game/objects/items/paintkit.dm b/code/game/objects/items/paintkit.dm index ffe45bffaf5c7..7154b0c2b8632 100644 --- a/code/game/objects/items/paintkit.dm +++ b/code/game/objects/items/paintkit.dm @@ -81,7 +81,7 @@ return ..() // Mechs are handled in their attackby (mech_interaction.dm). -// [SIERRA-REMOVE] - MECHS_BY_SHEGAR - Не нужны +// [SIERRA-REMOVE] - Mechs_by_shegar - Не нужны /* diff --git a/code/game/objects/items/stacks/rods.dm b/code/game/objects/items/stacks/rods.dm index 1349ceb1c8569..7865d3fd1ef95 100644 --- a/code/game/objects/items/stacks/rods.dm +++ b/code/game/objects/items/stacks/rods.dm @@ -38,8 +38,8 @@ /obj/item/stack/material/rods/Initialize() . = ..() update_icon() - throwforce = round(0.25*material.get_edge_damage()) - force = round(0.5*material.get_blunt_damage()) + throwforce = round(0.25) + force = round(0.5) /obj/item/stack/material/rods/use_tool(obj/item/W, mob/living/user, list/click_params) if(isWelder(W)) diff --git a/code/game/objects/items/weapons/tape.dm b/code/game/objects/items/weapons/tape.dm index c93cb6a381524..33a60f306a3b8 100644 --- a/code/game/objects/items/weapons/tape.dm +++ b/code/game/objects/items/weapons/tape.dm @@ -3,6 +3,7 @@ desc = "A roll of sticky tape. Possibly for taping ducks... or was that ducts?" icon = 'icons/obj/bureaucracy.dmi' icon_state = "taperoll" + matter = list(MATERIAL_PLASTIC = 100) w_class = ITEM_SIZE_SMALL /obj/item/tape_roll/use_before(mob/living/carbon/human/H, mob/user) diff --git a/code/game/objects/munition.dm b/code/game/objects/munition.dm index cdfcd5d545826..004020ec49120 100644 --- a/code/game/objects/munition.dm +++ b/code/game/objects/munition.dm @@ -1,6 +1,6 @@ /obj/structure/ship_munition name = "munitions" - icon = 'icons/obj/munitions.dmi' + icon = 'mods/utility_items/icons/munitions.dmi' w_class = ITEM_SIZE_GARGANTUAN density = TRUE var/list/move_sounds = list( // some nasty sounds to make when moving the board diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm index 94d7808b59d41..9aa8260cf6022 100644 --- a/code/game/objects/structures.dm +++ b/code/game/objects/structures.dm @@ -3,6 +3,8 @@ w_class = ITEM_SIZE_NO_CONTAINER layer = STRUCTURE_LAYER + health_flags = HEALTH_FLAG_STRUCTURE + var/fragile var/parts var/list/connections = list("0", "0", "0", "0") diff --git a/code/game/objects/structures/fireaxe_cabinet.dm b/code/game/objects/structures/fireaxe_cabinet.dm index cceb5b2a2fcba..ea7fc390a3195 100644 --- a/code/game/objects/structures/fireaxe_cabinet.dm +++ b/code/game/objects/structures/fireaxe_cabinet.dm @@ -25,7 +25,7 @@ ClearOverlays() if(fireaxe) AddOverlays(image(icon, "fireaxe_item")) - if(health_dead) + if(health_dead()) AddOverlays(image(icon, "fireaxe_window_broken")) else if(!open) AddOverlays(image(icon, "fireaxe_window")) @@ -93,7 +93,7 @@ var/obj/item/stack/material/stack = tool if (stack.material.name != MATERIAL_GLASS) return ..() - if (!health_dead && !health_damaged()) + if (!health_dead() && !health_damaged()) USE_FEEDBACK_FAILURE("\The [src] doesn't need repair.") return TRUE if (!stack.reinf_material) @@ -114,7 +114,7 @@ if (open) USE_FEEDBACK_FAILURE("\The [src] must be closed before you can lock it.") return TRUE - if (health_dead) + if (health_dead()) USE_FEEDBACK_FAILURE("\The [src] is shattered and the lock doesn't function.") return TRUE user.visible_message( @@ -136,7 +136,7 @@ /obj/structure/fireaxecabinet/proc/toggle_open(mob/user) - if(health_dead) + if(health_dead()) open = 1 unlocked = 1 else diff --git a/code/game/objects/structures/wall_frame.dm b/code/game/objects/structures/wall_frame.dm index 55548ab5d0fa8..933c2cf87df21 100644 --- a/code/game/objects/structures/wall_frame.dm +++ b/code/game/objects/structures/wall_frame.dm @@ -194,6 +194,10 @@ /obj/structure/wall_frame/titanium material = MATERIAL_TITANIUM + +/obj/structure/wall_frame/ocp + material = MATERIAL_OSMIUM_CARBIDE_PLASTEEL + /obj/structure/wall_frame/hull paint_color = COLOR_SOL diff --git a/code/game/objects/structures/wallframe_spawner.dm b/code/game/objects/structures/wallframe_spawner.dm index db723e9ce71b1..098f8383f1959 100644 --- a/code/game/objects/structures/wallframe_spawner.dm +++ b/code/game/objects/structures/wallframe_spawner.dm @@ -143,6 +143,8 @@ /obj/wallframe_spawn/reinforced_phoron/hull frame_path = /obj/structure/wall_frame/hull +/obj/wallframe_spawn/reinforced_phoron/ocp + frame_path = /obj/structure/wall_frame/ocp /obj/wallframe_spawn/reinforced/polarized name = "polarized reinforced wall frame window spawner" diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index 6838e52753d2e..c9adce1661d20 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -9,6 +9,7 @@ thermal_conductivity = WALL_HEAT_TRANSFER_COEFFICIENT heat_capacity = 312500 //a little over 5 cm thick , 312500 for 1 m by 2.5 m by 0.25 m plasteel wall atom_flags = ATOM_FLAG_CAN_BE_PAINTED + health_flags = HEALTH_FLAG_STRUCTURE var/damage_overlay = 0 var/static/damage_overlays[16] diff --git a/code/game/world.dm b/code/game/world.dm index 4a3fc39135e16..b638efa8ba7c6 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -474,7 +474,6 @@ GLOBAL_VAR_INIT(world_topic_last, world.timeofday) var/amessage = SPAN_CLASS("staff_pm", "[rank] PM from [input["sender"]] to [key_name(C)] : [input["msg"]]") C.received_irc_pm = world.time - C.irc_admin = input["sender"] sound_to(C, sound('sound/ui/pm-notify.ogg', volume = 40)) to_chat(C, message) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 395d07e2345e8..f18c343eea407 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -187,6 +187,9 @@ var/global/list/admin_verbs_debug = list( /client/proc/delete_random_map, /datum/admins/proc/map_template_load, /datum/admins/proc/map_template_load_new_z, + //[SIERRA-ADD] - Colony types, + /datum/admins/proc/map_template_choose_colony_type, + //[SIERRA-ADD], /datum/admins/proc/map_template_upload, /client/proc/enable_debug_verbs, /client/proc/callproc, diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index ed5a84899f5ec..5bf316f7e73bd 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -71,7 +71,7 @@ var/global/list/adminhelp_ignored_words = list("unknown","the","a","an","of","mo to_chat(src, SPAN_COLOR("red", "Error: Admin-PM: You cannot send adminhelps (Muted).")) return - adminhelped = 1 //Determines if they get the message to reply by clicking the name. + adminhelped = TRUE //clean the input msg diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index 2ced206de9084..c4be7e89a4eeb 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -105,7 +105,7 @@ recieve_message = "[SPAN_CLASS("pm", "[SPAN_CLASS("howto", "-- Click the [recieve_pm_type]'s name to reply --")]")]\n" if(C.adminhelped) to_chat(C, recieve_message) - C.adminhelped = 0 + C.adminhelped = FALSE var/sender_message = "[create_text_tag("pm_out_alt", "PM", src)] to [SPAN_CLASS("name", get_options_bar(C, holder ? 1 : 0, holder ? 1 : 0, 1))]" if(holder) diff --git a/code/modules/admin/verbs/playsound.dm b/code/modules/admin/verbs/playsound.dm index d436345861667..5998a10716d0f 100644 --- a/code/modules/admin/verbs/playsound.dm +++ b/code/modules/admin/verbs/playsound.dm @@ -41,10 +41,13 @@ var/global/list/sounds_cache = list() set category = "Fun" set name = "Play Local Sound" if(!check_rights(R_SOUNDS)) return + var/vol = input("Select a volume for the sound", "Play Local Sound", 50) as num|null + if (!vol) + return log_admin("[key_name(src)] played a local sound [S]") message_admins("[key_name_admin(src)] played a local sound [S]", 1) - playsound(get_turf(src.mob), S, 50, 0, 0) + playsound(get_turf(src.mob), S, vol, 0, 0) /client/proc/play_server_sound() diff --git a/code/modules/admin/view_variables/vv_set_handlers.dm b/code/modules/admin/view_variables/vv_set_handlers.dm index 07bce527f4b11..ae3bfd663651a 100644 --- a/code/modules/admin/view_variables/vv_set_handlers.dm +++ b/code/modules/admin/view_variables/vv_set_handlers.dm @@ -145,7 +145,7 @@ predicates = list(GLOBAL_PROC_REF(is_strict_bool_predicate)) /singleton/vv_set_handler/health_dead_handler/handle_set_var(atom/target, variable, var_value, client) - if (var_value == target.health_dead) + if (var_value == target.health_dead()) return switch (var_value) if (TRUE) diff --git a/code/modules/client/client_defines.dm b/code/modules/client/client_defines.dm index 7afa107358e43..cff697465fd48 100644 --- a/code/modules/client/client_defines.dm +++ b/code/modules/client/client_defines.dm @@ -1,68 +1,58 @@ /client - ////////////////////// - //BLACK MAGIC THINGS// - ////////////////////// + // Allow client instances to be treated like regular datums parent_type = /datum - //////////////// - //ADMIN THINGS// - //////////////// - var/datum/admins/holder = null - var/datum/admins/deadmin_holder = null - - ///////// - //OTHER// - ///////// - var/datum/preferences/prefs = null - var/adminobs = null // Runechat messages var/list/seen_messages - ///datum that controls the displaying and hiding of tooltips - var/datum/tooltip/tooltips + /** At compile time, should be TRUE if serving the rsc from DD or FALSE if using other + http server(s) to spread load. Defaults FALSE as /client/New() handles setting either + a url from config.resource_urls, or TRUE if none exist + Refer to http://www.byond.com/forum/post/1906517?page=2#comment23727144 + */ + preload_rsc = FALSE + + /// When some kind of staff member, the client's permissions and behaviors + var/datum/admins/holder - var/adminhelped = 0 + /// When not currently wanting to see buttons, holder lives here instead + var/datum/admins/deadmin_holder + + /// The client's preferences object, populated from save data and runtime changes + var/datum/preferences/prefs + + /// Controls the display of tooltips to this client + var/datum/tooltip/tooltips - var/staffwarn = null + /// When starting an ahelp conversation, whether the client gets a reply button + var/adminhelped - /// List that stores the object and parameters related to the selected target during mouse events in the client. Allows the client to remember the target selected during a "MouseDown" event or update the selection during a "MouseDrag" event. - var/list/selected_target[2] + /// A message to show to online staff when joining, if any + var/staffwarn - /////////////// - //SOUND STUFF// - /////////////// + /// Holds click params [2] and a reference [1] to the atom under the cursor on MouseDown/Drag + var/list/selected_target = list(null, null) - /// Whether or not the client is currently playing the "ship hum" ambience sound. + /// Whether or not the client is currently playing the "ship hum" ambience sound var/playing_vent_ambience = FALSE - /// The next threshold time for the client to be able to play basic ambience sounds. + /// The next threshold time for the client to be able to play basic ambience sounds var/next_ambience_time = 0 + /// The last time this client was messaged from IRC. Prevents responses after 10 minutes + var/received_irc_pm = -99999 - //////////// - //SECURITY// - //////////// - // comment out the line below when debugging locally to enable the options & messages menu - //control_freak = 1 + /// Prevents people from being spammed about multikeying every time their mob changes + var/warned_about_multikeying = TRUE - var/received_irc_pm = -99999 - var/irc_admin //IRC admin that spoke with them last. - var/mute_irc = 0 - var/warned_about_multikeying = 0 // Prevents people from being spammed about multikeying every time their mob changes. - - //////////////////////////////////// - //things that require the database// - //////////////////////////////////// - var/player_age = "Requires database" //So admins know why it isn't working - Used to determine how old the account is - in days. - var/related_accounts_ip = "Requires database" //So admins know why it isn't working - Used to determine what other accounts previously logged in from this ip - var/related_accounts_cid = "Requires database" //So admins know why it isn't working - Used to determine what other accounts previously logged in from this computer id - - /* - As of byond 512, due to how broken preloading is, preload_rsc MUST be set to 1 at compile time if resource URLs are *not* in use, - BUT you still want resource preloading enabled (from the server itself). If using resource URLs, it should be set to 0 and - changed to a URL at runtime (see client_procs.dm for procs that do this automatically). More information about how goofy this broken setting works at - http://www.byond.com/forum/post/1906517?page=2#comment23727144 - */ - preload_rsc = 0 + /// If the database is available, how old the account is in days + var/player_age = "Requires database" + + /// If the database is available, what other accounts previously logged in from this IP + var/related_accounts_ip = "Requires database" + + /// If the database is available, what other accounts previously logged in from this CID + var/related_accounts_cid = "Requires database" + /// The current fullscreen state for /client/toggle_fullscreen() var/fullscreen = FALSE diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 90f4cdb187fab..9291bc99f3a2d 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -64,9 +64,6 @@ if(!holder && received_irc_pm < world.time - 6000) //Worse they can do is spam IRC for 10 minutes to_chat(usr, SPAN_WARNING("You are no longer able to use this, it's been more then 10 minutes since an admin on IRC has responded to you")) return - if(mute_irc) - to_chat(usr, SPAN_WARNING("You cannot use this as your client has been muted from sending messages to the admins on IRC")) - return cmd_admin_irc_pm(href_list["irc_msg"]) return @@ -151,9 +148,10 @@ break // Change the way they should download resources. - if(config.resource_urls && length(config.resource_urls)) - src.preload_rsc = pick(config.resource_urls) - else src.preload_rsc = 1 // If config.resource_urls is not set, preload like normal. + if (length(config.resource_urls)) + preload_rsc = pick(config.resource_urls) + else + preload_rsc = TRUE if(byond_version < DM_VERSION) to_chat(src, SPAN_WARNING("You are running an older version of BYOND than the server and may experience issues.")) @@ -181,8 +179,7 @@ // [SIERRA-ADD] . = ..() //calls mob.Login() - - view = get_preference_value(/datum/client_preference/client_view) + //view = get_preference_value(/datum/client_preference/client_view) GLOB.using_map.map_info(src) diff --git a/code/modules/client/preference_setup/loadout/lists/headwear.dm b/code/modules/client/preference_setup/loadout/lists/headwear.dm index 3712c39393456..fb343034a663b 100644 --- a/code/modules/client/preference_setup/loadout/lists/headwear.dm +++ b/code/modules/client/preference_setup/loadout/lists/headwear.dm @@ -80,6 +80,7 @@ hardhats["orange hardhat"] = /obj/item/clothing/head/hardhat/orange hardhats["red hardhat"] = /obj/item/clothing/head/hardhat/red hardhats["light damage control helmet"] = /obj/item/clothing/head/hardhat/light + hardhats["yellow hardhat"] = /obj/item/clothing/head/hardhat gear_tweaks += new/datum/gear_tweak/path(hardhats) /datum/gear/head/formalhat diff --git a/code/modules/clothing/_clothing.dm b/code/modules/clothing/_clothing.dm index d16b486ff5fe1..21a7b7e6c161d 100644 --- a/code/modules/clothing/_clothing.dm +++ b/code/modules/clothing/_clothing.dm @@ -54,7 +54,10 @@ for (var/obj/item/clothing/accessory/A as anything in accessories) remove_accessory(null, A) qdel(A) - accessories.Cut() + //[SIERRA-ADD] + if(accessories) //Убьёт рантаймы null.Cut() + accessories.Cut() + //[SIERRA-ADD] accessories = null . = ..() @@ -942,8 +945,8 @@ BLIND // can't see anything var/worn_state = null //Whether the clothing item has gender-specific states when worn. var/gender_icons = 0 - valid_accessory_slots = list(ACCESSORY_SLOT_UTILITY,ACCESSORY_SLOT_HOLSTER,ACCESSORY_SLOT_ARMBAND,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_DEPT,ACCESSORY_SLOT_DECOR,ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_INSIGNIA) - restricted_accessory_slots = list(ACCESSORY_SLOT_UTILITY,ACCESSORY_SLOT_HOLSTER,ACCESSORY_SLOT_ARMBAND,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_DEPT) + valid_accessory_slots = list(ACCESSORY_SLOT_UTILITY,ACCESSORY_SLOT_HOLSTER,ACCESSORY_SLOT_ARMBAND,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_FLASH,ACCESSORY_SLOT_DECOR,ACCESSORY_SLOT_MEDAL,ACCESSORY_SLOT_INSIGNIA) + restricted_accessory_slots = list(ACCESSORY_SLOT_UTILITY,ACCESSORY_SLOT_HOLSTER,ACCESSORY_SLOT_ARMBAND,ACCESSORY_SLOT_RANK,ACCESSORY_SLOT_FLASH) /obj/item/clothing/under/New() ..() diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 49e2ccf5a56f3..5832a457b8611 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -66,8 +66,8 @@ bomb = ARMOR_BOMB_MINOR ) action_button_name = "Toggle Attachments" - valid_accessory_slots = list(ACCESSORY_SLOT_VISION, ACCESSORY_SLOT_HUD) - restricted_accessory_slots = list(ACCESSORY_SLOT_VISION, ACCESSORY_SLOT_HUD) + valid_accessory_slots = list(ACCESSORY_SLOT_GLASSES_VISION, ACCESSORY_SLOT_GLASSES_HUD) + restricted_accessory_slots = list(ACCESSORY_SLOT_GLASSES_VISION, ACCESSORY_SLOT_GLASSES_HUD) var/toggle_mods = list() /obj/item/clothing/glasses/ballistic/Initialize() diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 503055e61b636..855654eb55d42 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -6,8 +6,16 @@ slot_l_hand_str = "helmet", slot_r_hand_str = "helmet", ) - valid_accessory_slots = list(ACCESSORY_SLOT_HELM_C, ACCESSORY_SLOT_HELM_D, ACCESSORY_SLOT_VISOR) - restricted_accessory_slots = list(ACCESSORY_SLOT_HELM_C, ACCESSORY_SLOT_HELM_D, ACCESSORY_SLOT_VISOR) + valid_accessory_slots = list( + ACCESSORY_SLOT_HELMET_COVER, + ACCESSORY_SLOT_HELMET_DECOR, + ACCESSORY_SLOT_HELMET_VISOR + ) + restricted_accessory_slots = list( + ACCESSORY_SLOT_HELMET_COVER, + ACCESSORY_SLOT_HELMET_DECOR, + ACCESSORY_SLOT_HELMET_VISOR + ) item_flags = ITEM_FLAG_THICKMATERIAL body_parts_covered = HEAD armor = list( @@ -26,30 +34,28 @@ w_class = ITEM_SIZE_NORMAL species_restricted = list("exclude", SPECIES_NABBER, SPECIES_ADHERENT) + /obj/item/clothing/head/helmet/needs_vision_update() - for(var/obj/item/clothing/accessory/glassesmod/visor in accessories) + for (var/obj/item/clothing/accessory/glassesmod/visor in accessories) return TRUE - . = ..() + return ..() -/obj/item/clothing/head/helmet/verb/toggle_visor() - set name = "Toggle Helmet Attachments" +/obj/item/clothing/head/helmet/verb/toggle_visor() + set name = "Toggle Helmet Visors" set category = "Object" set src in usr - - if (!istype(loc,/mob/living)) + if (usr.incapacitated()) return - var/toggled = FALSE - if (!usr.incapacitated()) - for (var/obj/item/clothing/accessory/glassesmod/mod in accessories) - if (mod.active) - mod.deactivate(usr) - else - mod.activate(usr) - toggled = TRUE - if (!toggled) - to_chat(usr, SPAN_CLASS("danger", "You do not have a visor attached to your helmet!")) + for (var/obj/item/clothing/accessory/glassesmod/mod in accessories) + if (mod.active) + mod.deactivate(usr) + else + mod.activate(usr) + toggled = TRUE + if (!toggled) + to_chat(usr, SPAN_WARNING("Your helmet has no visors attached.")) /obj/item/clothing/head/helmet/nt @@ -95,7 +101,7 @@ name = "riot helmet" desc = "It's a helmet specifically designed to protect against close range attacks." icon_state = "helmet_riot" - valid_accessory_slots = null + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) body_parts_covered = HEAD|FACE|EYES //face shield armor = list( melee = ARMOR_MELEE_VERY_HIGH, @@ -118,7 +124,7 @@ name = "ablative helmet" desc = "A helmet made from advanced materials which protects against concentrated energy weapons." icon_state = "helmet_reflect" - valid_accessory_slots = list(ACCESSORY_SLOT_VISOR) + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) armor = list( melee = ARMOR_MELEE_SMALL, bullet = ARMOR_BALLISTIC_MINOR, @@ -131,7 +137,7 @@ name = "ballistic helmet" desc = "A helmet with reinforced plating to protect against ballistic projectiles." icon_state = "helmet_bulletproof" - valid_accessory_slots = list(ACCESSORY_SLOT_VISOR) + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) armor = list( melee = ARMOR_MELEE_MINOR, bullet = ARMOR_BALLISTIC_AP, @@ -151,7 +157,7 @@ energy = ARMOR_ENERGY_RESISTANT, bomb = ARMOR_BOMB_PADDED ) - valid_accessory_slots = list(ACCESSORY_SLOT_VISOR) + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) cold_protection = HEAD min_cold_protection_temperature = SPACE_HELMET_MIN_COLD_PROTECTION_TEMPERATURE siemens_coefficient = 0.5 @@ -204,12 +210,10 @@ /obj/item/clothing/head/helmet/ert name = "asset protection command helmet" desc = "An in-atmosphere helmet worn by many corporate and private asset protection forces. Has blue highlights." + icon = 'icons/obj/obj_head_ERT.dmi' + item_icons = list(slot_head_str = 'icons/mob/onmob/onmob_head_ERT.dmi') icon_state = "erthelmet_cmd" valid_accessory_slots = null - item_state_slots = list( - slot_l_hand_str = "syndicate-helm-green", - slot_r_hand_str = "syndicate-helm-green", - ) armor = list( melee = ARMOR_MELEE_MAJOR, bullet = ARMOR_BALLISTIC_RIFLE, @@ -293,8 +297,8 @@ name = "model helmet" desc = "A lightweight helmet made of cheap plastic, sporting fiducial marking stickers on either side. You doubt it will provide much protection." icon_state = "nvgmount" - valid_accessory_slots = list(ACCESSORY_SLOT_VISOR, ACCESSORY_SLOT_HELM_D) - restricted_accessory_slots = list(ACCESSORY_SLOT_VISOR, ACCESSORY_SLOT_HELM_D) + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR, ACCESSORY_SLOT_HELMET_DECOR) + restricted_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR, ACCESSORY_SLOT_HELMET_DECOR) armor = list( melee = ARMOR_MELEE_MINOR, ) diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index f0aaa9d390777..67a791d07e82f 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -45,14 +45,31 @@ down_icon_state = "steriledown" pull_mask = 1 + /obj/item/clothing/mask/fakemoustache name = "fake moustache" desc = "Warning: moustache is fake." icon_state = "fake-moustache" item_state = "fake-moustache" flags_inv = HIDEFACE - body_parts_covered = 0 + body_parts_covered = EMPTY_BITFIELD visible_name = "Scoundrel" + w_class = ITEM_SIZE_SMALL + + +/obj/item/clothing/mask/fakemoustache/verb/ChangeVisibleName() + set name = "Change Visible Name" + set src in usr + if (usr.incapacitated()) + return + var/response = input(usr, null, "Change Visible Name", visible_name) as null | text + response = sanitizeName(response, MAX_NAME_LEN, TRUE, FALSE) + if (!response) + return + if (usr.incapacitated() || !(src in usr)) + return + visible_name = response + /obj/item/clothing/mask/snorkel name = "snorkel" diff --git a/code/modules/clothing/masks/smokable.dm b/code/modules/clothing/masks/smokable.dm index 6883b7c06d9e8..ef36129b38133 100644 --- a/code/modules/clothing/masks/smokable.dm +++ b/code/modules/clothing/masks/smokable.dm @@ -337,6 +337,7 @@ to_chat(H, SPAN_WARNING("\The [blocked] is in the way!")) return TRUE to_chat(H, SPAN_NOTICE("You take a drag on your [name].")) + playsound(H, "sound/effects/inhale.ogg", 50, 0, -1) smoke(5) add_trace_DNA(H) return TRUE diff --git a/code/modules/clothing/spacesuits/void/void.dm b/code/modules/clothing/spacesuits/void/void.dm index f63c9977d1182..595445b201933 100644 --- a/code/modules/clothing/spacesuits/void/void.dm +++ b/code/modules/clothing/spacesuits/void/void.dm @@ -31,8 +31,8 @@ ) light_overlay = "helmet_light" - valid_accessory_slots = list(ACCESSORY_SLOT_VISOR) - restricted_accessory_slots = list(ACCESSORY_SLOT_VISOR) + valid_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) + restricted_accessory_slots = list(ACCESSORY_SLOT_HELMET_VISOR) /obj/item/clothing/suit/space/void name = "voidsuit" diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index bb17602cd8515..085b22054fc72 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -301,8 +301,8 @@ icon = 'icons/obj/clothing/obj_suit_modular_armor.dmi' item_icons = list(slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi') icon_state = "pcarrier" - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_C, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L, ACCESSORY_SLOT_ARMOR_S, ACCESSORY_SLOT_ARMOR_M) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMOR_C, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L, ACCESSORY_SLOT_ARMOR_S) + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_CHEST, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS, ACCESSORY_SLOT_ARMOR_STORAGE, ACCESSORY_SLOT_ARMOR_MISC) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMOR_CHEST, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS, ACCESSORY_SLOT_ARMOR_STORAGE) blood_overlay_type = "armor" flags_inv = 0 @@ -365,8 +365,8 @@ icon = 'icons/obj/clothing/obj_suit_modular_armor.dmi' item_icons = list(slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi') icon_state = "riotcarrier" - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) - restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) + restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) body_parts_covered = UPPER_TORSO|LOWER_TORSO armor = list( melee = ARMOR_MELEE_VERY_HIGH, @@ -390,8 +390,8 @@ icon = 'icons/obj/clothing/obj_suit_modular_armor.dmi' item_icons = list(slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi') icon_state = "ballisticcarrier" - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) - restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) + restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) body_parts_covered = UPPER_TORSO|LOWER_TORSO armor = list( melee = ARMOR_MELEE_RESISTANT, @@ -419,8 +419,8 @@ icon = 'icons/obj/clothing/obj_suit_modular_armor.dmi' item_icons = list(slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi') icon_state = "ablativecarrier" - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) - restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L) + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) + restricted_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS) body_parts_covered = UPPER_TORSO|LOWER_TORSO armor = list( melee = ARMOR_MELEE_KNIVES, diff --git a/code/modules/clothing/under/accessories/_accessory.dm b/code/modules/clothing/under/accessories/_accessory.dm index 6440bbe9a8454..628320f5f7ef1 100644 --- a/code/modules/clothing/under/accessories/_accessory.dm +++ b/code/modules/clothing/under/accessories/_accessory.dm @@ -122,10 +122,10 @@ /obj/item/clothing/accessory/toggleable/var/icon_closed -/obj/item/clothing/accessory/toggleable/New() +/obj/item/clothing/accessory/toggleable/Initialize() if (!icon_closed) icon_closed = icon_state - ..() + return ..() /obj/item/clothing/accessory/toggleable/on_attached(obj/item/clothing/under/S, mob/user as mob) diff --git a/code/modules/clothing/under/accessories/arm_guards.dm b/code/modules/clothing/under/accessories/arm_guards.dm index 54ca407a57014..48c8f2bf0fc02 100644 --- a/code/modules/clothing/under/accessories/arm_guards.dm +++ b/code/modules/clothing/under/accessories/arm_guards.dm @@ -17,7 +17,7 @@ energy = ARMOR_ENERGY_SMALL, bomb = ARMOR_BOMB_PADDED ) - slot = ACCESSORY_SLOT_ARMOR_A + slot = ACCESSORY_SLOT_ARMOR_ARMS body_location = ARMS flags_inv = CLOTHING_BULKY diff --git a/code/modules/clothing/under/accessories/armor_plate.dm b/code/modules/clothing/under/accessories/armor_plate.dm index 477c8e364ed10..80717073bda11 100644 --- a/code/modules/clothing/under/accessories/armor_plate.dm +++ b/code/modules/clothing/under/accessories/armor_plate.dm @@ -11,7 +11,7 @@ energy = ARMOR_ENERGY_MINOR, bomb = ARMOR_BOMB_MINOR ) - slot = ACCESSORY_SLOT_ARMOR_C + slot = ACCESSORY_SLOT_ARMOR_CHEST flags_inv = CLOTHING_BULKY diff --git a/code/modules/clothing/under/accessories/armor_tag.dm b/code/modules/clothing/under/accessories/armor_tag.dm index 5877683ed7e73..7a30bf4265db1 100644 --- a/code/modules/clothing/under/accessories/armor_tag.dm +++ b/code/modules/clothing/under/accessories/armor_tag.dm @@ -8,7 +8,7 @@ slot_wear_suit_str = 'icons/mob/onmob/onmob_modular_armor.dmi' ) icon_state = null - slot = ACCESSORY_SLOT_ARMOR_M + slot = ACCESSORY_SLOT_ARMOR_MISC w_class = ITEM_SIZE_TINY sprite_sheets = list( diff --git a/code/modules/clothing/under/accessories/goggle_mods.dm b/code/modules/clothing/under/accessories/goggle_mods.dm index e9e52bd27cbf8..ce62a81ef2c35 100644 --- a/code/modules/clothing/under/accessories/goggle_mods.dm +++ b/code/modules/clothing/under/accessories/goggle_mods.dm @@ -22,8 +22,13 @@ /obj/item/clothing/accessory/glassesmod/proc/process_hud(mob/M) return +/obj/item/clothing/accessory/glassesmod/get_mob_overlay(mob/user_mob, slot) + if (slot == "slot_s_store") + return null + return ..() + /obj/item/clothing/accessory/glassesmod/activate() - . = ..() + ..() parent.CutOverlays(inv_overlay) inv_overlay = null inv_overlay = get_inv_overlay() @@ -31,7 +36,7 @@ parent.update_vision() /obj/item/clothing/accessory/glassesmod/deactivate() - . = ..() + ..() parent.CutOverlays(inv_overlay) inv_overlay = null inv_overlay = get_inv_overlay() @@ -42,7 +47,7 @@ name = "thermal sights" desc = "An older set of thermal vision goggles, modified to attach to a helmet." icon_state = "thermals" - slot = ACCESSORY_SLOT_VISOR + slot = ACCESSORY_SLOT_HELMET_VISOR vision_flags = SEE_MOBS see_invisible = SEE_INVISIBLE_NOLIGHTING toggleable = TRUE @@ -58,7 +63,7 @@ name = "light-enhancing sights" desc = "An older set of light enhancing goggles, modified to attach to a helmet." icon_state = "nvg" - slot = ACCESSORY_SLOT_VISOR + slot = ACCESSORY_SLOT_HELMET_VISOR see_invisible = SEE_INVISIBLE_NOLIGHTING toggleable = TRUE off_state = "nvgoff" @@ -76,7 +81,7 @@ name = "security HUD attachment" desc = "An attachable security HUD for ballistic goggles." icon_state = "sechud" - slot = ACCESSORY_SLOT_HUD + slot = ACCESSORY_SLOT_GLASSES_HUD hud_type = HUD_SECURITY toggleable = TRUE off_state = "hudoff" @@ -90,7 +95,7 @@ name = "medical HUD attachment" desc = "An attachable security HUD for ballistic goggles." icon_state = "medhud" - slot = ACCESSORY_SLOT_HUD + slot = ACCESSORY_SLOT_GLASSES_HUD hud_type = HUD_MEDICAL toggleable = TRUE off_state = "hudoff" @@ -101,7 +106,7 @@ /obj/item/clothing/accessory/glassesmod/vision/polarized name = "polarized lenses" desc = "A set of flash-resistant lenses that can be clipped onto a pair of ballistic goggles." - slot = ACCESSORY_SLOT_VISION + slot = ACCESSORY_SLOT_GLASSES_VISION icon_state = "polarized" flash_protection = FLASH_PROTECTION_MODERATE darkness_view = -1 @@ -109,7 +114,7 @@ /obj/item/clothing/accessory/glassesmod/vision/welding name = "welding lenses" desc = "A set of welding lenses that can be attached to ballistic goggles to protect against arc-eye" - slot = ACCESSORY_SLOT_VISION + slot = ACCESSORY_SLOT_GLASSES_VISION icon_state = "welding_lenses" off_state = "welding_lenses_up" flash_protection = FLASH_PROTECTION_MAJOR diff --git a/code/modules/clothing/under/accessories/helmcover.dm b/code/modules/clothing/under/accessories/helmcover.dm index 58e9253d53849..cc5510586a35c 100644 --- a/code/modules/clothing/under/accessories/helmcover.dm +++ b/code/modules/clothing/under/accessories/helmcover.dm @@ -8,7 +8,7 @@ slot_head_str = 'icons/mob/onmob/onmob_modular_armor.dmi' ) icon_state = null - slot = ACCESSORY_SLOT_HELM_C + slot = ACCESSORY_SLOT_HELMET_COVER body_location = HEAD sprite_sheets = list( diff --git a/code/modules/clothing/under/accessories/helmet_decor.dm b/code/modules/clothing/under/accessories/helmet_decor.dm index f08eb0ba0405d..847ad9d87a67e 100644 --- a/code/modules/clothing/under/accessories/helmet_decor.dm +++ b/code/modules/clothing/under/accessories/helmet_decor.dm @@ -10,7 +10,7 @@ overlay_state = "error" w_class = ITEM_SIZE_TINY accessory_flags = ACCESSORY_REMOVABLE | ACCESSORY_HIGH_VISIBILITY - slot = ACCESSORY_SLOT_HELM_D + slot = ACCESSORY_SLOT_HELMET_DECOR body_location = HEAD gender = PLURAL diff --git a/code/modules/clothing/under/accessories/leg_guards.dm b/code/modules/clothing/under/accessories/leg_guards.dm index 29f622d2fa42f..8982c6bd47566 100644 --- a/code/modules/clothing/under/accessories/leg_guards.dm +++ b/code/modules/clothing/under/accessories/leg_guards.dm @@ -14,7 +14,7 @@ energy = ARMOR_ENERGY_SMALL, bomb = ARMOR_BOMB_PADDED ) - slot = ACCESSORY_SLOT_ARMOR_L + slot = ACCESSORY_SLOT_ARMOR_LEGS body_location = LEGS flags_inv = CLOTHING_BULKY diff --git a/code/modules/clothing/under/accessories/pouches.dm b/code/modules/clothing/under/accessories/pouches.dm index e8e817863f87f..ef23693312e9a 100644 --- a/code/modules/clothing/under/accessories/pouches.dm +++ b/code/modules/clothing/under/accessories/pouches.dm @@ -9,7 +9,7 @@ ) icon_state = "pouches" gender = PLURAL - slot = ACCESSORY_SLOT_ARMOR_S + slot = ACCESSORY_SLOT_ARMOR_STORAGE slots = 2 STORAGE_SLOTS sprite_sheets = list( diff --git a/code/modules/crafting/crafting_weapons_ranged.dm b/code/modules/crafting/crafting_weapons_ranged.dm index 2fe5e68c287c7..a51c09ab4c3d7 100644 --- a/code/modules/crafting/crafting_weapons_ranged.dm +++ b/code/modules/crafting/crafting_weapons_ranged.dm @@ -81,7 +81,7 @@ /singleton/crafting_stage/screwdriver/zipgun progress_message = "You secure the trigger assembly and finish off the zipgun." - product = /obj/item/gun/projectile/pirate/unloaded //zipgun.dm + product = /obj/item/gun/projectile/pirate //zipgun.dm // Crossbow diff --git a/code/modules/emotes/definitions/_mob.dm b/code/modules/emotes/definitions/_mob.dm index ae881eddbc06f..85839d39d18c6 100644 --- a/code/modules/emotes/definitions/_mob.dm +++ b/code/modules/emotes/definitions/_mob.dm @@ -1,5 +1,7 @@ /mob/var/list/default_emotes = list() /mob/var/list/usable_emotes = list() +/mob/var/next_audible_emote_time = 0 +/mob/var/audible_emote_cooldown = 0.5 SECONDS /mob/proc/update_emotes(skip_sort) usable_emotes.Cut() diff --git a/code/modules/emotes/definitions/audible.dm b/code/modules/emotes/definitions/audible.dm index c34c84393ef39..282dfa358eb3c 100644 --- a/code/modules/emotes/definitions/audible.dm +++ b/code/modules/emotes/definitions/audible.dm @@ -5,11 +5,18 @@ var/list/emote_sound /singleton/emote/audible/do_extra(atom/user) - if(emote_sound) - var/playable = emote_sound - if (islist(emote_sound)) - playable = pick(emote_sound) - playsound(user.loc, playable, 50, 0) + if(!emote_sound) + return + if (ismob(user)) + var/mob/M = user + if (world.time < M.next_audible_emote_time) + M.next_audible_emote_time = world.time + M.audible_emote_cooldown + return + M.next_audible_emote_time = world.time + M.audible_emote_cooldown + var/playable = emote_sound + if (islist(emote_sound)) + playable = pick(emote_sound) + playsound(user.loc, playable, 50, 0) /singleton/emote/audible/deathgasp_alien key = "deathgasp" diff --git a/code/modules/fabrication/designs/general/designs_general.dm b/code/modules/fabrication/designs/general/designs_general.dm index 63cbdbeddc0e7..4f5b6b487897b 100644 --- a/code/modules/fabrication/designs/general/designs_general.dm +++ b/code/modules/fabrication/designs/general/designs_general.dm @@ -116,3 +116,6 @@ /datum/fabricator_recipe/binoculars path = /obj/item/device/binoculars + +/datum/fabricator_recipe/tape_roll + path = /obj/item/tape_roll diff --git a/code/modules/fabrication/designs/general/designs_medical.dm b/code/modules/fabrication/designs/general/designs_medical.dm index 1a25638d722ff..897c21b359521 100644 --- a/code/modules/fabrication/designs/general/designs_medical.dm +++ b/code/modules/fabrication/designs/general/designs_medical.dm @@ -1,5 +1,4 @@ /datum/fabricator_recipe/medical - path = /obj/item/scalpel/basic category = "Medical" /datum/fabricator_recipe/medical/circularsaw @@ -43,3 +42,6 @@ /datum/fabricator_recipe/medical/hypospray/autoinjector path = /obj/item/reagent_containers/hypospray/autoinjector + +/datum/fabricator_recipe/medical/scalpel + path = /obj/item/scalpel/basic diff --git a/code/modules/item_worth/worths_list.dm b/code/modules/item_worth/worths_list.dm index 1eeebdcaf083d..bf4cc4b0fb46f 100644 --- a/code/modules/item_worth/worths_list.dm +++ b/code/modules/item_worth/worths_list.dm @@ -472,12 +472,12 @@ var/global/list/worths = list( /obj/item/device/dociler = 490, /obj/item/device/bot_controller = 50, /obj/item/device/mmi = 1200, - // [SIERRA-REMOVE] - MECHS_BY_SHEGAR, + // [SIERRA-REMOVE] - Mechs_by_shegar, /*, /obj/item/device/kit/paint = 500, */ // [/SIERRA-REMOVE], - // [SIERRA-ADD] - MECHS_BY_SHEGAR, + // [SIERRA-ADD] - Mechs_by_shegar, /obj/item/device/kit/mech = 500, // [/SIERRA-ADD], /obj/item/device/kit = 100, diff --git a/code/modules/mechs/components/_components.dm b/code/modules/mechs/components/_components.dm index 133b80cd42a4a..4e3e1d3f36e36 100644 --- a/code/modules/mechs/components/_components.dm +++ b/code/modules/mechs/components/_components.dm @@ -54,6 +54,7 @@ /obj/item/mech_component/proc/update_health() total_damage = brute_damage + burn_damage if(total_damage > max_damage) total_damage = max_damage + current_hp = max_damage - total_damage var/prev_state = damage_state damage_state = clamp(round((total_damage/max_damage) * 4), MECH_COMPONENT_DAMAGE_UNDAMAGED, MECH_COMPONENT_DAMAGE_DAMAGED_TOTAL) if(damage_state > prev_state) @@ -191,5 +192,5 @@ to_chat(user, SPAN_NOTICE("[capitalize(src.name)]:")) // [SIERRA-EDIT] - Mechs_by_shegar //to_chat(user, SPAN_NOTICE(" - Integrity: [round((((max_damage - total_damage) / max_damage)) * 100)]%" )) - to_chat(user, SPAN_NOTICE(" - Integrity: [max_damage - total_damage]/[max_damage]([round((((max_damage - total_damage) / max_damage)) * 100)]%)" )) + to_chat(user, SPAN_NOTICE(" - Integrity: [current_hp]/[max_damage]([round(((current_hp / max_damage)) * 100)]%) Unrepairable damage: [unrepairable_damage]" )) // [SIERRA-EDIT] diff --git a/code/modules/mechs/components/head.dm b/code/modules/mechs/components/head.dm index 734e8f15deace..610a6602a54f4 100644 --- a/code/modules/mechs/components/head.dm +++ b/code/modules/mechs/components/head.dm @@ -12,6 +12,8 @@ var/active_sensors = 0 power_use = 15 w_class = ITEM_SIZE_NORMAL + var/obj/mob/exosuit/owner + /obj/item/mech_component/sensors/Destroy() QDEL_NULL(camera) @@ -37,20 +39,24 @@ software = locate() in src //EDIT -// [SIERRA-EDIT] - SHUTTLE_TOGGLE - (Optional Reason/comment) +// [SIERRA-EDIT] - Mechs-by-Shebar /* /obj/item/mech_component/sensors/proc/get_sight(powered) var/flags = 0 if(total_damage >= 0.8 * max_damage || !powered) flags |= BLIND else if(active_sensors && powered) flags |= vision_flags + return flags */ /obj/item/mech_component/sensors/proc/get_sight(powered) var/flags = 0 - if(!camera || !powered) - flags |= BLIND - else if(active_sensors && powered) - flags |= vision_flags + if(!powered ||(!camera && powered)) //Камера не работает/Ничего не запитано? + flags |= BLIND //включается слепота + if(powered && camera) + if(active_sensors) //SENSORS active? (Button) + flags |= vision_flags //Мех получает спец зрение от сенсоров + + return flags // [SIERRA-EDIT] diff --git a/code/modules/mechs/equipment/combat.dm b/code/modules/mechs/equipment/combat.dm index eb288b97570a1..52f18b02cbc48 100644 --- a/code/modules/mechs/equipment/combat.dm +++ b/code/modules/mechs/equipment/combat.dm @@ -69,6 +69,9 @@ /obj/item/mech_equipment/shields/uninstalled() QDEL_NULL(aura) + //[SIERRA-ADD] - Mechs-by-Shegar + toggle() //Предотвратит обработку оного когда он не в мехе + //[SIERRA-ADD] - Mechs-by-Shegar . = ..() /obj/item/mech_equipment/shields/attack_self(mob/user) diff --git a/code/modules/mechs/equipment/utility.dm b/code/modules/mechs/equipment/utility.dm index b870a9c069144..c46cbf729a007 100644 --- a/code/modules/mechs/equipment/utility.dm +++ b/code/modules/mechs/equipment/utility.dm @@ -697,6 +697,7 @@ /obj/item/gun/energy/plasmacutter/mounted/mech use_external_power = TRUE has_safety = FALSE + max_shots = 10 /obj/item/mech_equipment/mounted_system/taser/plasma diff --git a/code/modules/mechs/interface/_interface.dm b/code/modules/mechs/interface/_interface.dm index bb65fb85abc65..5c0ffb7415390 100644 --- a/code/modules/mechs/interface/_interface.dm +++ b/code/modules/mechs/interface/_interface.dm @@ -54,6 +54,7 @@ /obj/screen/movable/exosuit/toggle/megaspeakers, /obj/screen/movable/exosuit/toggle/gps, /obj/screen/movable/exosuit/toggle/medscan, + /obj/screen/movable/exosuit/id, ) //[SIERRA-EDIT] i = 0 diff --git a/code/modules/mechs/interface/screen_objects.dm b/code/modules/mechs/interface/screen_objects.dm index c4b6a8ffd23c8..49c07c3faab6f 100644 --- a/code/modules/mechs/interface/screen_objects.dm +++ b/code/modules/mechs/interface/screen_objects.dm @@ -215,6 +215,9 @@ /obj/screen/movable/exosuit/toggle/power_control/toggled() . = ..() owner.toggle_power(usr) + //[SIERRA-ADD] - Mechs-by-Shegar + owner.update_icon() + //[SIERRA-ADD] /obj/screen/movable/exosuit/toggle/power_control/on_update_icon() toggled = (owner.power == MECH_POWER_ON) @@ -285,11 +288,11 @@ /obj/screen/movable/exosuit/toggle/hatch_open/toggled() if (!owner) return - if(!owner.hatch_closed && owner.power != MECH_POWER_ON) + if(owner.hatch_locked) to_chat(usr, SPAN_WARNING("You cannot open the hatch while it is locked.")) return //[SIERRA-ADD] - Mechs-by-Shegar - if(owner.hatch_closed && owner.power != MECH_POWER_ON) + if(!owner.hatch_closed && owner.power != MECH_POWER_ON) to_chat(usr, SPAN_WARNING("Cockpit hydraulic system offline,hatch can't be closed now.")) return //[SIERRA-ADD] diff --git a/code/modules/mechs/mech.dm b/code/modules/mechs/mech.dm index 2f48b31e745cf..fb9e8a1f8b482 100644 --- a/code/modules/mechs/mech.dm +++ b/code/modules/mechs/mech.dm @@ -216,6 +216,17 @@ . = ..() if(.) update_pilots() + //[SIERRA-ADD] - Mechs-by-Shegar - Обновит спрайт пассажиров при развороте меха + if(passengers_ammount > 0) + update_passengers() + var/need_to_update = FALSE + //exosuit.passenger_compartment.count_passengers() + for(var/hardpoint in hardpoints) + if(hardpoint == "left hand" || hardpoint == "right hand" || hardpoint == "left shoulder" || hardpoint == "right shoulder") + need_to_update = TRUE + if(need_to_update == TRUE) + update_icon() + //[SIERRA-ADD] /mob/living/exosuit/proc/toggle_power(mob/user) if(power == MECH_POWER_TRANSITION) diff --git a/code/modules/mechs/mech_icon.dm b/code/modules/mechs/mech_icon.dm index 2b3721ac5c467..dfbdb0c31632e 100644 --- a/code/modules/mechs/mech_icon.dm +++ b/code/modules/mechs/mech_icon.dm @@ -56,17 +56,18 @@ var/obj/item/mech_equipment/hardpoint_object = hardpoints[hardpoint] if(hardpoint_object) //[SIERRA-ADD] - Mechs-by-Shegar + //Данный участок кода в зависимости от положения помещает модуль за мех или перед мехом, это выглядит красиво. if(hardpoint in list(HARDPOINT_LEFT_HAND, HARDPOINT_LEFT_SHOULDER)) - if(dir == WEST || dir == SOUTHWEST || dir == NORTHWEST) + if(dir == WEST || dir == SOUTHWEST || dir == NORTHWEST || dir == SOUTH || dir == NORTH) hardpoint_object.mech_layer = MECH_GEAR_LAYER else if(dir == EAST || dir == SOUTHEAST || dir == NORTHEAST) hardpoint_object.mech_layer = MECH_BACK_LAYER - else if(hardpoint in list(HARDPOINT_RIGHT_HAND,HARDPOINT_RIGHT_SHOULDER)) + else if(hardpoint in list(HARDPOINT_RIGHT_HAND, HARDPOINT_RIGHT_SHOULDER)) if(dir == WEST || dir == SOUTHWEST || dir == NORTHWEST) hardpoint_object.mech_layer = MECH_BACK_LAYER else if(dir == EAST || dir == SOUTHEAST || dir == NORTHEAST || dir == SOUTH) hardpoint_object.mech_layer = MECH_GEAR_LAYER - else if(hardpoint in list(HARDPOINT_BACK)) + else if(hardpoint in list(HARDPOINT_BACK, HARDPOINT_HEAD)) if(dir == SOUTH) hardpoint_object.mech_layer = MECH_BACK_LAYER else @@ -102,35 +103,47 @@ SetOverlays(new_overlays) /mob/living/exosuit/proc/update_pilots(update_overlays = TRUE) + //[SIERRA-ADD] - Mechs-by-Shegar + //Сперва мы проверяем - а нам вообще надо обновлять пилота? Если кабина закрытого типа, то, ну, зачем? + if(!body || (body.hide_pilot)) + return + var/local_dir = dir + if(local_dir == NORTHEAST || local_dir == SOUTHEAST) + local_dir = EAST + else if(local_dir == NORTHWEST || local_dir == SOUTHWEST) + local_dir = WEST + //[SIERRA-ADD] if(update_overlays && LAZYLEN(pilot_overlays)) CutOverlays(pilot_overlays) pilot_overlays = null - if(body && !(body.hide_pilot)) - for(var/i = 1 to LAZYLEN(pilots)) - var/mob/pilot = pilots[i] - var/image/draw_pilot = new - draw_pilot.appearance = pilot - var/rel_pos = dir == NORTH ? -1 : 1 - draw_pilot.layer = MECH_PILOT_LAYER + (body ? ((LAZYLEN(body.pilot_positions)-i)*0.001 * rel_pos) : 0) - draw_pilot.plane = FLOAT_PLANE - draw_pilot.appearance_flags = KEEP_TOGETHER - if(body && i <= LAZYLEN(body.pilot_positions)) - var/list/offset_values = body.pilot_positions[i] - var/list/directional_offset_values = offset_values["[dir]"] - draw_pilot.pixel_x = pilot.default_pixel_x + directional_offset_values["x"] - draw_pilot.pixel_y = pilot.default_pixel_y + directional_offset_values["y"] - draw_pilot.pixel_z = 0 - draw_pilot.ClearTransform() + for(var/i = 1 to LAZYLEN(pilots)) + var/mob/pilot = pilots[i] + var/image/draw_pilot = new + draw_pilot.appearance = pilot + var/rel_pos = local_dir == NORTH ? -1 : 1 + draw_pilot.layer = MECH_PILOT_LAYER + (body ? ((LAZYLEN(body.pilot_positions)-i)*0.001 * rel_pos) : 0) + draw_pilot.plane = FLOAT_PLANE + draw_pilot.appearance_flags = KEEP_TOGETHER + if(body && i <= LAZYLEN(body.pilot_positions)) + var/list/offset_values = body.pilot_positions[i] + var/list/directional_offset_values = offset_values["[local_dir]"] + draw_pilot.pixel_x = pilot.default_pixel_x + directional_offset_values["x"] + draw_pilot.pixel_y = pilot.default_pixel_y + directional_offset_values["y"] + draw_pilot.pixel_z = 0 + draw_pilot.ClearTransform() - //Mask pilots! - //Masks are 48x48 and pilots 32x32 (in theory at least) so some math is required for centering - var/diff_x = 8 - draw_pilot.pixel_x - var/diff_y = 8 - draw_pilot.pixel_y - draw_pilot.filters = filter(type = "alpha", icon = icon(body.on_mech_icon, "[body.icon_state]_pilot_mask[hatch_closed ? "" : "_open"]", dir), x = diff_x, y = diff_y) + //Mask pilots! + //Masks are 48x48 and pilots 32x32 (in theory at least) so some math is required for centering + var/diff_x = 8 - draw_pilot.pixel_x + var/diff_y = 8 - draw_pilot.pixel_y + //[SIERRA-EDIT] + //draw_pilot.filters = filter(type = "alpha", icon = icon(body.on_mech_icon, "[body.icon_state]_pilot_mask[hatch_closed ? "" : "_open"]", dir), x = diff_x, y = diff_y) + //SIERRA-EDIT + draw_pilot.filters = filter(type = "alpha", icon = icon(body.on_mech_icon, "[body.icon_state]_pilot_mask[hatch_closed ? "" : "_open"]", local_dir), x = diff_x, y = diff_y) - LAZYADD(pilot_overlays, draw_pilot) - if(update_overlays && LAZYLEN(pilot_overlays)) - AddOverlays(pilot_overlays) + LAZYADD(pilot_overlays, draw_pilot) + if(update_overlays && LAZYLEN(pilot_overlays)) + AddOverlays(pilot_overlays) /mob/living/exosuit/regenerate_icons() return diff --git a/code/modules/mechs/mech_interaction.dm b/code/modules/mechs/mech_interaction.dm index a145767d318ad..9502f1bff268b 100644 --- a/code/modules/mechs/mech_interaction.dm +++ b/code/modules/mechs/mech_interaction.dm @@ -221,6 +221,14 @@ var/arms_local_damage = arms.melee_damage src.visible_message(SPAN_DANGER("\The [src] steps back, preparing for a strike!"), blind_message = SPAN_DANGER("You hear the loud hissing of hydraulics!")) if (do_after(src, 1.2 SECONDS, get_turf(src), DO_DEFAULT | DO_USER_UNIQUE_ACT | DO_PUBLIC_PROGRESS) && user) + + //[SIERRA-ADD] - Mechs_by_Shegar + //CHECK + if (get_dist(src, A) > 1.5) + src.visible_message(SPAN_DANGER(" [src] misses with his attack!")) + setClickCooldown(arms ? arms.action_delay : 7) + playsound(src.loc, arms.punch_sound, 50, 1) + return //additional actions with objects! //emergency airlock open @@ -430,7 +438,7 @@ return TRUE // Crowbar - Force open locked cockpit - if (isCrowbar(tool)) + else if (isCrowbar(tool)) if (!body) USE_FEEDBACK_FAILURE("\The [src] has no cockpit to force.") //[SIERRA-EDIT] - Mechs-by-Shegar @@ -449,9 +457,8 @@ if(hatch_locked) USE_FEEDBACK_FAILURE("\The [src]'s cockpit locked by cockpit security bolts. You need saw or welder.") return FALSE - var/delay = min(50 * user.skill_delay_mult(SKILL_DEVICES), 50 * user.skill_delay_mult(SKILL_EVA)) visible_message(SPAN_NOTICE("\The [user] starts forcing the \the [src]'s emergency [body.hatch_descriptor] release using \the [tool].")) - if(!do_after(user, delay, src, DO_DEFAULT | DO_PUBLIC_PROGRESS)) + if(!do_after(user, 5 SECONDS, src, DO_DEFAULT | DO_PUBLIC_PROGRESS)) return playsound(src, 'sound/machines/bolts_up.ogg', 25, TRUE) hatch_closed = !hatch_closed @@ -478,7 +485,7 @@ return TRUE // [SIERRA-EDIT] // Mech Equipment - Install equipment - if (istype(tool, /obj/item/mech_equipment)) + else if (istype(tool, /obj/item/mech_equipment)) if (hardpoints_locked) USE_FEEDBACK_FAILURE("\The [src]'s hardpoint system is locked.") return TRUE @@ -503,7 +510,20 @@ return TRUE // Multitool - Remove component - if (isMultitool(tool)) + //[SIERRA-ADD] - Mechs-by-Shegar + //Персонаж пытающийся взаимодействовать мультитулом может открыть доп взаимодействие? + else if (istype(tool, /obj/item/device/multitool/multimeter)) + can_hack_id(tool, user) + else if (isMultitool(tool)) + if(id_holder) + var/list/variants = list("Restore ID data", "Dismantle equipment") + var/bla + var/choose = input(usr, "What you want to do?.", name, bla) as null|anything in variants + if(!choose) + return + if(choose == "Restore ID data") + can_hack_id(tool,user) + //[SIERRA-ADD] - Mechs-by-Shegar if (hardpoints_locked) USE_FEEDBACK_FAILURE("\The [src]'s hardpoint system is locked.") return TRUE @@ -521,7 +541,7 @@ return TRUE // Power Cell - Install cell - if (istype(tool, /obj/item/cell)) + else if (istype(tool, /obj/item/cell)) if (!maintenance_protocols) USE_FEEDBACK_FAILURE("\The [src]'s maintenance protocols must be enabled to install \the [tool].") return TRUE @@ -540,7 +560,7 @@ return TRUE // Screwdriver - Remove cell - if (isScrewdriver(tool)) + else if (isScrewdriver(tool)) if (!maintenance_protocols) USE_FEEDBACK_FAILURE("\The [src]'s maintenance protocols must be enabled to access the power cell.") return TRUE @@ -570,7 +590,7 @@ return TRUE // Welding Tool - Repair physical damage - if (isWelder(tool)) + else if (isWelder(tool)) if (!getBruteLoss()) USE_FEEDBACK_FAILURE("\The [src] has no physical damage to repair.") return TRUE @@ -584,11 +604,14 @@ if (!input_fix.brute_damage) USE_FEEDBACK_FAILURE("\The [src]'s [input_fix.name] no longer needs repair.") return TRUE + if(input_fix.max_damage - input_fix.current_hp > input_fix.max_repair) + USE_FEEDBACK_FAILURE("\The [src]'s [input_fix.name] is too damaged and requires repair with material.") + return TRUE input_fix.repair_brute_generic(tool, user) return TRUE // Wrench - Toggle securing bolts - if (isWrench(tool)) + else if (isWrench(tool)) if (!maintenance_protocols) USE_FEEDBACK_FAILURE("\The [src]'s maintenance protocols must be enabled to access the securing bolts.") return TRUE diff --git a/code/modules/mechs/mech_life.dm b/code/modules/mechs/mech_life.dm index 0a4f2a478418d..48631c8a57021 100644 --- a/code/modules/mechs/mech_life.dm +++ b/code/modules/mechs/mech_life.dm @@ -11,13 +11,16 @@ pilot.client.screen -= menu_hud_elements LAZYREMOVE(pilots, pilot) UNSETEMPTY(pilots) - update_pilots() + //[SIERRA-REMOVE] - Mechs-by-Shegar + //update_pilots() - Спамить проком обновления пилота БЕЗ ОСОБОЙ ПРИЧИНЫ - ОШИБКА + //[SIERRA-REMOVE] //[SIERRA-EDIT] - Mechs-by-Shegar //Я сдвинул вот этот кусок выше, дабы если ВДРУГ функция будет умирать по пути, то мех не становился бессмертным //[SIERRA-EDIT] updatehealth() if(health <= 0 && stat != DEAD) death() + return if(radio) radio.on = (head && head.radio && head.radio.is_functional() && get_cell()) diff --git a/code/modules/mechs/mech_movement.dm b/code/modules/mechs/mech_movement.dm index d8ed153e0086c..dbca01e78691e 100644 --- a/code/modules/mechs/mech_movement.dm +++ b/code/modules/mechs/mech_movement.dm @@ -125,12 +125,7 @@ playsound(exosuit.loc, exosuit.legs.mech_turn_sound, 40,1) exosuit.set_dir(moving_dir) exosuit.SetMoveCooldown(exosuit.legs.turn_delay) - exosuit.passenger_compartment.count_passengers() - if(exosuit.passengers_ammount > 0) - exosuit.update_passengers() - for(var/hardpoint in exosuit.hardpoints) - if(hardpoint == "left hand" || hardpoint == "right hand" || hardpoint == "left shoulder" || hardpoint == "right shoulder") - exosuit.update_icon() + //TURN //MOVE @@ -138,7 +133,21 @@ exosuit.SetMoveCooldown(exosuit.legs ? exosuit.legs.move_delay : 3) var/turf/target_loc = get_step(exosuit, direction) if(target_loc && exosuit.legs && exosuit.legs.can_move_on(exosuit.loc, target_loc) && exosuit.MayEnterTurf(target_loc)) - exosuit.Move(target_loc) + if(!exosuit.body.phazon) + exosuit.Move(target_loc) + else + for(var/thing in exosuit.pilots) //Для всех пилотов внутри + var/mob/pilot = thing + if(pilot && pilot.client) + for(var/key in pilot.client.keys_held) + if (key == "Shift") + var/move_speed = exosuit.legs.move_delay + move_speed = move_speed * 2.5 + exosuit.SetMoveCooldown(exosuit.legs ? move_speed : 3) + exosuit.forceMove(target_loc) + + else + exosuit.Move(target_loc) return MOVEMENT_HANDLED /datum/movement_handler/mob/space/exosuit expected_host_type = /mob/living/exosuit diff --git a/code/modules/mechs/premade/powerloader.dm b/code/modules/mechs/premade/powerloader.dm index 23169395d70c5..41e656fe6d03f 100644 --- a/code/modules/mechs/premade/powerloader.dm +++ b/code/modules/mechs/premade/powerloader.dm @@ -98,11 +98,20 @@ MC.color = rgb(255,rand(188, 225),rand(55, 136)) //Damage it var/obj/item/mech_component/damaged = pick(parts) + //[SIERRA-EDIT] - Mechs-by-Shegar + /* + damaged.take_brute_damage((damaged.max_damage/ 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + if(prob(33)) + parts -= damaged + damaged = pick(parts) + damaged.take_brute_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + */ damaged.take_brute_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) if(prob(33)) parts -= damaged damaged = pick(parts) damaged.take_brute_damage((damaged.max_damage / 4 ) * MECH_COMPONENT_DAMAGE_DAMAGED) + //[SIERRA-EDIT] - Mechs-by-Shegar /mob/living/exosuit/premade/powerloader/old/spawn_mech_equipment() install_system(new /obj/item/mech_equipment/light(src), HARDPOINT_HEAD) diff --git a/code/modules/mob/living/carbon/alien/life.dm b/code/modules/mob/living/carbon/alien/life.dm index 54e57c76b9f0b..ca71bea78a622 100644 --- a/code/modules/mob/living/carbon/alien/life.dm +++ b/code/modules/mob/living/carbon/alien/life.dm @@ -116,8 +116,7 @@ if(machine.check_eye(src) < 0) reset_view(null) else - if(client && !client.adminobs) - reset_view(null) + reset_view(null) return 1 diff --git a/code/modules/mob/living/carbon/brain/life.dm b/code/modules/mob/living/carbon/brain/life.dm index e747a13db071f..418138aeb20c9 100644 --- a/code/modules/mob/living/carbon/brain/life.dm +++ b/code/modules/mob/living/carbon/brain/life.dm @@ -189,7 +189,6 @@ if (!( machine.check_eye(src) )) reset_view(null) else - if(client && !client.adminobs) - reset_view(null) + reset_view(null) return 1 diff --git a/code/modules/mob/living/carbon/human/corpse.dm b/code/modules/mob/living/carbon/human/corpse.dm index 83e9264945da2..fe66afe72ed6b 100644 --- a/code/modules/mob/living/carbon/human/corpse.dm +++ b/code/modules/mob/living/carbon/human/corpse.dm @@ -201,3 +201,7 @@ /obj/landmark/corpse/syndicate/commando name = "Syndicate Commando" corpse_outfits = list(/singleton/hierarchy/outfit/mercenary/syndicate/commando) + +/obj/landmark/corpse/anomalist + name = "Dead Anomalist" + corpse_outfits = list(/singleton/hierarchy/outfit/anomalist) diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index 80d81955ea679..6b0e5ca5b0be9 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -97,7 +97,11 @@ /mob/living/carbon/human/proc/process_visor(obj/item/clothing/head/hat, obj/item/clothing/glasses/eyewear) remove_client_color(/datum/client_color/monochrome) remove_client_color(/datum/client_color/nvg) - if (hat) + //SIERRA-EDIT (Убивает рантайм, когда с НЕ шлемов пытаются стянуть очки) + //if(hat) + + if (hat && istype(hat, /obj/item/clothing/head )) + //SIERRA-EDIT for(var/obj/item/clothing/accessory/glassesmod/mod in hat.accessories) if (mod?.active) equipment_darkness_modifier += mod.darkness_view diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 9fa40a5421ff3..1c4da4029e33b 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -1146,7 +1146,7 @@ else if((mRemote in mutations) && remoteview_target) if(remoteview_target.stat == CONSCIOUS) isRemoteObserve = 1 - if(!isRemoteObserve && client && !client.adminobs) + if(!isRemoteObserve && client) remoteview_target = null reset_view(null, 0) diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 2c6263ef7ec19..95787852e45e7 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -188,7 +188,7 @@ else if(eyeobj) if(eyeobj.owner != src) reset_view(null) - else if(!client?.adminobs) + else reset_view(null) /mob/living/proc/update_sight() diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index 58c163b6552bc..6c76dec5dc012 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -236,8 +236,7 @@ if (machine.check_eye(src) < 0) reset_view(null) else - if(client && !client.adminobs) - reset_view(null) + reset_view(null) return 1 diff --git a/code/modules/organs/external/diagnostics.dm b/code/modules/organs/external/diagnostics.dm index 522a143a9b682..e67c1f1ad8cbc 100644 --- a/code/modules/organs/external/diagnostics.dm +++ b/code/modules/organs/external/diagnostics.dm @@ -171,6 +171,8 @@ if(!length(sounds)) if(owner.pulse()) sounds += "faint pulse" + if(status & ORGAN_ARTERY_CUT) + sounds += "rushing liquid" return sounds /singleton/diagnostic_sign diff --git a/code/modules/overmap/disperser/disperser_charge.dm b/code/modules/overmap/disperser/disperser_charge.dm index 1a6ff5631c1e3..9376ad594abce 100644 --- a/code/modules/overmap/disperser/disperser_charge.dm +++ b/code/modules/overmap/disperser/disperser_charge.dm @@ -1,7 +1,7 @@ /obj/structure/ship_munition/disperser_charge name = "unknown disperser charge" desc = "A charge to power the obstruction field disperser with. It looks impossibly round and shiny. This charge does not have a defined purpose." - icon_state = "slug" + icon_state = "ammunition1" atom_flags = ATOM_FLAG_NO_TEMP_CHANGE | ATOM_FLAG_CLIMBABLE var/chargetype var/chargedesc @@ -11,7 +11,7 @@ /obj/structure/ship_munition/disperser_charge/fire name = "\improper FR1-ENFER charge" - color = "#b95a00" + icon_state = "ammunition4" desc = "A charge to power the obstruction field disperser with. It looks impossibly round and shiny. This charge is designed to release a localised fire on impact." chargetype = OVERMAP_WEAKNESS_FIRE chargedesc = "ENFER" @@ -29,7 +29,7 @@ /obj/structure/ship_munition/disperser_charge/emp name = "\improper EM2-QUASAR charge" - color = "#6a97b0" + icon_state = "ammunition3" desc = "A charge to power the obstruction field disperser with. It looks impossibly round and shiny. This charge is designed to release a blast of electromagnetic pulse on impact." chargetype = OVERMAP_WEAKNESS_EMP chargedesc = "QUASAR" @@ -39,7 +39,7 @@ /obj/structure/ship_munition/disperser_charge/mining name = "\improper MN3-BERGBAU charge" - color = "#cfcf55" + icon_state = "ammunition2" desc = "A charge to power the obstruction field disperser with. It looks impossibly round and shiny. This charge is designed to mine ores on impact." chargetype = OVERMAP_WEAKNESS_MINING chargedesc = "BERGBAU" @@ -55,7 +55,7 @@ /obj/structure/ship_munition/disperser_charge/explosive name = "\improper XP4-INDARRA charge" - color = "#aa5f61" + icon_state = "ammunition5" desc = "A charge to power the obstruction field disperser with. It looks impossibly round and shiny. This charge is designed to explode on impact." chargetype = OVERMAP_WEAKNESS_EXPLOSIVE chargedesc = "INDARRA" diff --git a/code/modules/power/fusion/fuel_assembly/fuel_injector.dm b/code/modules/power/fusion/fuel_assembly/fuel_injector.dm index 4f9d9c1ae2398..7a7558a9f6e79 100644 --- a/code/modules/power/fusion/fuel_assembly/fuel_injector.dm +++ b/code/modules/power/fusion/fuel_assembly/fuel_injector.dm @@ -27,9 +27,12 @@ /obj/machinery/fusion_fuel_injector/on_update_icon() ClearOverlays() - if(panel_open) + if (panel_open) AddOverlays("[icon_state]_panel") - if(injecting && cur_assembly) + if (injecting && cur_assembly) + AddOverlays(emissive_appearance(icon, "[icon_state]_lights_emitting")) + AddOverlays("[icon_state]_lights_emitting") + else AddOverlays(emissive_appearance(icon, "[icon_state]_lights")) AddOverlays("[icon_state]_lights") @@ -131,11 +134,8 @@ amount_left += cur_assembly.rod_quantities[reagent] if(cur_assembly) cur_assembly.percent_depleted = amount_left / cur_assembly.initial_amount - AddOverlays(emissive_appearance(icon, "[icon_state]_lights_emitting")) - AddOverlays("[icon_state]_lights_emitting") else StopInjecting() - update_icon() /obj/machinery/fusion_fuel_injector/verb/rotate_clock() set category = "Object" diff --git a/code/modules/research/designs/designs_bluespace.dm b/code/modules/research/designs/designs_bluespace.dm index e3cf4a2526cdd..5d21c5d925b77 100644 --- a/code/modules/research/designs/designs_bluespace.dm +++ b/code/modules/research/designs/designs_bluespace.dm @@ -37,4 +37,12 @@ materials = list(MATERIAL_GOLD = 3000, MATERIAL_DIAMOND = 1500, MATERIAL_URANIUM = 250, MATERIAL_PLASTIC = 250) build_path = /obj/item/storage/backpack/holding sort_string = "VAFAA" - +// SIERRA ADD +/datum/design/item/telesci/gps + name = "Telescience GPS" + desc = "Required for calculations in the telescience field." + req_tech = list(TECH_ENGINEERING = 3, TECH_BLUESPACE = 4) + materials = list(MATERIAL_STEEL = 300, MATERIAL_PLASTIC = 250) + build_path = /obj/item/device/telesci/gps + sort_string = "VACAA" +// SIERRA ADD-END diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm index 4c234f4a44876..e04eab79e3482 100644 --- a/code/modules/research/protolathe.dm +++ b/code/modules/research/protolathe.dm @@ -103,7 +103,7 @@ if((. = ..())) return if(O.is_open_container()) - return TRUE + return FALSE if(panel_open) to_chat(user, SPAN_NOTICE("You can't load \the [src] while it's opened.")) return TRUE diff --git a/code/modules/species/station/station.dm b/code/modules/species/station/station.dm index 983238c860bd1..b3838f3ab2db0 100644 --- a/code/modules/species/station/station.dm +++ b/code/modules/species/station/station.dm @@ -105,7 +105,7 @@ pronouns = list(PRONOUNS_THEY_THEM) hidden_from_codex = FALSE min_age = 19 - max_age = 90 + max_age = 130 burn_mod = 0.9 oxy_mod = 1.3 diff --git a/code/modules/supermatter/supermatter.dm b/code/modules/supermatter/supermatter.dm index c0bd8a1f1757e..cbd399d345d6b 100644 --- a/code/modules/supermatter/supermatter.dm +++ b/code/modules/supermatter/supermatter.dm @@ -106,7 +106,7 @@ var/aw_EPR = FALSE var/list/threshholds = list( // List of lists defining the amber/red labeling threshholds in readouts. Numbers are minminum red and amber and maximum amber and red, in that order - list("name" = SUPERMATTER_DATA_EER, "min_h" = -1, "min_l" = -1, "max_l" = 150, "max_h" = 300), + list("name" = SUPERMATTER_DATA_EER, "min_h" = -1, "min_l" = -1, "max_l" = 1100, "max_h" = 1300), list("name" = SUPERMATTER_DATA_TEMPERATURE, "min_h" = -1, "min_l" = -1, "max_l" = 4000, "max_h" = 5000), list("name" = SUPERMATTER_DATA_PRESSURE, "min_h" = -1, "min_l" = -1, "max_l" = 5000, "max_h" = 10000), list("name" = SUPERMATTER_DATA_EPR, "min_h" = -1, "min_l" = 1.0, "max_l" = 2.5, "max_h" = 4.0) diff --git a/code/modules/surgery/implant.dm b/code/modules/surgery/implant.dm index ea1a1a38ae00b..192b6e173aea7 100644 --- a/code/modules/surgery/implant.dm +++ b/code/modules/surgery/implant.dm @@ -169,46 +169,47 @@ playsound(target.loc, 'sound/items/hemostat.ogg', 50, TRUE) ..() + /singleton/surgery_step/cavity/implant_removal/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) var/obj/item/organ/external/chest/affected = target.get_organ(target_zone) - var/exposed = 0 + var/exposed if(affected.how_open() >= (affected.encased ? SURGERY_ENCASED : SURGERY_RETRACTED)) - exposed = 1 + exposed = TRUE if(BP_IS_ROBOTIC(affected) && affected.hatch_state == HATCH_OPENED) - exposed = 1 - + exposed = TRUE var/list/loot = list() - if(exposed) + if (exposed) loot = affected.implants else - for(var/datum/wound/wound in affected.wounds) - if(LAZYLEN(wound.embedded_objects)) + for (var/datum/wound/wound in affected.wounds) + if (length(wound.embedded_objects)) loot |= wound.embedded_objects - - if (length(loot)) - - var/obj/item/obj = pick(loot) - - user.visible_message(SPAN_NOTICE("[user] takes something out of incision on [target]'s [affected.name] with \the [tool]."), \ - SPAN_NOTICE("You take \the [obj] out of incision on \the [target]'s [affected.name] with \the [tool].") ) + if (!length(loot)) + user.visible_message( + SPAN_NOTICE("\The [user] could not find anything inside \the [target]'s [affected.name], and pulls their [tool] out."), + SPAN_NOTICE("You could not find anything inside \the [target]'s [affected.name].") + ) + return + shuffle(loot, TRUE) + for (var/i = length(loot) to 1 step -1) + var/obj/item/obj = loot[i] + user.visible_message( + SPAN_NOTICE("\The [user] takes something out of incision on \the [target]'s [affected.name] with \a [tool]."), + SPAN_NOTICE("You take \a [obj] out of the incision on \the [target]'s [affected.name] with \the [tool].") + ) target.remove_implant(obj, TRUE, affected) - SET_BIT(target.hud_updateflag, IMPLOYAL_HUD) - - //Handle possessive brain borers. - if(istype(obj,/mob/living/simple_animal/borer)) + if (istype(obj, /mob/living/simple_animal/borer)) var/mob/living/simple_animal/borer/worm = obj - if(worm.controlling) + if (worm.controlling) target.release_control() worm.detatch() worm.leave_host() + playsound(target.loc, 'sound/effects/squelch1.ogg', 15, TRUE) + if (i == 1 || !user.do_skilled(3 SECONDS, SKILL_ANATOMY, target, 0.3, DO_SURGERY) || !user.use_sanity_check(target, tool)) + break - playsound(target.loc, 'sound/effects/squelch1.ogg', 15, 1) - else - user.visible_message(SPAN_NOTICE("[user] could not find anything inside [target]'s [affected.name], and pulls \the [tool] out."), \ - SPAN_NOTICE("You could not find anything inside [target]'s [affected.name].") ) - /singleton/surgery_step/cavity/implant_removal/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) ..() var/obj/item/organ/external/affected = target.get_organ(target_zone) diff --git a/code/modules/xenoarcheaology/anomaly_container.dm b/code/modules/xenoarcheaology/anomaly_container.dm index ebbb033d1e712..aa28ab274fe08 100644 --- a/code/modules/xenoarcheaology/anomaly_container.dm +++ b/code/modules/xenoarcheaology/anomaly_container.dm @@ -41,7 +41,7 @@ if(!src.allowed(user)) to_chat(user, SPAN_WARNING("\The [src] blinks red, notifying you of your incorrect access.")) return - if(!src.health_dead) + if(!src.health_dead()) user.visible_message( SPAN_NOTICE("\The [user] begins undoing the locks and latches on \the [src]..."), SPAN_NOTICE("You begin undoing the locks and latches on \the [src]...") @@ -71,7 +71,7 @@ if(!src.allowed(user)) to_chat(user, SPAN_WARNING("\The [src] blinks red, notifying you of your incorrect access.")) return - if(!src.health_dead) + if(!src.health_dead()) user.visible_message( SPAN_NOTICE("\The [user] begins undoing the locks and latches on \the [src]..."), SPAN_NOTICE("You begin undoing the locks and latches on \the [src]...") @@ -95,7 +95,7 @@ if (attached_paper) to_chat(usr, SPAN_NOTICE("There's a paper clipped on the side.")) attached_paper.examine(user, distance) - if (health_dead) + if (health_dead()) to_chat(usr, SPAN_DANGER("The borosilicate panels are completely shattered.")) /obj/machinery/anomaly_container/proc/contain(obj/machinery/artifact) @@ -146,7 +146,7 @@ /obj/machinery/anomaly_container/emp_act(severity) SHOULD_CALL_PARENT(FALSE) - if(health_dead) + if(health_dead()) return if(contained) visible_message(SPAN_DANGER("\The [src]'s latches break loose, freeing the contents!")) @@ -174,7 +174,7 @@ return TRUE if (istype(P, /obj/item/stack/material)) - if (!health_dead) + if (!health_dead()) to_chat(user, SPAN_NOTICE("\The [src] doesn't require repairs.")) return TRUE if (contained) @@ -211,7 +211,7 @@ return TRUE if (isWrench(P)) - if (!health_dead) + if (!health_dead()) return TRUE user.visible_message( @@ -234,7 +234,7 @@ /obj/machinery/anomaly_container/on_update_icon() ClearOverlays() - if(health_dead) + if(health_dead()) icon_state = "anomaly_container_broken" if(attached_paper) AddOverlays("anomaly_container_paper") diff --git a/html/changelog.html b/html/changelog.html index 1bdb1abd67b69..5c2343f1e37f5 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -28,6 +28,195 @@

Sierra SS13

-->
+

25.06 - 2024

+

Обновления GoldKingNoPing3:

+
+
Добавил доступ на мостик Квартирмейстеру
+
+

Обновления Neonvolt:

+
+
Пофикшен археологический шкаф в комнате подготовки у шахтеров
+
Добавлены дополнительные экраны newscaster и пожарные тревоги
+
Шаттлы мерков, хейстеров и воксов-рейдеров теперь правильно стыкуются к Сьерре
+
Добавлено требование по доступу в дормы карго/сервиса
+
+

Обновления ВашНикнейм:

+
+
Теперь ОЗА не будет видеть табличку "нюка" на хранилище.
+
+ +

24.06 - 2024

+

Обновления Teteshnik:

+
+
Пофиксил дамаг палки стальной
+
Добавил ресурсы для крафта АБС
+
Добавил нормальные спрайты для снарядов ОФД.
+
Удалил старые спрайты снарядов ОФД
+
Поменял спрайты шлема ОБР
+
+

Обновления Unchi:

+
+
QoL - Исправил одинаковые наименования костюмов и головных уборов охраны(для офицеров, вардена и ГСБ).
+
QoL - Добавил отдельные пункты с выбором головных уборов охраны(security beret/softcap selection) в лодауте. Из-за этого, теперь береты ЧВК под блокировкой на контрактников. Добавил все костюмы охраны НТ в пункт security uniform.
+
Возвращены униформы кадетов.
+
+

Обновления ВашНикнейм:

+
+
Дополнительный контент, добавить который в патч 1.1 я забыл.
+
Добавлены доп препятствия тому чтоб мех сходу топтал людей.
+
+ +

23.06 - 2024

+

Обновления FeudeyTF:

+
+
Пофиксил баг с обновлением интерфейсов некоторых консолей телекоммов
+
Вернул в игру возможность управления потоком сообщений, передающихся по рации
+
Переставил консоли телекоммов, чтобы было удобнее
+
+

Обновления Shegar:

+
+
Влияние на зрение пилота восстановлено, сенсоры и прочее не работали, мех не мог ослепнуть
+
Исправлен спрайт огнемёта
+
Мех промахнется атакой, если цель отойдёт от меха в замахе
+
Фонарь больше не перекрывает голову меха
+
Отображение спрайтов теперь не ломается при повороте с юга на север.
+
СМГ меха не рантаймит после стрельбы.
+
Теперь пилота полностью рисует по диогонали
+
Пульсач меха теперь бьёт ровно и по 1 выстрелу.
+
Устранён рантайм возникающий при копировании доступа с ID карт.
+
Устранены рантаймы возникающие при надевании НЕ одежду на голову+
+
Добавлены дополнительные препятствия тому чтоб мех сходу ложил человека на пол. Мех теперь всегда должен исключительно толкать стоячих людей.
+
Звук принятия ID, миниган.
+
Реализована система взаимодействия меха с ID картами. Появилась новая кнопка в menu меха. Если нажать по ней ID картой, вы сможете или очистить имеющийся доступ, или записать новый, выбрав из выпадающего листа. После этого, доступ записывается в память меха. Если ткнуть по активному меху картой и карточка пройдёт проверку доступа, мех изменит своё состояние - либо откроется если он закрыт, либо закроется, если он открыт. К этому, появились 3 метода взлома - емаг ИЛИ мультитул + 4 уровень девайсов (мастер это пятый) ИЛИ мультиметр + 3 уровень девайсов + 3 уровень электрики.
+
Сильно усложнено обслуживание мехов. Если урон в конечности выше определённого значения, одной сваркой не обойтись. Вам потребуется лист материала, какой именно - зависит от самой части, а так же КРАЙНЕ ЖЕЛАТЕЛЕН 2 уровень девайсов и 1 уровень конструкторства, иначе с огромным шансом, материал вы сливаете. После ремонта, максимальное ХП конечности уменьшается НАВСЕГДА и единственный метод это исправить - напечатать новую часть.
+
Сделаны заготовки мехов дедов, Гигакс, Дюранд, Фазон и размещены на базе дедов.
+
Резак баффнут, 10 выстрелов вместо 4
+
ЭК мех получил осмиум на обшивку дабы не гореть в гиене огненной
+
Мех больше не таранит меха и подобных себе по росту существ (К примеру ГБСа)
+
+ +

22.06 - 2024

+

Обновления Karl Johansson:

+
+
Riot helmets can attach visors.
+
Visors don't show on mob when in storage.
+
+

Обновления Lexanx:

+
+
Максимальный возраст Скреллов теперь 130
+
+

Обновления Ryan180602:

+
+
Adds the Shikra to the sensor suite.
+
+

Обновления Spookerton:

+
+
Fake moustaches fit in pockets and the visible name of wearers can be adjusted with the Change Visible Name verb.
+
Liquid Corruption returns to exoplanet datapod spawns at a much reduced rate of about 1.67%
+
+

Обновления Teteshnik1:

+
+
Исправлена невозможность улучшать зарядники
+
Возвращена возможность создавать искусственные БС-кристаллы
+
+

Обновления sdtwbaj:

+
+
Using a stethoscope on a body part with arterial bleeding reports "rushing liquid".
+
+ +

19.06 - 2024

+

Обновления Teteshnik:

+
+
Теперь мы имеем разные GPS. Один GPS для телесайнса, второй GPS для обычного использования.
+
Теперь зарядники можно улучшать.
+
+ +

18.06 - 2024

+

Обновления Teteshnik:

+
+
Пофиксил баг связанный со спрайтом кадетского пистолета.
+
Возвращаю телесало обратно в игру
+
Исправил опечатку связанную с названием платы.
+
+ +

15.06 - 2024

+

Обновления MGWhiskers:

+
+
косметика и ишшуи
+
+

Обновления Merlin1230:

+
+
The protolathe will now actually accept chemicals
+
The maintenance rooms are now actually shielded from radiation like the rest of maintence
+
+

Обновления Mucker:

+
+
Audible emotes with sounds can no longer be spammed.
+
+

Обновления Sbotkin:

+
+
Yellow hardhat (the default one) can now be picked in loadout.
+
Default EER thresholds are raised to 1100 and 1300.
+
R-UST now gets low wall windows instead of full-sized.
+
R-UST airlock is now unbolted by default, on par with the SM one.
+
+

Обновления Spookerton:

+
+
Foreign body removal surgery repeats removals until interrupted or there's nothing left to remove.
+
Fusion fuel injectors no longer negatively impact rendering performance over time.
+
+

Обновления cuddleandtea:

+
+
admins can change volume for local tracks
+
+ +

12.06 - 2024

+

Обновления Lexanx:

+
+
Ремонт вытащенной позитронки
+
+

Обновления Shegar:

+
+
Убит рантайм происходящий при удалении одежды (Выход в госты тоже его провоцировал)
+
Убит рантайм происходящий из-за того что мех встал на диагональ(update_pilots не знал что такое диагональ)
+
Убит крит баг не позволяющий двигать иконки. Теперь разрешаю.
+
Теперь колонии при спавне будут рандомно или заранее решённым образом выбирать к какой фракции они принадлежат - НТ, ЦПСС, ГКК или Независимые. Это влияет на флаги, снаряжение, бумажку на столе, а так же НТ и ЦПСС тип передаёт на сьерру о себе информацию. Пока что всё
+
Знак "COLONY" для колонии
+
Добавил в печать РНД платы телепада и телепрожектора. Оные теперь разборные, как на инфинити.
+
Дал робототехникам краску
+
Обе колонии взамен старого снаряжения получили 1 единицу rifle, 1 единицу ПП, и по 2 единицы шлемов и броников. Какие именно зависит от типа колонии
+
Стазиз ящики и аномальные ящики на судне ГКК теперь без доступа, и их можно спокойно использовать.
+
Выдал кнопку выбора типа колонии для педалей.
+
+

Обновления Teteshnik:

+
+
Теперь не будут 2 скальпеля в автолате.
+
Подправил крафт с зипганом
+
У сигареты имеется звук затяжки.
+
Добавил звук затяжки.
+
Заменил в тактическом наборе, а именно: вместо тактических очков теперь ПНВ нашлемный.
+
+ +

11.06 - 2024

+

Обновления Teteshnik:

+
+
Исправил баг с китами мерков
+
Добавил скотч в автолат
+
+ +

10.06 - 2024

+

Обновления KandJX:

+
+
Добавлены вендоматы с контрабандой.
+
Добавил точки спавна рандомных вендоматов в техах.
+
+ +

09.06 - 2024

+

Обновления Teteshnik:

+
+
Вернул жабам стать СМО
+
+

08.06 - 2024

Обновления Lexanx:

@@ -414,20 +603,6 @@

Обновления UEDHighCommand:

Добавлена поддержка 515 версии бьёнда
Добавлен вайдскрин
- -

23.04 - 2024

-

Обновления Daeberdir, UEDHighCommand:

-
-
Портирована раса резоми с Инфинити
-
-

Обновления UEDHighCommand:

-
-
Добавлены логотипы ЧВК SAARE ([saarelogo]), PCRC ([pcrclogo]), ZPCI ([zpcilogo])
-
Добавлена символика фракций унати - Гегемонии ([hegemonylogo]), Конвента ([conventlogo]), Лиги ([leaguelogo]), Оуэра ([ouerelogo]), Терстенских кланов ([terstenlogo])
-
Новые эмоции унати теперь добавлены и для йоза'унати
-
Перенесена механика ядовитого укуса йоза'унати с Infinity
-
Добавлены расовые спрайты под унати для некоторых предметов из лодаута
-
Icons by Icons8
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 08cd4c1efc026..1ed44c1bb9acb 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -24072,3 +24072,422 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY sierra_genchangelog.p \u041F\u041A) \u0447\u0435\u0440\u0435\u0437 \u043A\u043E\u043D\u0441\u043E\u043B\ \u044C\u043D\u0443\u044E \u043A\u043E\u043C\u0430\u043D\u0434\u0443 \"datajack\"\ ." +2024-06-09: + Teteshnik: + - tweak: "\u0412\u0435\u0440\u043D\u0443\u043B \u0436\u0430\u0431\u0430\u043C \u0441\ + \u0442\u0430\u0442\u044C \u0421\u041C\u041E" +2024-06-10: + KandJX: + - tweak: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0432\u0435\u043D\ + \u0434\u043E\u043C\u0430\u0442\u044B \u0441 \u043A\u043E\u043D\u0442\u0440\u0430\ + \u0431\u0430\u043D\u0434\u043E\u0439." + - maptweak: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0442\u043E\u0447\u043A\ + \u0438 \u0441\u043F\u0430\u0432\u043D\u0430 \u0440\u0430\u043D\u0434\u043E\u043C\ + \u043D\u044B\u0445 \u0432\u0435\u043D\u0434\u043E\u043C\u0430\u0442\u043E\u0432\ + \ \u0432 \u0442\u0435\u0445\u0430\u0445." +2024-06-11: + Teteshnik: + - bugfix: "\u0418\u0441\u043F\u0440\u0430\u0432\u0438\u043B \u0431\u0430\u0433 \u0441\ + \ \u043A\u0438\u0442\u0430\u043C\u0438 \u043C\u0435\u0440\u043A\u043E\u0432" + - rscadd: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0441\u043A\u043E\u0442\u0447\ + \ \u0432 \u0430\u0432\u0442\u043E\u043B\u0430\u0442" +2024-06-12: + Lexanx: + - bugfix: "\u0420\u0435\u043C\u043E\u043D\u0442 \u0432\u044B\u0442\u0430\u0449\u0435\ + \u043D\u043D\u043E\u0439 \u043F\u043E\u0437\u0438\u0442\u0440\u043E\u043D\u043A\ + \u0438" + Shegar: + - bugfix: "\u0423\u0431\u0438\u0442 \u0440\u0430\u043D\u0442\u0430\u0439\u043C \u043F\ + \u0440\u043E\u0438\u0441\u0445\u043E\u0434\u044F\u0449\u0438\u0439 \u043F\u0440\ + \u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0438 \u043E\u0434\u0435\u0436\ + \u0434\u044B (\u0412\u044B\u0445\u043E\u0434 \u0432 \u0433\u043E\u0441\u0442\ + \u044B \u0442\u043E\u0436\u0435 \u0435\u0433\u043E \u043F\u0440\u043E\u0432\u043E\ + \u0446\u0438\u0440\u043E\u0432\u0430\u043B)" + - bugfix: "\u0423\u0431\u0438\u0442 \u0440\u0430\u043D\u0442\u0430\u0439\u043C \u043F\ + \u0440\u043E\u0438\u0441\u0445\u043E\u0434\u044F\u0449\u0438\u0439 \u0438\u0437\ + -\u0437\u0430 \u0442\u043E\u0433\u043E \u0447\u0442\u043E \u043C\u0435\u0445\ + \ \u0432\u0441\u0442\u0430\u043B \u043D\u0430 \u0434\u0438\u0430\u0433\u043E\ + \u043D\u0430\u043B\u044C(update_pilots \u043D\u0435 \u0437\u043D\u0430\u043B\ + \ \u0447\u0442\u043E \u0442\u0430\u043A\u043E\u0435 \u0434\u0438\u0430\u0433\ + \u043E\u043D\u0430\u043B\u044C)" + - bugfix: "\u0423\u0431\u0438\u0442 \u043A\u0440\u0438\u0442 \u0431\u0430\u0433\ + \ \u043D\u0435 \u043F\u043E\u0437\u0432\u043E\u043B\u044F\u044E\u0449\u0438\u0439\ + \ \u0434\u0432\u0438\u0433\u0430\u0442\u044C \u0438\u043A\u043E\u043D\u043A\u0438\ + . \u0422\u0435\u043F\u0435\u0440\u044C \u0440\u0430\u0437\u0440\u0435\u0448\u0430\ + \u044E." + - rscadd: "\u0422\u0435\u043F\u0435\u0440\u044C \u043A\u043E\u043B\u043E\u043D\u0438\ + \u0438 \u043F\u0440\u0438 \u0441\u043F\u0430\u0432\u043D\u0435 \u0431\u0443\u0434\ + \u0443\u0442 \u0440\u0430\u043D\u0434\u043E\u043C\u043D\u043E \u0438\u043B\u0438\ + \ \u0437\u0430\u0440\u0430\u043D\u0435\u0435 \u0440\u0435\u0448\u0451\u043D\u043D\ + \u044B\u043C \u043E\u0431\u0440\u0430\u0437\u043E\u043C \u0432\u044B\u0431\u0438\ + \u0440\u0430\u0442\u044C \u043A \u043A\u0430\u043A\u043E\u0439 \u0444\u0440\u0430\ + \u043A\u0446\u0438\u0438 \u043E\u043D\u0438 \u043F\u0440\u0438\u043D\u0430\u0434\ + \u043B\u0435\u0436\u0430\u0442 - \u041D\u0422, \u0426\u041F\u0421\u0421, \u0413\ + \u041A\u041A \u0438\u043B\u0438 \u041D\u0435\u0437\u0430\u0432\u0438\u0441\u0438\ + \u043C\u044B\u0435. \u042D\u0442\u043E \u0432\u043B\u0438\u044F\u0435\u0442\ + \ \u043D\u0430 \u0444\u043B\u0430\u0433\u0438, \u0441\u043D\u0430\u0440\u044F\ + \u0436\u0435\u043D\u0438\u0435, \u0431\u0443\u043C\u0430\u0436\u043A\u0443 \u043D\ + \u0430 \u0441\u0442\u043E\u043B\u0435, \u0430 \u0442\u0430\u043A \u0436\u0435\ + \ \u041D\u0422 \u0438 \u0426\u041F\u0421\u0421 \u0442\u0438\u043F \u043F\u0435\ + \u0440\u0435\u0434\u0430\u0451\u0442 \u043D\u0430 \u0441\u044C\u0435\u0440\u0440\ + \u0443 \u043E \u0441\u0435\u0431\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\ + \u0446\u0438\u044E. \u041F\u043E\u043A\u0430 \u0447\u0442\u043E \u0432\u0441\ + \u0451" + - imageadd: "\u0417\u043D\u0430\u043A \"COLONY\" \u0434\u043B\u044F \u043A\u043E\ + \u043B\u043E\u043D\u0438\u0438" + - rscadd: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0432 \u043F\u0435\u0447\u0430\ + \u0442\u044C \u0420\u041D\u0414 \u043F\u043B\u0430\u0442\u044B \u0442\u0435\u043B\ + \u0435\u043F\u0430\u0434\u0430 \u0438 \u0442\u0435\u043B\u0435\u043F\u0440\u043E\ + \u0436\u0435\u043A\u0442\u043E\u0440\u0430. \u041E\u043D\u044B\u0435 \u0442\u0435\ + \u043F\u0435\u0440\u044C \u0440\u0430\u0437\u0431\u043E\u0440\u043D\u044B\u0435\ + , \u043A\u0430\u043A \u043D\u0430 \u0438\u043D\u0444\u0438\u043D\u0438\u0442\ + \u0438." + - maptweak: "\u0414\u0430\u043B \u0440\u043E\u0431\u043E\u0442\u043E\u0442\u0435\ + \u0445\u043D\u0438\u043A\u0430\u043C \u043A\u0440\u0430\u0441\u043A\u0443" + - maptweak: "\u041E\u0431\u0435 \u043A\u043E\u043B\u043E\u043D\u0438\u0438 \u0432\ + \u0437\u0430\u043C\u0435\u043D \u0441\u0442\u0430\u0440\u043E\u0433\u043E \u0441\ + \u043D\u0430\u0440\u044F\u0436\u0435\u043D\u0438\u044F \u043F\u043E\u043B\u0443\ + \u0447\u0438\u043B\u0438 1 \u0435\u0434\u0438\u043D\u0438\u0446\u0443 rifle,\ + \ 1 \u0435\u0434\u0438\u043D\u0438\u0446\u0443 \u041F\u041F, \u0438 \u043F\u043E\ + \ 2 \u0435\u0434\u0438\u043D\u0438\u0446\u044B \u0448\u043B\u0435\u043C\u043E\ + \u0432 \u0438 \u0431\u0440\u043E\u043D\u0438\u043A\u043E\u0432. \u041A\u0430\ + \u043A\u0438\u0435 \u0438\u043C\u0435\u043D\u043D\u043E \u0437\u0430\u0432\u0438\ + \u0441\u0438\u0442 \u043E\u0442 \u0442\u0438\u043F\u0430 \u043A\u043E\u043B\u043E\ + \u043D\u0438\u0438" + - maptweak: "\u0421\u0442\u0430\u0437\u0438\u0437 \u044F\u0449\u0438\u043A\u0438\ + \ \u0438 \u0430\u043D\u043E\u043C\u0430\u043B\u044C\u043D\u044B\u0435 \u044F\ + \u0449\u0438\u043A\u0438 \u043D\u0430 \u0441\u0443\u0434\u043D\u0435 \u0413\u041A\ + \u041A \u0442\u0435\u043F\u0435\u0440\u044C \u0431\u0435\u0437 \u0434\u043E\u0441\ + \u0442\u0443\u043F\u0430, \u0438 \u0438\u0445 \u043C\u043E\u0436\u043D\u043E\ + \ \u0441\u043F\u043E\u043A\u043E\u0439\u043D\u043E \u0438\u0441\u043F\u043E\u043B\ + \u044C\u0437\u043E\u0432\u0430\u0442\u044C." + - admin: "\u0412\u044B\u0434\u0430\u043B \u043A\u043D\u043E\u043F\u043A\u0443 \u0432\ + \u044B\u0431\u043E\u0440\u0430 \u0442\u0438\u043F\u0430 \u043A\u043E\u043B\u043E\ + \u043D\u0438\u0438 \u0434\u043B\u044F \u043F\u0435\u0434\u0430\u043B\u0435\u0439\ + ." + Teteshnik: + - bugfix: "\u0422\u0435\u043F\u0435\u0440\u044C \u043D\u0435 \u0431\u0443\u0434\u0443\ + \u0442 2 \u0441\u043A\u0430\u043B\u044C\u043F\u0435\u043B\u044F \u0432 \u0430\ + \u0432\u0442\u043E\u043B\u0430\u0442\u0435." + - tweak: "\u041F\u043E\u0434\u043F\u0440\u0430\u0432\u0438\u043B \u043A\u0440\u0430\ + \u0444\u0442 \u0441 \u0437\u0438\u043F\u0433\u0430\u043D\u043E\u043C" + - tweak: "\u0423 \u0441\u0438\u0433\u0430\u0440\u0435\u0442\u044B \u0438\u043C\u0435\ + \u0435\u0442\u0441\u044F \u0437\u0432\u0443\u043A \u0437\u0430\u0442\u044F\u0436\ + \u043A\u0438." + - soundadd: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0437\u0432\u0443\u043A\ + \ \u0437\u0430\u0442\u044F\u0436\u043A\u0438." + - balance: "\u0417\u0430\u043C\u0435\u043D\u0438\u043B \u0432 \u0442\u0430\u043A\ + \u0442\u0438\u0447\u0435\u0441\u043A\u043E\u043C \u043D\u0430\u0431\u043E\u0440\ + \u0435, \u0430 \u0438\u043C\u0435\u043D\u043D\u043E: \u0432\u043C\u0435\u0441\ + \u0442\u043E \u0442\u0430\u043A\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0445\ + \ \u043E\u0447\u043A\u043E\u0432 \u0442\u0435\u043F\u0435\u0440\u044C \u041F\ + \u041D\u0412 \u043D\u0430\u0448\u043B\u0435\u043C\u043D\u044B\u0439." +2024-06-15: + MGWhiskers: + - maptweak: "\u043A\u043E\u0441\u043C\u0435\u0442\u0438\u043A\u0430 \u0438 \u0438\ + \u0448\u0448\u0443\u0438" + Merlin1230: + - bugfix: The protolathe will now actually accept chemicals + - bugfix: The maintenance rooms are now actually shielded from radiation like the + rest of maintence + Mucker: + - tweak: Audible emotes with sounds can no longer be spammed. + Sbotkin: + - rscadd: Yellow hardhat (the default one) can now be picked in loadout. + - tweak: Default EER thresholds are raised to 1100 and 1300. + - maptweak: R-UST now gets low wall windows instead of full-sized. + - maptweak: R-UST airlock is now unbolted by default, on par with the SM one. + Spookerton: + - tweak: Foreign body removal surgery repeats removals until interrupted or there's + nothing left to remove. + - bugfix: Fusion fuel injectors no longer negatively impact rendering performance + over time. + cuddleandtea: + - rscadd: admins can change volume for local tracks +2024-06-18: + Teteshnik: + - bugfix: "\u041F\u043E\u0444\u0438\u043A\u0441\u0438\u043B \u0431\u0430\u0433 \u0441\ + \u0432\u044F\u0437\u0430\u043D\u043D\u044B\u0439 \u0441\u043E \u0441\u043F\u0440\ + \u0430\u0439\u0442\u043E\u043C \u043A\u0430\u0434\u0435\u0442\u0441\u043A\u043E\ + \u0433\u043E \u043F\u0438\u0441\u0442\u043E\u043B\u0435\u0442\u0430." + - rscadd: "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0430\u044E \u0442\u0435\u043B\ + \u0435\u0441\u0430\u043B\u043E \u043E\u0431\u0440\u0430\u0442\u043D\u043E \u0432\ + \ \u0438\u0433\u0440\u0443" + - spellcheck: "\u0418\u0441\u043F\u0440\u0430\u0432\u0438\u043B \u043E\u043F\u0435\ + \u0447\u0430\u0442\u043A\u0443 \u0441\u0432\u044F\u0437\u0430\u043D\u043D\u0443\ + \u044E \u0441 \u043D\u0430\u0437\u0432\u0430\u043D\u0438\u0435\u043C \u043F\u043B\ + \u0430\u0442\u044B." +2024-06-19: + Teteshnik: + - tweak: "\u0422\u0435\u043F\u0435\u0440\u044C \u043C\u044B \u0438\u043C\u0435\u0435\ + \u043C \u0440\u0430\u0437\u043D\u044B\u0435 GPS. \u041E\u0434\u0438\u043D GPS\ + \ \u0434\u043B\u044F \u0442\u0435\u043B\u0435\u0441\u0430\u0439\u043D\u0441\u0430\ + , \u0432\u0442\u043E\u0440\u043E\u0439 GPS \u0434\u043B\u044F \u043E\u0431\u044B\ + \u0447\u043D\u043E\u0433\u043E \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\ + \u0432\u0430\u043D\u0438\u044F." + - tweak: "\u0422\u0435\u043F\u0435\u0440\u044C \u0437\u0430\u0440\u044F\u0434\u043D\ + \u0438\u043A\u0438 \u043C\u043E\u0436\u043D\u043E \u0443\u043B\u0443\u0447\u0448\ + \u0430\u0442\u044C." +2024-06-22: + Karl Johansson: + - tweak: Riot helmets can attach visors. + - bugfix: Visors don't show on mob when in storage. + Lexanx: + - bugfix: "\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u044B\u0439\ + \ \u0432\u043E\u0437\u0440\u0430\u0441\u0442 \u0421\u043A\u0440\u0435\u043B\u043B\ + \u043E\u0432 \u0442\u0435\u043F\u0435\u0440\u044C 130" + Ryan180602: + - rscadd: Adds the Shikra to the sensor suite. + Spookerton: + - tweak: Fake moustaches fit in pockets and the visible name of wearers can be adjusted + with the Change Visible Name verb. + - tweak: Liquid Corruption returns to exoplanet datapod spawns at a much reduced + rate of about 1.67% + Teteshnik1: + - bugfix: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u043D\u0435\ + \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0443\u043B\ + \u0443\u0447\u0448\u0430\u0442\u044C \u0437\u0430\u0440\u044F\u0434\u043D\u0438\ + \u043A\u0438" + - tweak: "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u0430 \u0432\u043E\ + \u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0441\u043E\u0437\u0434\ + \u0430\u0432\u0430\u0442\u044C \u0438\u0441\u043A\u0443\u0441\u0441\u0442\u0432\ + \u0435\u043D\u043D\u044B\u0435 \u0411\u0421-\u043A\u0440\u0438\u0441\u0442\u0430\ + \u043B\u043B\u044B" + sdtwbaj: + - tweak: Using a stethoscope on a body part with arterial bleeding reports "rushing + liquid". +2024-06-23: + FeudeyTF: + - bugfix: "\u041F\u043E\u0444\u0438\u043A\u0441\u0438\u043B \u0431\u0430\u0433 \u0441\ + \ \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435\u043C \u0438\u043D\ + \u0442\u0435\u0440\u0444\u0435\u0439\u0441\u043E\u0432 \u043D\u0435\u043A\u043E\ + \u0442\u043E\u0440\u044B\u0445 \u043A\u043E\u043D\u0441\u043E\u043B\u0435\u0439\ + \ \u0442\u0435\u043B\u0435\u043A\u043E\u043C\u043C\u043E\u0432" + - rscadd: "\u0412\u0435\u0440\u043D\u0443\u043B \u0432 \u0438\u0433\u0440\u0443\ + \ \u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E\u0441\u0442\u044C \u0443\u043F\ + \u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u043F\u043E\u0442\u043E\u043A\ + \u043E\u043C \u0441\u043E\u043E\u0431\u0449\u0435\u043D\u0438\u0439, \u043F\u0435\ + \u0440\u0435\u0434\u0430\u044E\u0449\u0438\u0445\u0441\u044F \u043F\u043E \u0440\ + \u0430\u0446\u0438\u0438" + - maptweak: "\u041F\u0435\u0440\u0435\u0441\u0442\u0430\u0432\u0438\u043B \u043A\ + \u043E\u043D\u0441\u043E\u043B\u0438 \u0442\u0435\u043B\u0435\u043A\u043E\u043C\ + \u043C\u043E\u0432, \u0447\u0442\u043E\u0431\u044B \u0431\u044B\u043B\u043E\ + \ \u0443\u0434\u043E\u0431\u043D\u0435\u0435" + Shegar: + - bugfix: "\u0412\u043B\u0438\u044F\u043D\u0438\u0435 \u043D\u0430 \u0437\u0440\u0435\ + \u043D\u0438\u0435 \u043F\u0438\u043B\u043E\u0442\u0430 \u0432\u043E\u0441\u0441\ + \u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E, \u0441\u0435\u043D\u0441\ + \u043E\u0440\u044B \u0438 \u043F\u0440\u043E\u0447\u0435\u0435 \u043D\u0435\ + \ \u0440\u0430\u0431\u043E\u0442\u0430\u043B\u0438, \u043C\u0435\u0445 \u043D\ + \u0435 \u043C\u043E\u0433 \u043E\u0441\u043B\u0435\u043F\u043D\u0443\u0442\u044C" + - bugfix: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u0441\u043F\u0440\ + \u0430\u0439\u0442 \u043E\u0433\u043D\u0435\u043C\u0451\u0442\u0430" + - bugfix: "\u041C\u0435\u0445 \u043F\u0440\u043E\u043C\u0430\u0445\u043D\u0435\u0442\ + \u0441\u044F \u0430\u0442\u0430\u043A\u043E\u0439, \u0435\u0441\u043B\u0438\ + \ \u0446\u0435\u043B\u044C \u043E\u0442\u043E\u0439\u0434\u0451\u0442 \u043E\ + \u0442 \u043C\u0435\u0445\u0430 \u0432 \u0437\u0430\u043C\u0430\u0445\u0435" + - bugfix: "\u0424\u043E\u043D\u0430\u0440\u044C \u0431\u043E\u043B\u044C\u0448\u0435\ + \ \u043D\u0435 \u043F\u0435\u0440\u0435\u043A\u0440\u044B\u0432\u0430\u0435\u0442\ + \ \u0433\u043E\u043B\u043E\u0432\u0443 \u043C\u0435\u0445\u0430" + - bugfix: "\u041E\u0442\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435 \u0441\ + \u043F\u0440\u0430\u0439\u0442\u043E\u0432 \u0442\u0435\u043F\u0435\u0440\u044C\ + \ \u043D\u0435 \u043B\u043E\u043C\u0430\u0435\u0442\u0441\u044F \u043F\u0440\ + \u0438 \u043F\u043E\u0432\u043E\u0440\u043E\u0442\u0435 \u0441 \u044E\u0433\u0430\ + \ \u043D\u0430 \u0441\u0435\u0432\u0435\u0440." + - bugfix: "\u0421\u041C\u0413 \u043C\u0435\u0445\u0430 \u043D\u0435 \u0440\u0430\ + \u043D\u0442\u0430\u0439\u043C\u0438\u0442 \u043F\u043E\u0441\u043B\u0435 \u0441\ + \u0442\u0440\u0435\u043B\u044C\u0431\u044B." + - bugfix: "\u0422\u0435\u043F\u0435\u0440\u044C \u043F\u0438\u043B\u043E\u0442\u0430\ + \ \u043F\u043E\u043B\u043D\u043E\u0441\u0442\u044C\u044E \u0440\u0438\u0441\u0443\ + \u0435\u0442 \u043F\u043E \u0434\u0438\u043E\u0433\u043E\u043D\u0430\u043B\u0438" + - bugfix: "\u041F\u0443\u043B\u044C\u0441\u0430\u0447 \u043C\u0435\u0445\u0430 \u0442\ + \u0435\u043F\u0435\u0440\u044C \u0431\u044C\u0451\u0442 \u0440\u043E\u0432\u043D\ + \u043E \u0438 \u043F\u043E 1 \u0432\u044B\u0441\u0442\u0440\u0435\u043B\u0443\ + ." + - bugfix: "\u0423\u0441\u0442\u0440\u0430\u043D\u0451\u043D \u0440\u0430\u043D\u0442\ + \u0430\u0439\u043C \u0432\u043E\u0437\u043D\u0438\u043A\u0430\u044E\u0449\u0438\ + \u0439 \u043F\u0440\u0438 \u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\ + \u0438\u0438 \u0434\u043E\u0441\u0442\u0443\u043F\u0430 \u0441 ID \u043A\u0430\ + \u0440\u0442." + - bugfix: "\u0423\u0441\u0442\u0440\u0430\u043D\u0435\u043D\u044B \u0440\u0430\u043D\ + \u0442\u0430\u0439\u043C\u044B \u0432\u043E\u0437\u043D\u0438\u043A\u0430\u044E\ + \u0449\u0438\u0435 \u043F\u0440\u0438 \u043D\u0430\u0434\u0435\u0432\u0430\u043D\ + \u0438\u0438 \u041D\u0415 \u043E\u0434\u0435\u0436\u0434\u0443 \u043D\u0430\ + \ \u0433\u043E\u043B\u043E\u0432\u0443+" + - bugfix: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0434\u043E\u043F\ + \u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u043F\u0440\ + \u0435\u043F\u044F\u0442\u0441\u0442\u0432\u0438\u044F \u0442\u043E\u043C\u0443\ + \ \u0447\u0442\u043E\u0431 \u043C\u0435\u0445 \u0441\u0445\u043E\u0434\u0443\ + \ \u043B\u043E\u0436\u0438\u043B \u0447\u0435\u043B\u043E\u0432\u0435\u043A\u0430\ + \ \u043D\u0430 \u043F\u043E\u043B. \u041C\u0435\u0445 \u0442\u0435\u043F\u0435\ + \u0440\u044C \u0432\u0441\u0435\u0433\u0434\u0430 \u0434\u043E\u043B\u0436\u0435\ + \u043D \u0438\u0441\u043A\u043B\u044E\u0447\u0438\u0442\u0435\u043B\u044C\u043D\ + \u043E \u0442\u043E\u043B\u043A\u0430\u0442\u044C \u0441\u0442\u043E\u044F\u0447\ + \u0438\u0445 \u043B\u044E\u0434\u0435\u0439." + - soundadd: "\u0417\u0432\u0443\u043A \u043F\u0440\u0438\u043D\u044F\u0442\u0438\ + \u044F ID, \u043C\u0438\u043D\u0438\u0433\u0430\u043D." + - rscadd: "\u0420\u0435\u0430\u043B\u0438\u0437\u043E\u0432\u0430\u043D\u0430 \u0441\ + \u0438\u0441\u0442\u0435\u043C\u0430 \u0432\u0437\u0430\u0438\u043C\u043E\u0434\ + \u0435\u0439\u0441\u0442\u0432\u0438\u044F \u043C\u0435\u0445\u0430 \u0441 ID\ + \ \u043A\u0430\u0440\u0442\u0430\u043C\u0438. \u041F\u043E\u044F\u0432\u0438\ + \u043B\u0430\u0441\u044C \u043D\u043E\u0432\u0430\u044F \u043A\u043D\u043E\u043F\ + \u043A\u0430 \u0432 menu \u043C\u0435\u0445\u0430. \u0415\u0441\u043B\u0438\ + \ \u043D\u0430\u0436\u0430\u0442\u044C \u043F\u043E \u043D\u0435\u0439 ID \u043A\ + \u0430\u0440\u0442\u043E\u0439, \u0432\u044B \u0441\u043C\u043E\u0436\u0435\u0442\ + \u0435 \u0438\u043B\u0438 \u043E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u0438\ + \u043C\u0435\u044E\u0449\u0438\u0439\u0441\u044F \u0434\u043E\u0441\u0442\u0443\ + \u043F, \u0438\u043B\u0438 \u0437\u0430\u043F\u0438\u0441\u0430\u0442\u044C\ + \ \u043D\u043E\u0432\u044B\u0439, \u0432\u044B\u0431\u0440\u0430\u0432 \u0438\ + \u0437 \u0432\u044B\u043F\u0430\u0434\u0430\u044E\u0449\u0435\u0433\u043E \u043B\ + \u0438\u0441\u0442\u0430. \u041F\u043E\u0441\u043B\u0435 \u044D\u0442\u043E\u0433\ + \u043E, \u0434\u043E\u0441\u0442\u0443\u043F \u0437\u0430\u043F\u0438\u0441\u044B\ + \u0432\u0430\u0435\u0442\u0441\u044F \u0432 \u043F\u0430\u043C\u044F\u0442\u044C\ + \ \u043C\u0435\u0445\u0430. \u0415\u0441\u043B\u0438 \u0442\u043A\u043D\u0443\ + \u0442\u044C \u043F\u043E \u0430\u043A\u0442\u0438\u0432\u043D\u043E\u043C\u0443\ + \ \u043C\u0435\u0445\u0443 \u043A\u0430\u0440\u0442\u043E\u0439 \u0438 \u043A\ + \u0430\u0440\u0442\u043E\u0447\u043A\u0430 \u043F\u0440\u043E\u0439\u0434\u0451\ + \u0442 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0443 \u0434\u043E\u0441\u0442\ + \u0443\u043F\u0430, \u043C\u0435\u0445 \u0438\u0437\u043C\u0435\u043D\u0438\u0442\ + \ \u0441\u0432\u043E\u0451 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u0435\ + \ - \u043B\u0438\u0431\u043E \u043E\u0442\u043A\u0440\u043E\u0435\u0442\u0441\ + \u044F \u0435\u0441\u043B\u0438 \u043E\u043D \u0437\u0430\u043A\u0440\u044B\u0442\ + , \u043B\u0438\u0431\u043E \u0437\u0430\u043A\u0440\u043E\u0435\u0442\u0441\u044F\ + , \u0435\u0441\u043B\u0438 \u043E\u043D \u043E\u0442\u043A\u0440\u044B\u0442\ + . \u041A \u044D\u0442\u043E\u043C\u0443, \u043F\u043E\u044F\u0432\u0438\u043B\ + \u0438\u0441\u044C 3 \u043C\u0435\u0442\u043E\u0434\u0430 \u0432\u0437\u043B\ + \u043E\u043C\u0430 - \u0435\u043C\u0430\u0433 \u0418\u041B\u0418 \u043C\u0443\ + \u043B\u044C\u0442\u0438\u0442\u0443\u043B + 4 \u0443\u0440\u043E\u0432\u0435\ + \u043D\u044C \u0434\u0435\u0432\u0430\u0439\u0441\u043E\u0432 (\u043C\u0430\u0441\ + \u0442\u0435\u0440 \u044D\u0442\u043E \u043F\u044F\u0442\u044B\u0439) \u0418\ + \u041B\u0418 \u043C\u0443\u043B\u044C\u0442\u0438\u043C\u0435\u0442\u0440 +\ + \ 3 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u0434\u0435\u0432\u0430\u0439\ + \u0441\u043E\u0432 + 3 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u044D\u043B\ + \u0435\u043A\u0442\u0440\u0438\u043A\u0438." + - rscadd: "\u0421\u0438\u043B\u044C\u043D\u043E \u0443\u0441\u043B\u043E\u0436\u043D\ + \u0435\u043D\u043E \u043E\u0431\u0441\u043B\u0443\u0436\u0438\u0432\u0430\u043D\ + \u0438\u0435 \u043C\u0435\u0445\u043E\u0432. \u0415\u0441\u043B\u0438 \u0443\ + \u0440\u043E\u043D \u0432 \u043A\u043E\u043D\u0435\u0447\u043D\u043E\u0441\u0442\ + \u0438 \u0432\u044B\u0448\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0451\ + \u043D\u043D\u043E\u0433\u043E \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F\ + , \u043E\u0434\u043D\u043E\u0439 \u0441\u0432\u0430\u0440\u043A\u043E\u0439\ + \ \u043D\u0435 \u043E\u0431\u043E\u0439\u0442\u0438\u0441\u044C. \u0412\u0430\ + \u043C \u043F\u043E\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u043B\ + \u0438\u0441\u0442 \u043C\u0430\u0442\u0435\u0440\u0438\u0430\u043B\u0430, \u043A\ + \u0430\u043A\u043E\u0439 \u0438\u043C\u0435\u043D\u043D\u043E - \u0437\u0430\ + \u0432\u0438\u0441\u0438\u0442 \u043E\u0442 \u0441\u0430\u043C\u043E\u0439 \u0447\ + \u0430\u0441\u0442\u0438, \u0430 \u0442\u0430\u043A \u0436\u0435 \u041A\u0420\ + \u0410\u0419\u041D\u0415 \u0416\u0415\u041B\u0410\u0422\u0415\u041B\u0415\u041D\ + \ 2 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u0434\u0435\u0432\u0430\u0439\ + \u0441\u043E\u0432 \u0438 1 \u0443\u0440\u043E\u0432\u0435\u043D\u044C \u043A\ + \u043E\u043D\u0441\u0442\u0440\u0443\u043A\u0442\u043E\u0440\u0441\u0442\u0432\ + \u0430, \u0438\u043D\u0430\u0447\u0435 \u0441 \u043E\u0433\u0440\u043E\u043C\ + \u043D\u044B\u043C \u0448\u0430\u043D\u0441\u043E\u043C, \u043C\u0430\u0442\u0435\ + \u0440\u0438\u0430\u043B \u0432\u044B \u0441\u043B\u0438\u0432\u0430\u0435\u0442\ + \u0435. \u041F\u043E\u0441\u043B\u0435 \u0440\u0435\u043C\u043E\u043D\u0442\u0430\ + , \u043C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435 \u0425\ + \u041F \u043A\u043E\u043D\u0435\u0447\u043D\u043E\u0441\u0442\u0438 \u0443\u043C\ + \u0435\u043D\u044C\u0448\u0430\u0435\u0442\u0441\u044F \u041D\u0410\u0412\u0421\ + \u0415\u0413\u0414\u0410 \u0438 \u0435\u0434\u0438\u043D\u0441\u0442\u0432\u0435\ + \u043D\u043D\u044B\u0439 \u043C\u0435\u0442\u043E\u0434 \u044D\u0442\u043E \u0438\ + \u0441\u043F\u0440\u0430\u0432\u0438\u0442\u044C - \u043D\u0430\u043F\u0435\u0447\ + \u0430\u0442\u0430\u0442\u044C \u043D\u043E\u0432\u0443\u044E \u0447\u0430\u0441\ + \u0442\u044C." + - rscadd: "\u0421\u0434\u0435\u043B\u0430\u043D\u044B \u0437\u0430\u0433\u043E\u0442\ + \u043E\u0432\u043A\u0438 \u043C\u0435\u0445\u043E\u0432 \u0434\u0435\u0434\u043E\ + \u0432, \u0413\u0438\u0433\u0430\u043A\u0441, \u0414\u044E\u0440\u0430\u043D\ + \u0434, \u0424\u0430\u0437\u043E\u043D \u0438 \u0440\u0430\u0437\u043C\u0435\ + \u0449\u0435\u043D\u044B \u043D\u0430 \u0431\u0430\u0437\u0435 \u0434\u0435\u0434\ + \u043E\u0432." + - balance: "\u0420\u0435\u0437\u0430\u043A \u0431\u0430\u0444\u0444\u043D\u0443\u0442\ + , 10 \u0432\u044B\u0441\u0442\u0440\u0435\u043B\u043E\u0432 \u0432\u043C\u0435\ + \u0441\u0442\u043E 4" + - balance: "\u042D\u041A \u043C\u0435\u0445 \u043F\u043E\u043B\u0443\u0447\u0438\ + \u043B \u043E\u0441\u043C\u0438\u0443\u043C \u043D\u0430 \u043E\u0431\u0448\u0438\ + \u0432\u043A\u0443 \u0434\u0430\u0431\u044B \u043D\u0435 \u0433\u043E\u0440\u0435\ + \u0442\u044C \u0432 \u0433\u0438\u0435\u043D\u0435 \u043E\u0433\u043D\u0435\u043D\ + \u043D\u043E\u0439" + - balance: "\u041C\u0435\u0445 \u0431\u043E\u043B\u044C\u0448\u0435 \u043D\u0435\ + \ \u0442\u0430\u0440\u0430\u043D\u0438\u0442 \u043C\u0435\u0445\u0430 \u0438\ + \ \u043F\u043E\u0434\u043E\u0431\u043D\u044B\u0445 \u0441\u0435\u0431\u0435\ + \ \u043F\u043E \u0440\u043E\u0441\u0442\u0443 \u0441\u0443\u0449\u0435\u0441\ + \u0442\u0432 (\u041A \u043F\u0440\u0438\u043C\u0435\u0440\u0443 \u0413\u0411\ + \u0421\u0430)" +2024-06-24: + Teteshnik: + - bugfix: "\u041F\u043E\u0444\u0438\u043A\u0441\u0438\u043B \u0434\u0430\u043C\u0430\ + \u0433 \u043F\u0430\u043B\u043A\u0438 \u0441\u0442\u0430\u043B\u044C\u043D\u043E\ + \u0439" + - tweak: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0440\u0435\u0441\u0443\u0440\ + \u0441\u044B \u0434\u043B\u044F \u043A\u0440\u0430\u0444\u0442\u0430 \u0410\u0411\ + \u0421" + - imageadd: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u043D\u043E\u0440\u043C\ + \u0430\u043B\u044C\u043D\u044B\u0435 \u0441\u043F\u0440\u0430\u0439\u0442\u044B\ + \ \u0434\u043B\u044F \u0441\u043D\u0430\u0440\u044F\u0434\u043E\u0432 \u041E\ + \u0424\u0414." + - imagedel: "\u0423\u0434\u0430\u043B\u0438\u043B \u0441\u0442\u0430\u0440\u044B\ + \u0435 \u0441\u043F\u0440\u0430\u0439\u0442\u044B \u0441\u043D\u0430\u0440\u044F\ + \u0434\u043E\u0432 \u041E\u0424\u0414" + - imageadd: "\u041F\u043E\u043C\u0435\u043D\u044F\u043B \u0441\u043F\u0440\u0430\ + \u0439\u0442\u044B \u0448\u043B\u0435\u043C\u0430 \u041E\u0411\u0420" + Unchi: + - bugfix: "QoL - \u0418\u0441\u043F\u0440\u0430\u0432\u0438\u043B \u043E\u0434\u0438\ + \u043D\u0430\u043A\u043E\u0432\u044B\u0435 \u043D\u0430\u0438\u043C\u0435\u043D\ + \u043E\u0432\u0430\u043D\u0438\u044F \u043A\u043E\u0441\u0442\u044E\u043C\u043E\ + \u0432 \u0438 \u0433\u043E\u043B\u043E\u0432\u043D\u044B\u0445 \u0443\u0431\u043E\ + \u0440\u043E\u0432 \u043E\u0445\u0440\u0430\u043D\u044B(\u0434\u043B\u044F \u043E\ + \u0444\u0438\u0446\u0435\u0440\u043E\u0432, \u0432\u0430\u0440\u0434\u0435\u043D\ + \u0430 \u0438 \u0413\u0421\u0411)." + - rscadd: "QoL - \u0414\u043E\u0431\u0430\u0432\u0438\u043B \u043E\u0442\u0434\u0435\ + \u043B\u044C\u043D\u044B\u0435 \u043F\u0443\u043D\u043A\u0442\u044B \u0441 \u0432\ + \u044B\u0431\u043E\u0440\u043E\u043C \u0433\u043E\u043B\u043E\u0432\u043D\u044B\ + \u0445 \u0443\u0431\u043E\u0440\u043E\u0432 \u043E\u0445\u0440\u0430\u043D\u044B\ + (security beret/softcap selection) \u0432 \u043B\u043E\u0434\u0430\u0443\u0442\ + \u0435. \u0418\u0437-\u0437\u0430 \u044D\u0442\u043E\u0433\u043E, \u0442\u0435\ + \u043F\u0435\u0440\u044C \u0431\u0435\u0440\u0435\u0442\u044B \u0427\u0412\u041A\ + \ \u043F\u043E\u0434 \u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u043A\u043E\ + \u0439 \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u0430\u043A\u0442\u043D\u0438\ + \u043A\u043E\u0432. \u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0432\u0441\u0435\ + \ \u043A\u043E\u0441\u0442\u044E\u043C\u044B \u043E\u0445\u0440\u0430\u043D\u044B\ + \ \u041D\u0422 \u0432 \u043F\u0443\u043D\u043A\u0442 security uniform." + - rscadd: "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u044B \u0443\u043D\ + \u0438\u0444\u043E\u0440\u043C\u044B \u043A\u0430\u0434\u0435\u0442\u043E\u0432\ + ." + "\u0412\u0430\u0448\u041D\u0438\u043A\u043D\u0435\u0439\u043C": + - bugfix: "\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\ + \u044B\u0439 \u043A\u043E\u043D\u0442\u0435\u043D\u0442, \u0434\u043E\u0431\u0430\ + \u0432\u0438\u0442\u044C \u043A\u043E\u0442\u043E\u0440\u044B\u0439 \u0432 \u043F\ + \u0430\u0442\u0447 1.1 \u044F \u0437\u0430\u0431\u044B\u043B." + - bugfix: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0434\u043E\u043F\ + \ \u043F\u0440\u0435\u043F\u044F\u0442\u0441\u0442\u0432\u0438\u044F \u0442\u043E\ + \u043C\u0443 \u0447\u0442\u043E\u0431 \u043C\u0435\u0445 \u0441\u0445\u043E\u0434\ + \u0443 \u0442\u043E\u043F\u0442\u0430\u043B \u043B\u044E\u0434\u0435\u0439." +2024-06-25: + GoldKingNoPing3: + - tweak: "\u0414\u043E\u0431\u0430\u0432\u0438\u043B \u0434\u043E\u0441\u0442\u0443\ + \u043F \u043D\u0430 \u043C\u043E\u0441\u0442\u0438\u043A \u041A\u0432\u0430\u0440\ + \u0442\u0438\u0440\u043C\u0435\u0439\u0441\u0442\u0435\u0440\u0443" + Neonvolt: + - bugfix: "\u041F\u043E\u0444\u0438\u043A\u0448\u0435\u043D \u0430\u0440\u0445\u0435\ + \u043E\u043B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0439 \u0448\u043A\ + \u0430\u0444 \u0432 \u043A\u043E\u043C\u043D\u0430\u0442\u0435 \u043F\u043E\u0434\ + \u0433\u043E\u0442\u043E\u0432\u043A\u0438 \u0443 \u0448\u0430\u0445\u0442\u0435\ + \u0440\u043E\u0432" + - maptweak: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0434\u043E\ + \u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u044D\ + \u043A\u0440\u0430\u043D\u044B newscaster \u0438 \u043F\u043E\u0436\u0430\u0440\ + \u043D\u044B\u0435 \u0442\u0440\u0435\u0432\u043E\u0433\u0438" + - maptweak: "\u0428\u0430\u0442\u0442\u043B\u044B \u043C\u0435\u0440\u043A\u043E\ + \u0432, \u0445\u0435\u0439\u0441\u0442\u0435\u0440\u043E\u0432 \u0438 \u0432\ + \u043E\u043A\u0441\u043E\u0432-\u0440\u0435\u0439\u0434\u0435\u0440\u043E\u0432\ + \ \u0442\u0435\u043F\u0435\u0440\u044C \u043F\u0440\u0430\u0432\u0438\u043B\u044C\ + \u043D\u043E \u0441\u0442\u044B\u043A\u0443\u044E\u0442\u0441\u044F \u043A \u0421\ + \u044C\u0435\u0440\u0440\u0435" + - maptweak: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E \u0442\u0440\ + \u0435\u0431\u043E\u0432\u0430\u043D\u0438\u0435 \u043F\u043E \u0434\u043E\u0441\ + \u0442\u0443\u043F\u0443 \u0432 \u0434\u043E\u0440\u043C\u044B \u043A\u0430\u0440\ + \u0433\u043E/\u0441\u0435\u0440\u0432\u0438\u0441\u0430" + "\u0412\u0430\u0448\u041D\u0438\u043A\u043D\u0435\u0439\u043C": + - maptweak: "\u0422\u0435\u043F\u0435\u0440\u044C \u041E\u0417\u0410 \u043D\u0435\ + \ \u0431\u0443\u0434\u0435\u0442 \u0432\u0438\u0434\u0435\u0442\u044C \u0442\ + \u0430\u0431\u043B\u0438\u0447\u043A\u0443 \"\u043D\u044E\u043A\u0430\" \u043D\ + \u0430 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435." diff --git a/html/changelogs/AutoChangeLog-sierra-pr-2314.yml b/html/changelogs/AutoChangeLog-sierra-pr-2314.yml deleted file mode 100644 index 3d8bd567904a3..0000000000000 --- a/html/changelogs/AutoChangeLog-sierra-pr-2314.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: Teteshnik -changes: - - {tweak: Вернул жабам стать СМО} -delete-after: true diff --git a/html/changelogs/AutoChangeLog-sierra-pr-2401.yml b/html/changelogs/AutoChangeLog-sierra-pr-2401.yml new file mode 100644 index 0000000000000..00431ff994e10 --- /dev/null +++ b/html/changelogs/AutoChangeLog-sierra-pr-2401.yml @@ -0,0 +1,4 @@ +author: BOT Eeshee +changes: + - {rscadd: Добавила патч КСА для таяра} +delete-after: true diff --git a/icons/mob/onmob/onmob_head_ERT.dmi b/icons/mob/onmob/onmob_head_ERT.dmi new file mode 100644 index 0000000000000..473ed6fc99c6a Binary files /dev/null and b/icons/mob/onmob/onmob_head_ERT.dmi differ diff --git a/icons/obj/obj_head_ERT.dmi b/icons/obj/obj_head_ERT.dmi new file mode 100644 index 0000000000000..d57b90afbcebe Binary files /dev/null and b/icons/obj/obj_head_ERT.dmi differ diff --git a/icons/obj/telescience.dmi b/icons/obj/telescience.dmi index 675e8412de2d2..0a95347b6b4d9 100644 Binary files a/icons/obj/telescience.dmi and b/icons/obj/telescience.dmi differ diff --git a/interface/skin.dmf b/interface/skin.dmf index 097fc89c6cab4..be1b883dab3ba 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -631,3 +631,97 @@ window "infowindow" tab-background-color = none on-show = ".winset\"rpane.infob.is-visible=true;rpane.textb.is-visible=true rpane.infob.is-checked=true rpane.rpanewindow.pos=0,30 rpane.rpanewindow.size=0x0 rpane.rpanewindow.left=infowindow\"" on-hide = ".winset\"rpane.infob.is-visible=false;rpane.textb.is-visible=true rpane.rpanewindow.pos=0,30 rpane.rpanewindow.size=0x0 rpane.rpanewindow.left=;\"" + +window "TelecommsIDE" + elem "TelecommsIDE" + type = MAIN + pos = 281,0 + size = 569x582 + anchor1 = none + anchor2 = none + background-color = #171717 + is-visible = false + saved-params = "pos;size;is-minimized;is-maximized" + title = "TCS IDE" + statusbar = false + on-close = "exittcs" + elem "button5" + type = BUTTON + pos = 209,464 + size = 70x20 + anchor1 = 37,80 + anchor2 = 49,83 + text-color = #a4bad6 + background-color = #171717 + saved-params = "is-checked" + text = "Purge Memory" + command = "tcsclearmem" + elem "button4" + type = BUTTON + pos = 157,464 + size = 52x20 + anchor1 = 28,80 + anchor2 = 37,83 + text-color = #a4bad6 + background-color = #171717 + saved-params = "is-checked" + text = "Revert" + command = "tcsrevert" + elem "button3" + type = BUTTON + pos = 105,464 + size = 52x20 + anchor1 = 18,80 + anchor2 = 28,83 + text-color = #a4bad6 + background-color = #171717 + saved-params = "is-checked" + text = "Execute" + command = "tcsrun" + elem "button2" + type = BUTTON + pos = 53,464 + size = 52x20 + anchor1 = 9,80 + anchor2 = 18,83 + text-color = #a4bad6 + background-color = #171717 + saved-params = "is-checked" + text = "Compile" + command = "tcscompile" + elem "button1" + type = BUTTON + pos = 0,464 + size = 53x20 + anchor1 = 0,80 + anchor2 = 9,83 + text-color = #a4bad6 + background-color = #171717 + saved-params = "is-checked" + text = "Apply" + command = "tcssave" + elem "tcserror" + type = OUTPUT + pos = 0,484 + size = 568x100 + anchor1 = 0,84 + anchor2 = 99,100 + font-family = "sans-serif" + font-size = 9 + text-color = #a4bad6 + background-color = #202020 + saved-params = "max-lines" + elem "tcscode" + type = INPUT + pos = 0,0 + size = 569x464 + anchor1 = 0,0 + anchor2 = 100,80 + font-family = "Courier" + font-size = 10 + text-color = #a4bad6 + background-color = #202020 + saved-params = "" + command = "cancel" + multi-line = true + no-command = true diff --git a/maps/_maps.dm b/maps/_maps.dm index 8935d0bad7dd7..a916811e89251 100644 --- a/maps/_maps.dm +++ b/maps/_maps.dm @@ -27,7 +27,7 @@ GLOBAL_DATUM_INIT(using_map, /datum/map, new using_map_DATUM) #include "random_ruins\exoplanet_ruins\excavation_site\excavation_site.dm" #include "random_ruins\exoplanet_ruins\transshipment\transshipment.dm" #include "random_ruins\exoplanet_ruins\crashed_pod\crashed_pod.dm" -#include "random_ruins\exoplanet_ruins\datacapsule\datacapsule.dm" +#include "random_ruins\exoplanet_ruins\ejected_datapod\ejected_datapod.dm" #include "random_ruins\exoplanet_ruins\deserted_lab\deserted_lab.dm" #include "random_ruins\exoplanet_ruins\drill_site\drill_site.dm" #include "random_ruins\exoplanet_ruins\droppod\droppod.dm" diff --git a/maps/away/mininghome/mininghome.dmm b/maps/away/mininghome/mininghome.dmm index 6a3fcced09038..6b4dab5ab3c6a 100644 --- a/maps/away/mininghome/mininghome.dmm +++ b/maps/away/mininghome/mininghome.dmm @@ -4040,12 +4040,12 @@ /obj/floor_decal/corner/brown{ dir = 8 }, -// [SIERRA-REMOVE] - MECHS_BY_SHEGAR +// [SIERRA-REMOVE] - Mechs_by_shegar /* /obj/item/device/kit/paint/flames_blue, */ // [/SIERRA-REMOVE] -// [SIERRA-ADD] - MECHS_BY_SHEGAR +// [SIERRA-ADD] - Mechs_by_shegar /obj/item/device/kit/mech, // [/SIERRA-ADD] /turf/simulated/floor/steel_dirty, diff --git a/maps/away/miningstation/miningstation.dmm b/maps/away/miningstation/miningstation.dmm index f505da11eb0c0..ed5e5ac8051ed 100644 --- a/maps/away/miningstation/miningstation.dmm +++ b/maps/away/miningstation/miningstation.dmm @@ -6932,7 +6932,7 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/miningstation/dormhall) "pS" = ( -/obj/landmark/corpse/zombiescience, +/obj/landmark/corpse/anomalist, /obj/gibspawner/human, /turf/simulated/floor/tiled/techfloor, /area/miningstation/vault) diff --git a/maps/event/placeholders/placeholders.dm b/maps/event/placeholders/placeholders.dm index 142fe1efb262b..5ce237707c018 100644 --- a/maps/event/placeholders/placeholders.dm +++ b/maps/event/placeholders/placeholders.dm @@ -282,6 +282,13 @@ Middle-Click / Ctrl-Click - Jump a placeholder to a point and deselect it speed = 0.2 +/obj/overmap/visitable/placeholder/scg_shikra + name = "Shikra-Model Recon Fighter" + desc = "A strike craft made to fill in the gap between the Kestrel, and the Eagle-II. It has since been shifted into a recon role, with its mini-AWACS suite and EM stealth capabilities, sacrificing some of its payload." + icon = 'scg-32.dmi' + icon_state = "sf-shikra" + speed = 0.1 + /obj/overmap/visitable/placeholder/scg_hermes name = "Hermes-Model Utility Pod" desc = "A tiny workhorse found across human space, able to carry a pilot and some cargo a short distance." diff --git a/maps/event/placeholders/scg-32.dmi b/maps/event/placeholders/scg-32.dmi index 7fbb02f7cb275..f6e620e10ae1d 100644 Binary files a/maps/event/placeholders/scg-32.dmi and b/maps/event/placeholders/scg-32.dmi differ diff --git a/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dm b/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dm index a2b9b94e852d1..8e300162da246 100644 --- a/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dm +++ b/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dm @@ -42,8 +42,13 @@ /obj/item/reagent_containers/glass/beaker/vial/random_podchem/Initialize() . = ..() desc += "Label is smudged, and there's crusted blood fingerprints on it." - var/reagent_type = pick(/datum/reagent/random, /datum/reagent/rezadone, /datum/reagent/drugs/three_eye) - reagents.add_reagent(pick(reagent_type), 5) + var/reagent_type = pickweight(list( + /datum/reagent/random = 50, + /datum/reagent/rezadone = 25, + /datum/reagent/drugs/three_eye = 20, + /datum/reagent/zombie/science = 5 + )) + reagents.add_reagent(reagent_type, 5) /obj/structure/backup_server name = "backup server" diff --git a/maps/random_ruins/exoplanet_ruins/datacapsule/contents_1.dmm b/maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_1.dmm similarity index 86% rename from maps/random_ruins/exoplanet_ruins/datacapsule/contents_1.dmm rename to maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_1.dmm index f2fc6240dd170..60c507b64ab37 100644 --- a/maps/random_ruins/exoplanet_ruins/datacapsule/contents_1.dmm +++ b/maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_1.dmm @@ -1,8 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/table/steel, -/obj/item/reagent_containers/glass/beaker/vial/random_podchem, -/obj/item/reagent_containers/glass/beaker/vial/random_podchem, +/obj/item/reagent_containers/glass/beaker/vial/ejected_datapod, +/obj/item/reagent_containers/glass/beaker/vial/ejected_datapod, /obj/structure/window/basic/full, /turf/template_noop, /area/template_noop) diff --git a/maps/random_ruins/exoplanet_ruins/datacapsule/contents_2.dmm b/maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_2.dmm similarity index 100% rename from maps/random_ruins/exoplanet_ruins/datacapsule/contents_2.dmm rename to maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_2.dmm diff --git a/maps/random_ruins/exoplanet_ruins/datacapsule/contents_3.dmm b/maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_3.dmm similarity index 96% rename from maps/random_ruins/exoplanet_ruins/datacapsule/contents_3.dmm rename to maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_3.dmm index 8b33a1f3a629d..ea666db65f4df 100644 --- a/maps/random_ruins/exoplanet_ruins/datacapsule/contents_3.dmm +++ b/maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_3.dmm @@ -34,7 +34,7 @@ /turf/template_noop, /area/template_noop) "i" = ( -/obj/landmark/corpse/zombiescience, +/obj/landmark/corpse/anomalist, /obj/structure/foamedmetal, /turf/template_noop, /area/template_noop) diff --git a/maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dm b/maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dm new file mode 100644 index 0000000000000..44cd349bf9212 --- /dev/null +++ b/maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dm @@ -0,0 +1,94 @@ +/datum/map_template/ruin/exoplanet/ejected_datapod + name = "ejected data capsule" + id = "ejected_datapod" + description = "A damaged capsule with some strange contents." + suffixes = list("ejected_datapod/ejected_datapod.dmm") + spawn_cost = 0.5 + template_flags = TEMPLATE_FLAG_CLEAR_CONTENTS | TEMPLATE_FLAG_NO_RUINS + ruin_tags = RUIN_HUMAN|RUIN_WRECK + apc_test_exempt_areas = list( + /area/map_template/ejected_datapod = NO_SCRUBBER|NO_VENT|NO_APC + ) + + +/datum/map_template/ejected_datapod_contents + name = "random datapod contents #1 (chem vials)" + id = "datapod_1" + mappaths = list("maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_1.dmm") + + +/datum/map_template/ejected_datapod_contents/type2 + name = "random datapod contents #2 (servers)" + id = "datapod_2" + mappaths = list("maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_2.dmm") + + +/datum/map_template/ejected_datapod_contents/type3 + name = "random datapod contents #2 (spiders)" + id = "datapod_3" + mappaths = list("maps/random_ruins/exoplanet_ruins/ejected_datapod/contents_3.dmm") + + +/obj/landmark/map_load_mark/ejected_datapod + name = "random datapod contents" + templates = list( + /datum/map_template/ejected_datapod_contents, + /datum/map_template/ejected_datapod_contents/type2, + /datum/map_template/ejected_datapod_contents/type3 + ) + + +/area/map_template/ejected_datapod + name = "\improper Ejected Data Capsule" + icon_state = "blue" + turfs_airless = TRUE + + +/obj/item/reagent_containers/glass/beaker/vial/ejected_datapod + name = "unmarked vial" + + +/obj/item/reagent_containers/glass/beaker/vial/ejected_datapod/Initialize() + . = ..() + desc += "Label is smudged, and there's crusted blood fingerprints on it." + var/reagent_type = pickweight(list( + /datum/reagent/random = 50, + /datum/reagent/rezadone = 25, + /datum/reagent/drugs/three_eye = 20, + /datum/reagent/zombie = 5 + )) + reagents.add_reagent(reagent_type, 5) + + +/obj/structure/backup_server + name = "backup server" + icon = 'icons/obj/machines/research/server.dmi' + icon_state = "server" + desc = "Impact resistant server rack. You might be able to pry a disk out." + + /// When truthy, the server has already been harvested + var/drive_removed + + +/obj/structure/backup_server/use_tool(obj/item/tool, mob/living/user, list/click_params) + if (!isCrowbar(tool)) + return ..() + if (drive_removed) + USE_FEEDBACK_FAILURE("\The [src] has no drive to remove.") + return TRUE + drive_removed = TRUE + var/obj/item/stock_parts/computer/hard_drive/cluster/drive = new + drive.origin_tech = list( + TECH_DATA = rand(4, 5), + TECH_ENGINEERING = rand(4, 5), + TECH_PHORON = rand(4, 5), + TECH_COMBAT = rand(2, 5), + TECH_ESOTERIC = rand(0, 6) + ) + drive.dropInto(loc) + playsound(src, 'sound/items/Crowbar.ogg', 50, TRUE) + user.visible_message( + SPAN_NOTICE("\The [user] pries a drive from \the [src] with \a [tool]."), + SPAN_NOTICE("You pry \a [drive] from \the [src] with \a [tool].") + ) + return TRUE diff --git a/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dmm b/maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dmm similarity index 83% rename from maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dmm rename to maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dmm index 68d6fda86bbe3..401ae7963392a 100644 --- a/maps/random_ruins/exoplanet_ruins/datacapsule/datacapsule.dmm +++ b/maps/random_ruins/exoplanet_ruins/ejected_datapod/ejected_datapod.dmm @@ -5,7 +5,7 @@ "b" = ( /obj/paint/black, /turf/simulated/wall/ocp_wall, -/area/map_template/datacapsule) +/area/map_template/ejected_datapod) "c" = ( /obj/landmark/scorcher, /turf/template_noop, @@ -13,14 +13,14 @@ "d" = ( /obj/machinery/door/blast/shutters, /turf/simulated/floor/reinforced, -/area/map_template/datacapsule) +/area/map_template/ejected_datapod) "f" = ( /turf/simulated/floor/reinforced, -/area/map_template/datacapsule) +/area/map_template/ejected_datapod) "g" = ( /obj/landmark/map_load_mark/ejected_datapod, /turf/simulated/floor/reinforced, -/area/map_template/datacapsule) +/area/map_template/ejected_datapod) (1,1,1) = {" a diff --git a/maps/random_ruins/exoplanet_ruins/playablecolony/colony.dmm b/maps/random_ruins/exoplanet_ruins/playablecolony/colony.dmm index 0226d61a236df..26b3d6b10d807 100644 --- a/maps/random_ruins/exoplanet_ruins/playablecolony/colony.dmm +++ b/maps/random_ruins/exoplanet_ruins/playablecolony/colony.dmm @@ -23,6 +23,7 @@ "ag" = ( /obj/structure/table/steel_reinforced, /obj/item/paper_bin, +/obj/random/colony_paper, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/command) "ah" = ( @@ -179,6 +180,10 @@ /obj/structure/closet/shipping_wall{ pixel_y = -28 }, +/obj/item/card/id/merchant{ + desc = "this card can be used to access the Colony's telepad to exchange goods."; + name = "Colony leader ID" + }, /turf/simulated/floor/carpet, /area/map_template/colony/command) "aD" = ( @@ -265,9 +270,18 @@ /turf/simulated/wall/r_wall, /area/map_template/colony/messhall) "aL" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/plating, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "aM" = ( /obj/structure/catwalk, @@ -424,13 +438,13 @@ /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/command) "bg" = ( -/obj/submap_landmark/spawnpoint/colonist_spawn, /obj/structure/bed/padded, /obj/item/bedsheet/hop, /obj/machinery/light/small{ dir = 8; icon_state = "bulb1" }, +/obj/submap_landmark/spawnpoint/colonist_leader_spawn, /turf/simulated/floor/carpet, /area/map_template/colony/command) "bh" = ( @@ -477,14 +491,12 @@ /turf/simulated/floor/wood, /area/map_template/colony/command) "bm" = ( -/obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/plating, +/turf/simulated/wall/r_wall, /area/map_template/colony/engineering) "bn" = ( /obj/floor_decal/techfloor{ @@ -540,6 +552,7 @@ /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/command) "bq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/atmospherics) "br" = ( @@ -587,6 +600,37 @@ /obj/floor_decal/techfloor{ dir = 9 }, +/obj/structure/closet/crate, +/obj/item/stack/material/plasteel/ten, +/obj/item/stack/material/plasteel/ten, +/obj/item/stack/material/uranium/ten, +/obj/item/stack/material/uranium/ten, +/obj/item/stack/material/platinum/ten, +/obj/item/stack/material/diamond/ten, +/obj/item/stack/material/gold/ten, +/obj/item/stack/material/silver/ten, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/boron_reinforced/ten, +/obj/item/stack/material/glass/boron_reinforced/ten, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/plastic/ten, +/obj/item/stack/material/aluminium/ten, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "bu" = ( @@ -633,6 +677,9 @@ dir = 4; pixel_x = -21 }, +/obj/random/colony_flag{ + pixel_y = 28 + }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony) "by" = ( @@ -804,23 +851,19 @@ d2 = 8; icon_state = "1-8" }, +/obj/floor_decal/techfloor, /obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "0-2" }, -/obj/floor_decal/techfloor, +/obj/structure/cable, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "bQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/floor_decal/techfloor{ dir = 6 }, +/obj/structure/bed/chair/office/comfy/purple, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "bR" = ( @@ -936,11 +979,6 @@ /turf/simulated/floor/plating, /area/map_template/colony/surgery) "ca" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/industrial/hatch/orange, /obj/machinery/alarm{ locked = 0; pixel_y = 20 @@ -948,19 +986,14 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/power/port_gen/pacman/mrs, +/obj/machinery/fabricator/hacked, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "cb" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, /obj/floor_decal/techfloor{ dir = 5 }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/solar_control/autostart, +/obj/machinery/r_n_d/protolathe, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "cc" = ( @@ -990,12 +1023,12 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/power/smes/buildable/max_cap_in_out, /obj/structure/cable{ d2 = 2; icon_state = "0-2" }, /obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/smes/buildable/max_cap_in_out, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "ch" = ( @@ -1199,6 +1232,11 @@ /obj/floor_decal/techfloor{ dir = 1 }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "cE" = ( @@ -1255,6 +1293,9 @@ d2 = 4; icon_state = "1-4" }, +/obj/random/colony_flag{ + pixel_y = -32 + }, /turf/simulated/floor/exoplanet/concrete, /area/template_noop) "cL" = ( @@ -1323,6 +1364,11 @@ /obj/floor_decal/techfloor{ dir = 5 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "cU" = ( @@ -1606,10 +1652,14 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/reagent_dispensers/fueltank, /obj/machinery/light{ dir = 8 }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/port_gen/pacman/mrs, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "dz" = ( @@ -1618,10 +1668,12 @@ /turf/simulated/floor/plating, /area/map_template/colony/atmospherics) "dA" = ( -/obj/structure/dispenser, /obj/machinery/light{ dir = 4 }, +/obj/machinery/robotics_fabricator{ + req_access = list() + }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "dB" = ( @@ -1683,11 +1735,6 @@ d2 = 8; icon_state = "1-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1699,6 +1746,7 @@ /obj/floor_decal/techfloor/hole/right{ dir = 1 }, +/obj/machinery/r_n_d/circuit_imprinter, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/engineering) "dH" = ( @@ -2188,6 +2236,7 @@ /obj/machinery/light/spot{ dir = 1 }, +/obj/structure/dispenser, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/atmospherics) "eB" = ( @@ -2316,6 +2365,10 @@ /obj/item/storage/toolbox/mechanical, /obj/item/storage/toolbox/mechanical, /obj/item/device/integrated_circuit_printer/upgraded, +/obj/item/device/radio/intercom/map_preset/playablecolony{ + dir = 8; + pixel_x = 22 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "eN" = ( @@ -2512,15 +2565,13 @@ /turf/simulated/floor/exoplanet/concrete, /area/template_noop) "fd" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/syndicate, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/material/twohanded/jack, -/obj/item/clothing/head/hardhat/white, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, +/obj/machinery/power/solar_control/autostart{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "fe" = ( @@ -2770,34 +2821,18 @@ /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/atmospherics) "fA" = ( -/obj/floor_decal/techfloor{ - dir = 6 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/closet/crate, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/wood/fifty, -/obj/item/stack/material/wood/fifty, -/obj/item/stack/material/wood/fifty, -/obj/item/stack/material/wood/fifty, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "fB" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/boron_reinforced/ten, -/obj/item/stack/material/glass/boron_reinforced/ten, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/item/clothing/head/hardhat/orange, +/obj/machinery/computer/rdconsole/core{ + dir = 1; + req_access = list() + }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "fC" = ( @@ -3364,6 +3399,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/random/colony_flag{ + pixel_y = 32 + }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony) "gq" = ( @@ -3433,17 +3471,17 @@ d2 = 8; icon_state = "1-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/floor_decal/techfloor{ dir = 5 }, /obj/floor_decal/techfloor/hole/right{ dir = 1 }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony) "gx" = ( @@ -3542,10 +3580,10 @@ }, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/steel/fifty, /obj/item/device/geiger, /obj/item/device/geiger, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/glass/fifty, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "gI" = ( @@ -3765,14 +3803,8 @@ /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/atmospherics) "he" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/item/device/radio/intercom/map_preset/playablecolony{ - dir = 8; - pixel_x = 22 +/obj/structure/closet/shipping_wall/filled{ + pixel_x = 24 }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) @@ -4257,7 +4289,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "ib" = ( @@ -4348,6 +4380,7 @@ dir = 8; icon_state = "warning" }, +/obj/item/gun/energy/gun, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "ij" = ( @@ -4547,6 +4580,9 @@ /obj/machinery/light{ dir = 8 }, +/obj/item/gun/projectile/pirate, +/obj/item/gun/projectile/pirate, +/obj/item/gun/projectile/pirate, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "iB" = ( @@ -5647,7 +5683,6 @@ /area/map_template/colony/mineralprocessing) "kp" = ( /obj/structure/table/rack, -/obj/item/gun/energy/gun, /obj/floor_decal/industrial/warning{ dir = 8; icon_state = "warning" @@ -5660,6 +5695,8 @@ /obj/machinery/light{ dir = 8 }, +/obj/random/colony_helmet, +/obj/random/colony_helmet, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "kq" = ( @@ -5672,9 +5709,6 @@ /area/map_template/colony/airlock) "kr" = ( /obj/structure/table/rack, -/obj/item/gun/projectile/pirate, -/obj/item/gun/projectile/pirate, -/obj/item/gun/projectile/pirate, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -5688,6 +5722,8 @@ pixel_y = -28 }, /obj/structure/cable, +/obj/random/colony_armor, +/obj/random/colony_armor, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "ks" = ( @@ -5912,7 +5948,6 @@ /obj/floor_decal/industrial/loading{ dir = 4 }, -/obj/decal/cleanable/dirt, /turf/simulated/floor/exoplanet/concrete, /area/map_template/colony/mineralprocessing) "kL" = ( @@ -6302,20 +6337,11 @@ /turf/simulated/floor/plating, /area/map_template/colony/hydroponics) "lC" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, /obj/machinery/light/spot{ dir = 8 }, -/obj/structure/closet/crate, -/obj/item/stack/material/plasteel/ten, -/obj/item/stack/material/plasteel/ten, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/uranium/ten, -/obj/item/stack/material/uranium/ten, -/obj/item/stack/material/platinum/ten, -/obj/item/stack/material/diamond/ten, -/obj/item/stack/material/gold/ten, -/obj/item/stack/material/silver/ten, -/obj/structure/catwalk, /obj/structure/cable{ d1 = 1; d2 = 4; @@ -6324,17 +6350,16 @@ /obj/floor_decal/industrial/warning/dust{ dir = 4 }, -/obj/decal/cleanable/dirt, /turf/simulated/floor/exoplanet/concrete, /area/map_template/colony/mineralprocessing) "lD" = ( -/obj/structure/catwalk, /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/decal/cleanable/dirt, +/obj/structure/catwalk, /turf/simulated/floor/exoplanet/concrete, /area/map_template/colony/mineralprocessing) "lG" = ( @@ -6348,18 +6373,13 @@ /area/map_template/colony/jail) "lH" = ( /obj/structure/table/rack, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light{ dir = 8 }, +/obj/random/colony_smg, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "lI" = ( @@ -6659,7 +6679,16 @@ /turf/simulated/floor/exoplanet/concrete, /area/template_noop) "me" = ( -/obj/machinery/fabricator/hacked, +/obj/structure/table/steel_reinforced, +/obj/item/storage/toolbox/syndicate, +/obj/item/tape_roll, +/obj/item/material/twohanded/jack, +/obj/item/tape_roll, +/obj/item/clothing/head/hardhat/white, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/clothing/head/hardhat/orange, +/obj/item/grenade/chem_grenade/metalfoam, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/engineering) "mf" = ( @@ -6996,8 +7025,6 @@ /area/map_template/colony/hydroponics) "mI" = ( /obj/structure/table/rack, -/obj/item/gun/projectile/automatic/assault_rifle, -/obj/item/gun/projectile/automatic/assault_rifle, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -7008,6 +7035,7 @@ dir = 1; icon_state = "warning" }, +/obj/random/colony_rifle, /turf/simulated/floor/tiled/steel_ridged, /area/map_template/colony/armory) "mJ" = ( @@ -8278,6 +8306,15 @@ /obj/structure/grille, /turf/simulated/floor/exoplanet/concrete, /area/template_noop) +"rW" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/random/colony_flag{ + pixel_x = -32 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/template_noop) "tz" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/floor_decal/techfloor{ @@ -8370,6 +8407,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony) +"AT" = ( +/obj/random/colony_flag{ + pixel_y = -32 + }, +/turf/template_noop, +/area/template_noop) "Bc" = ( /obj/machinery/light{ dir = 4 @@ -8377,6 +8420,23 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/hydroponics) +"BI" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/colony_flag{ + pixel_y = -32 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/template_noop) "Dj" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ @@ -8398,6 +8458,14 @@ }, /turf/simulated/floor/wood, /area/map_template/colony/dorms) +"EF" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/random/colony_flag{ + pixel_x = -28 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/template_noop) "Fz" = ( /obj/machinery/telecomms/processor/map_preset/playablecolony, /turf/simulated/floor/tiled/techfloor, @@ -8412,6 +8480,12 @@ }, /turf/simulated/floor/grass, /area/map_template/colony/hydroponics) +"Hx" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/map_template/colony/engineering) "Hy" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/power/apc{ @@ -8497,6 +8571,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/map_template/colony/hydroponics) +"Lp" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/random/colony_flag{ + pixel_y = 28 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/map_template/colony/mineralprocessing) "LQ" = ( /obj/floor_decal/techfloor{ dir = 8 @@ -8546,12 +8628,39 @@ "Ot" = ( /turf/simulated/floor/tiled/white, /area/map_template/colony/bathroom) +"QX" = ( +/obj/random/colony_flag{ + pixel_y = 28 + }, +/turf/template_noop, +/area/template_noop) "RR" = ( /obj/floor_decal/techfloor{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/map_template/colony/hydroponics) +"TH" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/random/colony_flag{ + pixel_y = -32 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/template_noop) +"Ui" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/random/colony_flag{ + pixel_y = 28 + }, +/turf/simulated/floor/exoplanet/concrete, +/area/template_noop) "Vk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8788,7 +8897,7 @@ gv nH nM aO -aa +QX "} (6,1,1) = {" af @@ -8963,7 +9072,7 @@ aZ aZ aZ aZ -dl +BI ab bY cJ @@ -9067,7 +9176,7 @@ lf lP mA bd -kL +Lp kL kL kL @@ -9209,10 +9318,10 @@ aZ aZ aZ bI -aL +ar bt bO -aT +fA cw dX aT @@ -9253,7 +9362,7 @@ bR bm dG bP -aT +aL cD dY ei @@ -9291,15 +9400,15 @@ aZ aZ aZ bT -aL +ar cb bQ -aT +fB cT dZ aT eR -fA +dZ gW fZ gj @@ -9340,7 +9449,7 @@ fd eM gH me -fB +Hx gW fC gD @@ -9649,7 +9758,7 @@ ms oa mD bh -os +Ui "} (27,1,1) = {" ad @@ -9775,7 +9884,7 @@ ab os "} (30,1,1) = {" -aa +AT ac bb bp @@ -9946,7 +10055,7 @@ uK YD ae dn -fc +TH au aB ex @@ -10120,7 +10229,7 @@ eZ eZ fc fc -fc +EF fc fc jK @@ -10134,7 +10243,7 @@ fc fc fc eZ -eZ +rW eZ fc eZ diff --git a/maps/random_ruins/exoplanet_ruins/playablecolony2/colony2.dmm b/maps/random_ruins/exoplanet_ruins/playablecolony2/colony2.dmm index 073568322c19c..12326cda6d948 100644 --- a/maps/random_ruins/exoplanet_ruins/playablecolony2/colony2.dmm +++ b/maps/random_ruins/exoplanet_ruins/playablecolony2/colony2.dmm @@ -60,6 +60,15 @@ }, /turf/simulated/floor/plating, /area/map_template/colony2/ship) +"bq" = ( +/obj/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/random/colony_flag{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/map_template/colony2/Hallway) "bt" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /obj/catwalk_plated/dark, @@ -208,10 +217,10 @@ /area/map_template/colony2/atmospherics) "dD" = ( /obj/floor_decal/corner/paleblue/mono, -/obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 1 }, +/obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "dM" = ( @@ -322,6 +331,8 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /obj/item/device/radio/headset/map_preset/playablecolony2, /obj/item/device/radio/headset/map_preset/playablecolony2, +/obj/item/gun/energy/gun/small, +/obj/item/gun/energy/gun/small, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) "eY" = ( @@ -342,15 +353,11 @@ /turf/simulated/floor/tiled/dark, /area/map_template/colony2/tcomms) "fp" = ( -/obj/paint/ocean, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "colony2"; - name = "Window Blast Shutter" +/obj/structure/largecrate/animal/goose, +/turf/simulated/floor/reinforced{ + map_airless = 1 }, -/turf/simulated/floor/plating, -/area/map_template/colony2/engineering) +/area/map_template/colony2/external) "fs" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -395,6 +402,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 6 }, +/obj/item/device/paint_sprayer, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "fF" = ( @@ -407,6 +419,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) +"fP" = ( +/obj/landmark/clear, +/obj/random/colony_flag{ + pixel_x = 32 + }, +/turf/template_noop, +/area/template_noop) "fQ" = ( /obj/machinery/sleeper, /turf/simulated/floor/tiled/white, @@ -439,6 +458,13 @@ /obj/structure/closet/crate/hydroponics/prespawned, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/commons) +"gd" = ( +/obj/landmark/clear, +/obj/random/colony_flag{ + pixel_x = -32 + }, +/turf/template_noop, +/area/template_noop) "ge" = ( /obj/structure/hygiene/sink{ dir = 1; @@ -448,10 +474,11 @@ /turf/simulated/floor/tiled/white, /area/map_template/colony2/ship) "gi" = ( -/obj/catwalk_plated/dark, -/obj/structure/largecrate/animal/chick, -/turf/simulated/floor/plating, -/area/map_template/colony2/storage) +/obj/structure/largecrate/animal/goat, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/map_template/colony2/external) "gj" = ( /obj/floor_decal/corner/paleblue/mono, /obj/machinery/seed_extractor, @@ -496,6 +523,7 @@ /obj/machinery/computer/mining{ pixel_y = 32 }, +/obj/structure/ore_box, /turf/simulated/floor/reinforced{ map_airless = 1 }, @@ -512,7 +540,6 @@ /turf/simulated/floor/plating, /area/map_template/colony2/engineering) "hN" = ( -/obj/structure/ore_box, /obj/item/device/radio/intercom/map_preset/playablecolony2{ pixel_y = 21 }, @@ -587,6 +614,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/submap_landmark/spawnpoint/ship_leader_spawn, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) "jo" = ( @@ -662,11 +690,11 @@ }, /area/map_template/colony2/external) "lj" = ( -/obj/machinery/fabricator/hacked, /obj/machinery/firealarm{ pixel_y = 24 }, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/r_n_d/circuit_imprinter, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "lm" = ( @@ -688,6 +716,7 @@ dir = 4 }, /obj/machinery/radio_beacon, +/obj/random/colony2_paper, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) "lZ" = ( @@ -777,10 +806,8 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/vending/engineering{ - req_access = list() - }, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/r_n_d/protolathe, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "oQ" = ( @@ -1090,6 +1117,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/fuel{ dir = 4 }, +/obj/structure/largecrate/animal/cow, /turf/simulated/floor/reinforced{ map_airless = 1 }, @@ -1120,23 +1148,11 @@ pixel_y = 24; req_access = newlist() }, -/obj/item/clamp, -/obj/item/clamp, -/obj/item/clamp, -/obj/structure/closet/crate, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/rpd, /obj/floor_decal/corner/paleblue/mono, /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 4 }, -/obj/item/device/paint_sprayer, +/obj/machinery/vending/tool, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "wp" = ( @@ -1178,9 +1194,6 @@ "xx" = ( /obj/floor_decal/corner/paleblue/mono, /obj/structure/closet/crate/med_crate/trauma, -/obj/structure/railing/mapped{ - dir = 8 - }, /obj/item/device/radio/intercom/map_preset/playablecolony2{ pixel_y = 21 }, @@ -1254,6 +1267,7 @@ /obj/structure/railing/mapped{ dir = 4 }, +/obj/structure/ore_box, /turf/simulated/floor/reinforced{ map_airless = 1 }, @@ -1402,11 +1416,20 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/item/device/radio/headset/map_preset/playablecolony2, /obj/item/device/radio/headset/map_preset/playablecolony2, +/obj/item/gun/energy/gun/small, +/obj/item/gun/energy/gun/small, +/obj/item/card/id/merchant{ + desc = "this card can be used to access the Colony's telepad to exchange goods."; + name = "Colony leader ID" + }, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) "BI" = ( /obj/machinery/atmospherics/binary/pump, /obj/floor_decal/corner/paleblue/mono, +/obj/structure/reagent_dispensers/acid{ + pixel_y = -28 + }, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "BR" = ( @@ -1419,12 +1442,11 @@ }, /area/map_template/colony2/external) "BU" = ( -/obj/catwalk_plated/dark, -/obj/structure/railing/mapped{ - dir = 8 +/obj/structure/largecrate/animal/chick, +/turf/simulated/floor/reinforced{ + map_airless = 1 }, -/turf/simulated/floor/plating, -/area/map_template/colony2/storage) +/area/map_template/colony2/external) "BZ" = ( /turf/simulated/floor/reinforced{ map_airless = 1 @@ -1497,6 +1519,7 @@ }, /obj/floor_decal/corner/paleblue/mono, /obj/machinery/atmospherics/valve/open, +/obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "CJ" = ( @@ -1530,6 +1553,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/map_template/colony2/ship) +"Du" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated/dark, +/obj/random/colony_flag{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/map_template/colony2/Hallway) "Dv" = ( /obj/machinery/alarm{ dir = 4; @@ -1538,7 +1575,23 @@ req_access = newlist() }, /obj/floor_decal/corner/paleblue/mono, -/obj/structure/largecrate/animal/cow, +/obj/structure/closet/crate, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/radio/map_preset/playablecolony2, +/obj/item/device/radio/map_preset/playablecolony2, +/obj/item/crowbar/prybar, +/obj/item/storage/belt/holster/security, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/gloves/insulated, +/obj/item/crowbar/prybar, +/obj/item/clothing/gloves/insulated, +/obj/item/device/suit_cooling_unit, +/obj/item/storage/backpack/dufflebag/med, +/obj/item/storage/backpack/dufflebag/eng, +/obj/item/storage/backpack/dufflebag/eng, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/storage) "Dw" = ( @@ -1553,7 +1606,7 @@ "DD" = ( /obj/machinery/light, /obj/floor_decal/corner/paleblue/mono, -/obj/structure/largecrate/animal/cow, +/obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/storage) "DG" = ( @@ -1586,26 +1639,16 @@ /area/map_template/colony2/external) "DQ" = ( /obj/floor_decal/corner/paleblue/mono, -/obj/structure/largecrate/animal/goose, +/obj/structure/table/rack, +/obj/random/colony_helmet, +/obj/random/colony_helmet, +/obj/random/colony_armor, +/obj/random/colony_armor, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/storage) "DR" = ( -/obj/structure/closet/crate, -/obj/item/gun/projectile/shotgun/pump{ - desc = "The mass-produced W-T Remmington 29x shotgun is a favourite of police and security forces on many worlds. Useful for sweeping alleys. Someone has marked it as property of 'Vel-Rana', with one kill mark next to it." - }, -/obj/item/storage/box/ammo/shotgunammo, -/obj/item/storage/box/ammo/shotgunshells, -/obj/item/gun/energy/gun/small, -/obj/item/gun/energy/gun/small, -/obj/item/gun/energy/gun/small, -/obj/item/gun/energy/gun/small, -/obj/item/storage/box/ammo/flashshells, /obj/floor_decal/corner/paleblue/mono, -/obj/item/gun/energy/gun, -/obj/structure/railing/mapped{ - dir = 8 - }, +/obj/machinery/pipedispenser, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/storage) "En" = ( @@ -1685,9 +1728,9 @@ pixel_x = -21; req_access = newlist() }, -/obj/structure/reagent_dispensers/fueltank, /obj/floor_decal/corner/paleblue/mono, /obj/machinery/atmospherics/valve/open, +/obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "Fq" = ( @@ -1736,7 +1779,6 @@ "Gt" = ( /obj/floor_decal/industrial/loading, /obj/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, /turf/simulated/floor/reinforced{ map_airless = 1 }, @@ -1931,11 +1973,13 @@ /area/map_template/colony2/commons) "Kg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/firealarm{ pixel_y = 24 }, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/vending/engineering{ + req_access = list() + }, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "Kr" = ( @@ -1955,13 +1999,8 @@ /area/map_template/colony2/commons) "KA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/wallframe_spawn/reinforced, /obj/paint/ocean, -/obj/machinery/door/blast/regular{ - id_tag = "colony2"; - name = "Window Blast Shutter" - }, -/turf/simulated/floor/plating, +/turf/simulated/wall/r_wall, /area/map_template/colony2/engineering) "KP" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, @@ -1994,6 +2033,13 @@ /obj/paint/ocean, /turf/simulated/wall/r_wall, /area/map_template/colony2/external) +"LJ" = ( +/obj/landmark/clear, +/obj/random/colony_flag{ + pixel_y = 32 + }, +/turf/template_noop, +/area/template_noop) "LP" = ( /obj/catwalk_plated/dark, /turf/simulated/floor/plating, @@ -2090,16 +2136,15 @@ /turf/simulated/floor/plating, /area/map_template/colony2/atmospherics) "Nm" = ( -/obj/machinery/vending/engivend{ - req_access = list() - }, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "NX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/fuel{ dir = 1 }, +/obj/structure/largecrate/animal/cow, /turf/simulated/floor/reinforced{ map_airless = 1 }, @@ -2108,13 +2153,19 @@ /obj/floor_decal/corner/paleblue{ dir = 9 }, -/obj/structure/largecrate/animal/chick, /turf/simulated/floor/tiled/dark, /area/map_template/colony2/storage) "Og" = ( /obj/landmark/clear, /turf/template_noop, /area/template_noop) +"Op" = ( +/obj/landmark/clear, +/obj/random/colony_flag{ + pixel_y = -32 + }, +/turf/template_noop, +/area/template_noop) "Oy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2131,11 +2182,13 @@ /turf/simulated/floor/plating, /area/map_template/colony2/tcomms) "Oz" = ( -/obj/machinery/vending/tool, /obj/floor_decal/corner/paleblue/mono, /obj/item/device/radio/intercom/map_preset/playablecolony2{ pixel_y = 21 }, +/obj/machinery/computer/rdconsole/core{ + req_access = list() + }, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "OB" = ( @@ -2407,8 +2460,8 @@ d2 = 4; icon_state = "0-4" }, -/obj/machinery/pipedispenser, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/fabricator/hacked, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "Sp" = ( @@ -2424,16 +2477,16 @@ }, /area/map_template/colony2/external) "SA" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1; - sheets = 25 - }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" }, /obj/machinery/light, /obj/floor_decal/corner/paleblue/mono, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 25 + }, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/engineering) "SJ" = ( @@ -2461,24 +2514,10 @@ /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/commons) "SQ" = ( -/obj/item/storage/backpack/dufflebag/eng, -/obj/item/storage/backpack/dufflebag/eng, -/obj/item/storage/backpack/dufflebag/med, -/obj/structure/closet/crate, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/gloves/insulated, -/obj/item/clothing/gloves/insulated, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/medical, /obj/floor_decal/corner/paleblue/mono, -/obj/item/storage/belt/holster/security, -/obj/item/crowbar/prybar, -/obj/item/crowbar/prybar, -/obj/item/device/radio/map_preset/playablecolony2, -/obj/item/device/radio/map_preset/playablecolony2, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, +/obj/machinery/vending/engivend{ + req_access = list() + }, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "SR" = ( @@ -2498,13 +2537,8 @@ /area/map_template/colony2/external) "ST" = ( /obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/wallframe_spawn/reinforced, /obj/paint/ocean, -/obj/machinery/door/blast/regular{ - id_tag = "colony2"; - name = "Window Blast Shutter" - }, -/turf/simulated/floor/plating, +/turf/simulated/wall/r_wall, /area/map_template/colony2/engineering) "SU" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -2741,7 +2775,10 @@ /area/map_template/colony2/tcomms) "Wk" = ( /obj/floor_decal/corner/paleblue/mono, -/obj/structure/largecrate/animal/goat, +/obj/structure/table/rack, +/obj/random/colony_rifle, +/obj/random/colony_smg, +/obj/item/gun/energy/gun, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/storage) "Wm" = ( @@ -2864,6 +2901,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/catwalk_plated/dark, /obj/machinery/meter, +/obj/machinery/robotics_fabricator{ + req_access = list() + }, /turf/simulated/floor/plating, /area/map_template/colony2/engineering) "YI" = ( @@ -2881,7 +2921,7 @@ dir = 1 }, /obj/floor_decal/corner/paleblue/mono, -/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/dark/monotile, /area/map_template/colony2/atmospherics) "YV" = ( @@ -3031,7 +3071,7 @@ vf Qw Pa Wk -gi +LP DD lU YQ @@ -3074,7 +3114,7 @@ UN UN Pa xx -BU +LP DR lU SQ @@ -3150,7 +3190,7 @@ Ls "} (6,1,1) = {" Og -Og +Op PU eg kb @@ -3181,7 +3221,7 @@ Og Og Og Og -Og +fP Og Og Og @@ -3211,7 +3251,7 @@ iv Ci dD vn -Og +LJ Og Og Ls @@ -3288,7 +3328,7 @@ HS AU HS tT -HS +Du AS bV rp @@ -3301,8 +3341,8 @@ YV ni BZ XB -BZ -BZ +gi +BU vj BZ BZ @@ -3331,7 +3371,7 @@ XX XX aN uT -XX +bq Iz Rz tb @@ -3344,8 +3384,8 @@ vh ni BZ XB -BZ -BZ +fp +BU NX jy Qi @@ -3426,7 +3466,7 @@ Vb OZ qo AE -Og +LJ Og Og Ls @@ -3451,7 +3491,7 @@ Og "} (13,1,1) = {" Og -Og +Op PU fQ dM @@ -3482,7 +3522,7 @@ Og Og Og Og -Og +gd Og Og kf @@ -3680,8 +3720,8 @@ Mc cr AE AE -fp -fp +AE +AE AE AE Og diff --git a/maps/sierra/datums/supplypacks/security.dm b/maps/sierra/datums/supplypacks/security.dm index 95ce68d141894..42b8eb7d0f83e 100644 --- a/maps/sierra/datums/supplypacks/security.dm +++ b/maps/sierra/datums/supplypacks/security.dm @@ -131,7 +131,7 @@ /obj/item/clothing/suit/armor/pcarrier/tan/tactical, /obj/item/clothing/head/helmet/tactical, /obj/item/clothing/mask/balaclava/tactical, - /obj/item/clothing/glasses/tacgoggles, + /obj/item/clothing/accessory/glassesmod/nvg, /obj/item/storage/belt/holster/security/tactical, /obj/item/clothing/shoes/tactical, /obj/item/clothing/gloves/tactical) diff --git a/maps/sierra/datums/uniforms_employee.dm b/maps/sierra/datums/uniforms_employee.dm index b9dfc84f6300c..dd6e42f2a5083 100644 --- a/maps/sierra/datums/uniforms_employee.dm +++ b/maps/sierra/datums/uniforms_employee.dm @@ -59,15 +59,15 @@ departments = SEC dress_hat = list(\ - /obj/item/clothing/head/beret/sec/corporate/officer, /obj/item/clothing/head/beret/sec/navy/officer, \ - /obj/item/clothing/head/beret/sec, /obj/item/clothing/head/soft/sec, \ - /obj/item/clothing/head/soft/sec/corp, /obj/item/clothing/head/soft/sec/corp/guard, \ - /obj/item/clothing/head/beret/guard) + /obj/item/clothing/head/beret/sec/corporate/officer/sierra1, /obj/item/clothing/head/beret/sec/navy/officer/sierra1, \ + /obj/item/clothing/head/beret/sec/sierra1, /obj/item/clothing/head/soft/sec/sierra1, \ + /obj/item/clothing/head/soft/sec/corp/sierra1, /obj/item/clothing/head/soft/sec/corp/guard/sierra1, \ + /obj/item/clothing/head/beret/guard/sierra1) dress_under = list(\ - /obj/item/clothing/under/rank/security, /obj/item/clothing/under/rank/security/alt, \ - /obj/item/clothing/under/rank/security/corp, /obj/item/clothing/under/rank/security/corp/alt, \ - /obj/item/clothing/under/rank/security/navyblue, /obj/item/clothing/under/rank/security/navyblue/alt, \ - /obj/item/clothing/under/rank/security2) + /obj/item/clothing/under/rank/security/sierra1, /obj/item/clothing/under/rank/security/alt/sierra1, \ + /obj/item/clothing/under/rank/security/corp/sierra1, /obj/item/clothing/under/rank/security/corp/alt/sierra1, \ + /obj/item/clothing/under/rank/security/navyblue/sierra1, /obj/item/clothing/under/rank/security/navyblue/alt/sierra1, \ + /obj/item/clothing/under/rank/security2/sierra1, /obj/item/clothing/under/rank/security/cadet) dress_shoes = list(\ /obj/item/clothing/shoes/jackboots) @@ -76,15 +76,15 @@ departments = SEC|COM dress_hat = list( - /obj/item/clothing/head/beret/sec/corporate/hos, + /obj/item/clothing/head/beret/sec/corporate/hos/sierra1, /obj/item/clothing/head/HoS, - /obj/item/clothing/head/beret/sec/navy/hos + /obj/item/clothing/head/beret/sec/navy/hos/sierra1 ) dress_under = list(\ - /obj/item/clothing/under/rank/head_of_security, /obj/item/clothing/under/rank/head_of_security/jensen, \ - /obj/item/clothing/under/rank/head_of_security/navyblue, /obj/item/clothing/under/rank/head_of_security/navyblue/alt, \ - /obj/item/clothing/under/rank/head_of_security/corp, /obj/item/clothing/under/rank/head_of_security/corp/alt, \ - /obj/item/clothing/under/hosformalfem, /obj/item/clothing/under/hosformalmale) + /obj/item/clothing/under/rank/head_of_security/sierra1, /obj/item/clothing/under/rank/head_of_security/jensen, \ + /obj/item/clothing/under/rank/head_of_security/navyblue/sierra1, /obj/item/clothing/under/rank/head_of_security/navyblue/alt/sierra1, \ + /obj/item/clothing/under/rank/head_of_security/corp/sierra1, /obj/item/clothing/under/rank/head_of_security/corp/alt/sierra1, \ + /obj/item/clothing/under/hosformalfem/sierra1, /obj/item/clothing/under/hosformalmale/sierra1) /* MEDICAL * ======= diff --git a/maps/sierra/icons/mob/onmob/onmob_under.dmi b/maps/sierra/icons/mob/onmob/onmob_under.dmi new file mode 100644 index 0000000000000..deed7632f4fe4 Binary files /dev/null and b/maps/sierra/icons/mob/onmob/onmob_under.dmi differ diff --git a/maps/sierra/icons/obj/clothing/obj_under.dmi b/maps/sierra/icons/obj/clothing/obj_under.dmi new file mode 100644 index 0000000000000..01d89cfe17d0a Binary files /dev/null and b/maps/sierra/icons/obj/clothing/obj_under.dmi differ diff --git a/maps/sierra/items/clothing/security.dm b/maps/sierra/items/clothing/security.dm new file mode 100644 index 0000000000000..b4bfaeef684b8 --- /dev/null +++ b/maps/sierra/items/clothing/security.dm @@ -0,0 +1,96 @@ +/obj/item/clothing/under/rank/security/sierra1 + name = "red security jumpsuit" + +/obj/item/clothing/under/rank/security/corp/alt/sierra1 + name = "blue security jumpsuit" + +/obj/item/clothing/under/rank/security/corp/sierra1 + name = "black security jumpsuit" + +/obj/item/clothing/under/rank/security/alt/sierra1 + name = "blue security shirt" + +/obj/item/clothing/under/rank/security/navyblue/sierra1 + name = "navy-blue security uniform" + +/obj/item/clothing/under/rank/security/navyblue/alt/sierra1 + name = "khaki security uniform" + +/obj/item/clothing/under/rank/security2/sierra1 + name = "red security uniform" + +/obj/item/clothing/head/soft/sec/sierra1 + name = "red security cap" + +/obj/item/clothing/head/soft/sec/corp/guard/sierra1 + name = "white security cap" + +/obj/item/clothing/head/soft/sec/corp/sierra1 + name = "black security cap" + +/obj/item/clothing/head/beret/guard/sierra1 + name = "white security beret" + +/obj/item/clothing/head/beret/sec/corporate/officer/sierra1 + name = "black security beret" + +/obj/item/clothing/head/beret/sec/sierra1 + name = "red security beret" + +/obj/item/clothing/head/beret/sec/navy/officer/sierra1 + name = "navy-blue security beret" + +/obj/item/clothing/head/beret/sec/corporate/warden/sierra1 + name = "black warden beret" + +/obj/item/clothing/head/beret/sec/navy/warden/sierra1 + name = "navy warden beret" + +/obj/item/clothing/under/rank/warden/corp/sierra1 + name = "black warden jumpsuit" + +/obj/item/clothing/under/rank/warden/corp/alt/sierra1 + name = "blue warden jumpsuit" + +/obj/item/clothing/under/rank/warden/navyblue/sierra1 + name = "navy-blue warden uniform" + +/obj/item/clothing/under/rank/warden/navyblue/alt/sierra1 + name = "khaki warden uniform" + +/obj/item/clothing/head/beret/sec/corporate/hos/sierra1 + name = "black security commander beret" + +/obj/item/clothing/head/beret/sec/navy/hos/sierra1 + name = "navy security commander beret" + +/obj/item/clothing/under/rank/head_of_security/corp/sierra1 + name = "black head of security jumpsuit" + +/obj/item/clothing/under/rank/head_of_security/corp/alt/sierra1 + name = "blue head of security jumpsuit" + +/obj/item/clothing/under/rank/head_of_security/sierra1 + name = "red head of security jumpsuit" + +/obj/item/clothing/under/rank/head_of_security/navyblue/alt/sierra1 + name = "khaki head of security uniform" + +/obj/item/clothing/under/rank/head_of_security/navyblue/sierra1 + name = "navy head of security uniform" + +/obj/item/clothing/under/hosformalmale/sierra1 + name = "male head of security formal uniform" + +/obj/item/clothing/under/hosformalfem/sierra1 + name = "female head of security formal uniform" + +/obj/item/clothing/under/rank/security/cadet + name = "security cadet uniform" + desc = "A NanoTrasen Security cadet uniform in a classic formal white-and-black." + icon = 'maps/sierra/icons/obj/clothing/obj_under.dmi' + item_icons = list(slot_w_uniform_str ='maps/sierra/icons/mob/onmob/onmob_under.dmi') + item_state = "cadet_standard" + icon_state = "cadet_standard" + worn_state = "cadet_standard" + gender_icons = 1 diff --git a/maps/sierra/job/jobs_cargo.dm b/maps/sierra/job/jobs_cargo.dm index e1d7dddd4cb65..2d70474d2e329 100644 --- a/maps/sierra/job/jobs_cargo.dm +++ b/maps/sierra/job/jobs_cargo.dm @@ -21,7 +21,7 @@ skill_points = 14 - access = list( access_maint_tunnels, access_emergency_storage, access_tech_storage, access_cargo, access_guppy_helm, + access = list( access_maint_tunnels, access_emergency_storage, access_bridge, access_tech_storage, access_cargo, access_guppy_helm, access_cargo_bot, access_qm, access_mailsorting, access_expedition_shuttle, access_guppy, access_hangar, access_mining, access_mining_office, access_mining_station, access_commissary, access_external_airlocks) diff --git a/maps/sierra/job/outfits.dm b/maps/sierra/job/outfits.dm index fad4f72ac618b..492d7c3835edd 100644 --- a/maps/sierra/job/outfits.dm +++ b/maps/sierra/job/outfits.dm @@ -108,10 +108,10 @@ Keeping them simple for now, just spawning with basic EC uniforms, and pretty mu ..() BACKPACK_OVERRIDE_ENGINEERING -/singleton/hierarchy/outfit/job/sierra/crew/command/hos +/singleton/hierarchy/outfit/job/sierra/crew/command/hos/ name = OUTFIT_JOB_NAME("Head of Security - Sierra") l_ear = /obj/item/device/radio/headset/heads/hos - uniform = /obj/item/clothing/under/rank/head_of_security/corp + uniform = /obj/item/clothing/under/rank/head_of_security/corp/sierra1 shoes = /obj/item/clothing/shoes/jackboots id_types = list(/obj/item/card/id/sierra/silver/security) // pda_type = /obj/item/modular_computer/pda/heads/hos @@ -199,7 +199,7 @@ Keeping them simple for now, just spawning with basic EC uniforms, and pretty mu /singleton/hierarchy/outfit/job/sierra/crew/security/warden name = OUTFIT_JOB_NAME("Warden - Sierra") - uniform = /obj/item/clothing/under/rank/warden/corp + uniform = /obj/item/clothing/under/rank/warden/corp/sierra1 shoes = /obj/item/clothing/shoes/jackboots id_types = list(/obj/item/card/id/sierra/crew/security/warden) @@ -214,13 +214,13 @@ Keeping them simple for now, just spawning with basic EC uniforms, and pretty mu /singleton/hierarchy/outfit/job/sierra/crew/security/officer name = OUTFIT_JOB_NAME("Security Officer - Sierra") - uniform = /obj/item/clothing/under/rank/security/corp + uniform = /obj/item/clothing/under/rank/security/corp/sierra1 shoes = /obj/item/clothing/shoes/jackboots id_types = list(/obj/item/card/id/sierra/crew/security) /singleton/hierarchy/outfit/job/sierra/crew/security/assist name = OUTFIT_JOB_NAME("Cadet - Sierra") - uniform = /obj/item/clothing/under/rank/security + uniform = /obj/item/clothing/under/rank/security/cadet shoes = /obj/item/clothing/shoes/jackboots id_types = list(/obj/item/card/id/sierra/crew/security/cadet) diff --git a/maps/sierra/loadout/loadout_head.dm b/maps/sierra/loadout/loadout_head.dm index 234f345839d0a..84fb4b2fef07d 100644 --- a/maps/sierra/loadout/loadout_head.dm +++ b/maps/sierra/loadout/loadout_head.dm @@ -12,21 +12,49 @@ allowed_branches = list(/datum/mil_branch/contractor) */ -/datum/gear/head/beret_selection +/datum/gear/head/beret_selection_contractor display_name = "contractor beret selection" description = "A list of berets used by various organizations and corporights." path = /obj/item/clothing/head/beret allowed_roles = SECURITY_ROLES + allowed_branches = list(/datum/mil_branch/contractor) -/datum/gear/head/beret_selection/New() +/datum/gear/head/beret_selection_contractor/New() ..() var/beret_selection_type = list() - beret_selection_type["white-blue corporight security beret"] = /obj/item/clothing/head/beret/guard - beret_selection_type["white-red corporight security beret"] = /obj/item/clothing/head/beret/sec/corporate/whitered beret_selection_type["SAARE beret"] = /obj/item/clothing/head/beret/sec/corporate/saare beret_selection_type["PCRC beret"] = /obj/item/clothing/head/beret/sec/corporate/pcrc beret_selection_type["ZPCI beret"] = /obj/item/clothing/head/beret/sec/corporate/zpci gear_tweaks += new/datum/gear_tweak/path(beret_selection_type) +/datum/gear/head/beret_selection_security + display_name = "security berets selection" + description = "A list of berets used by NanoTrasen security." + path = /obj/item/clothing/head/beret + allowed_roles = SECURITY_ROLES + +/datum/gear/head/beret_selection_security/New() + ..() + var/beret_selection_type = list() + beret_selection_type["white-blue security beret"] = /obj/item/clothing/head/beret/guard/sierra1 + beret_selection_type["white-red security beret"] = /obj/item/clothing/head/beret/sec/corporate/whitered + beret_selection_type["black security beret"] = /obj/item/clothing/head/beret/sec/corporate/officer/sierra1 + beret_selection_type["red security beret"] = /obj/item/clothing/head/beret/sec/sierra1 + gear_tweaks += new/datum/gear_tweak/path(beret_selection_type) + +/datum/gear/head/soft_selection_security + display_name = "security softcaps selection" + description = "A list of softcaps used by NanoTrasen security." + path = /obj/item/clothing/head/soft + allowed_roles = SECURITY_ROLES + +/datum/gear/head/soft_selection_security/New() + ..() + var/soft_selection_type = list() + soft_selection_type["white security cap"] = /obj/item/clothing/head/soft/sec/corp/guard/sierra1 + soft_selection_type["red security cap"] = /obj/item/clothing/head/soft/sec/sierra1 + soft_selection_type["black security cap"] = /obj/item/clothing/head/soft/sec/corp/sierra1 + gear_tweaks += new/datum/gear_tweak/path(soft_selection_type) + /datum/gear/suit/unathi/security_cap allowed_roles = SECURITY_ROLES diff --git a/maps/sierra/loadout/loadout_tactical.dm b/maps/sierra/loadout/loadout_tactical.dm index a47c35f32ff14..a697768cd3486 100644 --- a/maps/sierra/loadout/loadout_tactical.dm +++ b/maps/sierra/loadout/loadout_tactical.dm @@ -48,9 +48,11 @@ /datum/gear/tactical/security_uniforms/New() ..() var/uniforms = list() - uniforms += /obj/item/clothing/under/rank/security/corp/alt - uniforms += /obj/item/clothing/under/rank/security/navyblue - uniforms += /obj/item/clothing/under/rank/security/navyblue/alt + uniforms += /obj/item/clothing/under/rank/security/corp/alt/sierra1 + uniforms += /obj/item/clothing/under/rank/security/navyblue/sierra1 + uniforms += /obj/item/clothing/under/rank/security/navyblue/alt/sierra1 + uniforms += /obj/item/clothing/under/rank/security2/sierra1 + uniforms += /obj/item/clothing/under/rank/security/sierra1 gear_tweaks += new/datum/gear_tweak/path/specified_types_list(uniforms) /datum/gear/tactical/bloodpatch diff --git a/maps/sierra/sierra.dm b/maps/sierra/sierra.dm index d60a177432798..9371cc09ac9ce 100644 --- a/maps/sierra/sierra.dm +++ b/maps/sierra/sierra.dm @@ -78,6 +78,7 @@ #include "items/clothing/exploration.dm" #include "items/clothing/override.dm" #include "items/clothing/storages.dm" + #include "items/clothing/security.dm" // --- JOB SECTION --- // #include "job\_job_defines.dm" @@ -197,6 +198,8 @@ #include "../../mods/tajara/_tajara.dme" #include "../../mods/sauna_props/_sauna_props.dme" #include "../../mods/wyccbay_optimization/_wyccbay_optimization.dme" + #include "../../mods/contraband_vending/_contraband_vending.dme" + #include "../../mods/telecomms/_telecomms.dme" // UNUSED MODS // Keep them in ascending alphabetical order too, please diff --git a/maps/sierra/sierra_overmap.dm b/maps/sierra/sierra_overmap.dm index 813c0d3a386a1..bf28e9fcbaef3 100644 --- a/maps/sierra/sierra_overmap.dm +++ b/maps/sierra/sierra_overmap.dm @@ -14,13 +14,14 @@ "Charon" = list("nav_hangar_calypso"), "Guppy" = list("nav_hangar_guppy"), "Crucian" = list("nav_hangar_crucian"), + "Cyclopes" = list("nav_merc_dock"), //maps/antag_spawn/mercenary/mercenary.dm shuttle "Mule" = list("nav_merchant_out"), //../mods/maps/liberia/_map_liberia.dme shuttle, - "Desperado" = list("nav_merc_dock"), //antag_spawn/mercenary/mercenary_inf.dmm shuttle, "Reaper Gunboat" = list("nav_reaper_dock"), //../mods/maps/sentinel/_map_sentinel.dme shuttle, "SNZ Speedboat" = list("nav_snz_dock"), //../../mods/maps/farfleet/_map_farfleet.dme shuttle, "Skrellian Shuttle" = list("nav_deck3_skrellshuttle"), //away/skrellscoutship.dm shuttle, "Skrellian Scout" = list("nav_deck1_skrellscout"), //away/skrellscoutship.dm shuttle, - "SRV Venerable Catfish" = list("nav_deck3_catfish"), //away/verne shuttle, + "Alien Interceptor" = list("nav_deck1_vox_raider"), //maps/antag_spawn/vox/voxraider.dm shuttle, + "Rescue" = list("nav_ert_dock") //maps/antag_spawn/ert/ert.dm shuttle ) initial_generic_waypoints = list( diff --git a/maps/sierra/sierra_shuttles.dm b/maps/sierra/sierra_shuttles.dm index ad45a41240241..f454ecd2295cd 100644 --- a/maps/sierra/sierra_shuttles.dm +++ b/maps/sierra/sierra_shuttles.dm @@ -492,9 +492,9 @@ SIERRA_ESCAPE_POD(11) name = "In transit" landmark_tag = "nav_transit_blueriver" -/obj/shuttle_landmark/sierra/deck3/patrol - name = "Third Deck Starboard Dock" - landmark_tag = "nav_deck3_patrol" +/obj/shuttle_landmark/sierra/deck1/vox_raider + name = "Fourth Deck Starboard Dock" + landmark_tag = "nav_deck1_vox_raider" docking_controller = "admin_shuttle_dock" /obj/shuttle_landmark/sierra/deck3/skrellshuttle diff --git a/maps/sierra/structures/closets/security.dm b/maps/sierra/structures/closets/security.dm index 5006f04f7efd2..d7d598bfd270c 100644 --- a/maps/sierra/structures/closets/security.dm +++ b/maps/sierra/structures/closets/security.dm @@ -49,11 +49,11 @@ return list( /obj/item/clothing/suit/armor/pcarrier/medium/nt, /obj/item/clothing/head/helmet/nt, - /obj/item/clothing/head/beret/sec/corporate/warden, - /obj/item/clothing/head/beret/sec/navy/warden, - /obj/item/clothing/under/rank/warden/corp/alt, - /obj/item/clothing/under/rank/warden/navyblue, - /obj/item/clothing/under/rank/warden/navyblue/alt, + /obj/item/clothing/head/beret/sec/corporate/warden/sierra1, + /obj/item/clothing/head/beret/sec/navy/warden/sierra1, + /obj/item/clothing/under/rank/warden/corp/alt/sierra1, + /obj/item/clothing/under/rank/warden/navyblue/sierra1, + /obj/item/clothing/under/rank/warden/navyblue/alt/sierra1, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/clothing/glasses/hud/security/prot/aviators, diff --git a/maps/sierra/z1-z5_sierra.dmm b/maps/sierra/z1-z5_sierra.dmm index 5d47cda0ecf73..e502fd0711449 100644 --- a/maps/sierra/z1-z5_sierra.dmm +++ b/maps/sierra/z1-z5_sierra.dmm @@ -1,14457 +1,366272 @@ -"aag" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"aaq" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/computer/air_control{dir = 1; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensor_name = "Tank"; sensor_tag = "co2_sensor"},/obj/floor_decal/techfloor,/obj/floor_decal/corner/black{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"aau" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"aaB" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/sleeper{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"aaG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"aaI" = (/obj/floor_decal/corner/black/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"aaR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/warning/airlock{color = "#ff9900"; name = "\improper WAY TO SPACE"; pixel_y = 26},/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/industrial/hatch/yellow,/obj/floor_decal/spline/fancy/black{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"aaU" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light_switch{pixel_x = -10; pixel_y = 28},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/space) -"abj" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"abk" = (/obj/structure/handrail,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"abq" = (/obj/floor_decal/corner/black/half{dir = 4},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/space) -"abs" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/holoplant,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"abt" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/machinery/vending/wallmed2{dir = 4; pixel_x = -23},/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/space) -"aby" = (/obj/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = -32; pixel_y = -32},/obj/machinery/newscaster/security_unit{pixel_x = 32; pixel_y = -32},/obj/machinery/button/blast_door{desc = "A remote control-switch for the AI core maintenance door."; id_tag = "AICore"; name = "AI Core Shutter Control"; pixel_x = 24; pixel_y = 24},/obj/machinery/turretid/stun{check_synth = 1; control_area = list(/area/turret_protected/ai); name = "AI Chamber turret control"; pixel_x = -32; pixel_y = 32},/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/item/device/radio/intercom/custom{pixel_y = 22},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/greengrid,/area/turret_protected/ai) -"abB" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_room) -"abI" = (/obj/floor_decal/corner/purple/three_quarters{dir = 4},/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"abK" = (/obj/structure/sign/warning/radioactive{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/bombcloset,/turf/simulated/floor/plating,/area/space) -"abM" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"abP" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/tele_beacon,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"abW" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 10},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/folder/nt,/turf/simulated/floor/carpet/blue,/area/space) -"ace" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"acf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/space) -"act" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/blue,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"acw" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"acE" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "nuke_shuttle_dock_airlock_pump"},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/plating,/area/space) -"acJ" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/cell/high,/obj/item/cell/high,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"acN" = (/obj/structure/table/woodentable/walnut,/obj/machinery/recharger,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"acO" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/light/small,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"acP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"acR" = (/obj/floor_decal/techfloor/orange{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"acV" = (/obj/floor_decal/floordetail/edgedrain{dir = 1},/obj/floor_decal/corner/red{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"adh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"adp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"adx" = (/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"adA" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1443; id = "toxin_in"; use_power = 1},/obj/machinery/sparker{pixel_x = 21},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"adB" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/window/boron_reinforced,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"adC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"adI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"adK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"adM" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"adO" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{name = "Chief Engineer Maintenance"; secured_wires = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/heads/office/ce) -"adU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"adZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled,/area/space) -"aec" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"aee" = (/obj/random/obstruction,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"aeq" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"aex" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"aeI" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1starboard) -"aeO" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 4},/turf/space,/area/space) -"aeS" = (/obj/structure/table/standard,/obj/item/trash/cigbutt,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/space) -"aeU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_atmos_airlock"; name = "Engine Room Airlock Controlls"; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/structure/catwalk,/obj/structure/hygiene/drain,/obj/structure/hygiene/shower{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) -"aeW" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hop_road_shutters"; name = "HoP Line's Shutters"; opacity = 0},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"afc" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"afk" = (/obj/structure/table/marble,/obj/item/reagent_containers/food/condiment/small/peppermill{pixel_x = 3; pixel_y = 6},/obj/item/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 6},/obj/item/reagent_containers/food/condiment/small/sugar{pixel_y = 2},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"afn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"afq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"afz" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"afD" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/structure/flora/pottedplant/minitree,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"afE" = (/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2,/obj/floor_decal/corner/green/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"afQ" = (/obj/structure/disposalpipe/segment,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/light/spot{dir = 8},/obj/item/sticky_pad/random,/obj/item/modular_computer/tablet/lease/preset/command,/turf/simulated/floor/tiled/dark,/area/space) -"afT" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"afU" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 1},/turf/simulated/floor/airless,/area/space) -"aga" = (/obj/structure/table/marble,/obj/structure/window/reinforced,/obj/machinery/microwave{pixel_y = 4},/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"agA" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"agF" = (/obj/structure/table/woodentable/walnut,/obj/item/device/geiger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"agG" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"agI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet/red,/area/space) -"agK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/space) -"agL" = (/obj/item/stack/tile/carpet/fifty,/obj/item/stack/tile/carpetblue/fifty,/obj/item/stack/tile/carpetblue2/fifty,/obj/item/stack/tile/carpetblue3/fifty,/obj/item/stack/tile/carpetgreen/fifty,/obj/item/stack/tile/carpetmagenta/fifty,/obj/item/stack/tile/carpetorange/fifty,/obj/item/stack/tile/carpetpurple/fifty,/obj/item/stack/tile/carpetred/fifty,/obj/machinery/light{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/spline/plain/yellow{dir = 6},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"agR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"ahf" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"ahn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/grey/border{dir = 8},/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"ahx" = (/obj/structure/closet/walllocker{pixel_y = 28},/obj/item/stack/material/glass/reinforced/fifty,/obj/item/stack/material/glass/reinforced/fifty,/obj/item/stack/material/glass/reinforced/fifty,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ahy" = (/obj/machinery/computer/air_control{dir = 1; input_tag = "fuel_in"; name = "Fuel Supply Control"; output_tag = "fuel_out"; sensor_name = "Fuel Tank"; sensor_tag = "fuel_sensor"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"ahA" = (/obj/structure/hygiene/shower{dir = 4; pixel_x = -9},/obj/floor_decal/industrial/hatch/yellow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ahQ" = (/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/structure/bed/chair/pew/left,/turf/simulated/floor/grass/cut,/area/space) -"ahU" = (/obj/machinery/light/spot,/turf/simulated/wall/r_wall/prepainted,/area/space) -"aif" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"aim" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/cockpit) -"ait" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"aiu" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"aiw" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/rotating_alarm/security_alarm{dir = 8; pixel_x = 14},/turf/simulated/floor/tiled/dark,/area/space) -"aiA" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/walnut,/area/space) -"aiB" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/light/spot{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aiP" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/open,/area/medical/staging) -"aiQ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aiS" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/space) -"ajd" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/cell3) -"ajj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ajl" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"ajp" = (/obj/machinery/air_sensor{id_tag = "calypso_out"},/obj/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "calypso_shuttle_pump_out_external"},/obj/structure/catwalk,/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"aju" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{autoset_access = 0; name = "Security Checkpoint"; req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); secured_wires = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ajw" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"ajF" = (/obj/structure/table/rack,/obj/item/stack/material/wood/walnut/twentyfive,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"ajL" = (/obj/machinery/door/airlock/vault/bolted{autoset_access = 0; id_tag = "medsafe"; name = "Medical Safe Room"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"ajO" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"ajS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ajY" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/forestarboard) -"akd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"akf" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/door/blast/shutters{dir = 4; id_tag = "hangar_atmos_storage"; name = "Storage Shutters"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"akj" = (/obj/floor_decal/corner/green/bordercorner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"akl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"akm" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_4_pump"},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_4"; name = "escape pod four controller"; pixel_x = -20; tag_door = "escape_pod_4_hatch"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"akp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/bed/sofa/l/red,/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "bar_private_room_2"; name = "Lock"; pixel_x = -24; pixel_y = -7},/turf/simulated/floor/carpet/magenta,/area/space) -"aks" = (/obj/machinery/light,/obj/machinery/cryopod{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"akx" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"akz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/space) -"akC" = (/obj/structure/closet/coffin,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"akE" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 4},/obj/floor_decal/carpet/green{dir = 4},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_x = -6; pixel_y = 7},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_x = 5; pixel_y = 7},/obj/item/reagent_containers/food/drinks/teapot,/turf/simulated/floor/carpet/green,/area/space) -"akR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood/walnut,/area/space) -"akZ" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/office) -"alA" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"alE" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/wood/maple,/area/space) -"alI" = (/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"alJ" = (/turf/simulated/wall/prepainted,/area/hallway/primary/firstdeck/center) -"alN" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"alS" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/crate/bin,/obj/floor_decal/industrial/hatch/yellow,/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"alX" = (/obj/machinery/disperser/front{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"alY" = (/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1380; id_tag = "petrov_shuttle_inner"; name = "Petrov Interior Access"; req_access = list("ACCESS_PETROV_HELM")},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"alZ" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/atmos) -"amf" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/window/boron_reinforced{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"amj" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"amo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ams" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"amt" = (/obj/machinery/power/terminal{dir = 1},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"amx" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"amy" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"amA" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"amK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"amQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{dir = 4; name = "Adjutants Dorm"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"amR" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/item/folder/red,/turf/simulated/floor/tiled/dark,/area/space) -"amS" = (/obj/floor_decal/chapel{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"and" = (/obj/structure/bed/chair/rounded/beige{dir = 8},/turf/simulated/floor/carpet,/area/space) -"anf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange,/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"ang" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/corner,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"ani" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"ano" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/computer/shuttle_control/lift/medical,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"anu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"anv" = (/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/tiled/techfloor,/area/space) -"anD" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/space) -"anF" = (/turf/simulated/floor/plating,/area/space) -"anQ" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"anW" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"anX" = (/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"aoe" = (/obj/machinery/door/blast/regular{dir = 4; id_tag = "bsa_space"; name = "Unknown Compartament Hatch"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"aoh" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"aoj" = (/obj/floor_decal/corner/blue/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"aoq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/table/standard,/obj/item/material/ashtray/glass,/turf/simulated/floor/tiled/dark,/area/space) -"aoB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/space) -"aoC" = (/obj/floor_decal/corner/black/border,/turf/simulated/floor/tiled,/area/space) -"aoE" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/blue,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"aoG" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"aoH" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"aoN" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/space) -"aoX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"apa" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"api" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"apl" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/foreport) -"apm" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"apu" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/space) -"apv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"apB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"apD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"apE" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/airlock) -"apQ" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "hos_windows"},/turf/simulated/floor/plating,/area/space) -"apU" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 80},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"aqb" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/shieldgen,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"aqc" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 6},/obj/machinery/flasher{dir = 8; id_tag = "ai_core"; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aql" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"aqr" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/structure/flora/pottedplant/floorleaf,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"aqz" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"aqC" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light_switch{dir = 1; pixel_x = 9; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"aqH" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"aqI" = (/turf/simulated/wall/r_wall/prepainted,/area/teleporter) -"aqJ" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1port) -"aqL" = (/obj/structure/janitorialcart,/obj/item/mop,/obj/machinery/light/small,/obj/floor_decal/corner/purple{pixel_y = 1},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"aqT" = (/obj/floor_decal/corner/purple/border{dir = 6},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aqW" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"arb" = (/obj/structure/cable/green,/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/rnd/development) -"are" = (/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"arm" = (/obj/floor_decal/corner/paleblue,/obj/machinery/vending/snack,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"arq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/status_display{pixel_x = -32; pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"arC" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/floor_decal/industrial/hatch/yellow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white/monotile,/area/space) -"arG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"arM" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"arN" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id_tag = "xenobio2_vent"; name = "Chamber Vent"},/turf/simulated/floor/reinforced,/area/space) -"arQ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"asc" = (/obj/machinery/door/airlock/atmos{name = "Safe Room Atmospherics"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"asm" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/plating,/area/space) -"aso" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/tiled/techfloor,/area/space) -"asr" = (/obj/machinery/disposal,/obj/floor_decal/corner/lime/half{dir = 4},/obj/floor_decal/corner/lime{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"ast" = (/obj/structure/disposalpipe/segment,/obj/machinery/recharge_station,/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"asI" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/camera/network/command{c_tag = "Command - Starboard Hallway"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"atj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/entry) -"atl" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"ato" = (/obj/floor_decal/borderfloorblack,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"atp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"atq" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"atr" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/green/three_quarters{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Hydroponics - Aft"; dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"att" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"atw" = (/obj/machinery/airlock_sensor/airlock_interior{id_tag = "engine_airlock"; master_tag = "engine_airlock_interior_sensor"; pixel_x = -24; pixel_y = -24},/obj/machinery/light/spot{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"atx" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"atC" = (/obj/structure/closet/firecloset,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "virology_access"; name = "Virology Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_VIRO")},/obj/decal/cleanable/cobweb{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"atF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/power/emitter{desc = "A massive, heavy-duty industrial laser. This design is a fixed installation, capable of shooting in only one direction. It has a label on it reading 'SRV Petrov Analysis Lab.'"; name = "emitter (Petrov)"; req_lock_access = list("ACCESS_TORCH_PETROV_ANALYSIS")},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"atH" = (/obj/floor_decal/industrial/warning,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Isolation Cell Three"; dir = 4},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"atJ" = (/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"atK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"atR" = (/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "solar_port_pump"},/obj/machinery/light/small,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"atV" = (/obj/structure/table/marble,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/closet/shipping_wall/filled{pixel_y = 28},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"atW" = (/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"auk" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aul" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/psi_monitor,/obj/machinery/status_display{pixel_y = 32},/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"aun" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/head) -"aus" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"aut" = (/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"aux" = (/obj/structure/catwalk,/obj/machinery/atmospherics/binary/pump/high_power{target_pressure = 10000},/turf/simulated/floor/plating,/area/space) -"auE" = (/obj/structure/iv_stand,/obj/structure/roller_bed,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"auH" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "h2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/hydrogen,/area/engineering/atmos) -"auU" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"auV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/tiled,/area/space) -"auZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"avg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/space) -"avh" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/door/window/brigdoor/northleft{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"avi" = (/turf/unsimulated/mask,/area/hallway/primary/seconddeck/center) -"avj" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"avo" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_smes) -"avt" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "robotics_surgery"},/turf/simulated/floor/plating,/area/assembly/robotics) -"avJ" = (/obj/structure/sign/warning/hot_exhaust{dir = 1},/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"avL" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"avN" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"avQ" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"awb" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/machinery/newscaster{pixel_x = -28},/obj/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"awc" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"awl" = (/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"awr" = (/obj/structure/table/glass,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"awD" = (/obj/machinery/light{dir = 4},/obj/structure/table/rack,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Main Dock"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"awH" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/device/toner{pixel_y = 12},/obj/item/device/toner{pixel_y = 12},/obj/item/device/toner{pixel_y = 12},/obj/floor_decal/corner/yellow/half{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"awJ" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"awP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Chemistry"; sort_type = "Chemistry"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"awQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng2_outer"; name = "Third Deck Port Nacelle Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d3port) -"awR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"awT" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/disposalpipe/down{dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/space) -"awW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"awX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/corner/grey{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"axe" = (/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"axm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/space_heater{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/space) -"axn" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"axq" = (/obj/structure/table/standard,/obj/item/device/scanner/health,/obj/item/device/geiger,/obj/floor_decal/corner/black/three_quarters,/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"axt" = (/obj/machinery/suit_cycler/science,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/brown/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"axy" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"axC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/fore) -"axL" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"axO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"axP" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/corner/red/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"axW" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"axY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"axZ" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"ayj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"ayl" = (/obj/structure/table/standard,/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2{dir = 9},/obj/item/paper_bin,/obj/item/folder/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/blue2,/area/space) -"ayu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Central Hallway Two"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"ayw" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"ayy" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"ayB" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"ayD" = (/obj/structure/table/standard,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/spray/cleaner{pixel_x = 7; pixel_y = 8},/obj/machinery/body_scan_display{pixel_y = 24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"ayJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated/dark,/turf/simulated/floor/plating,/area/bridge/hallway) -"ayY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"azd" = (/obj/floor_decal/industrial/warning/fulltile,/obj/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/tiled/techmaint,/area/space) -"azi" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"azj" = (/obj/structure/table/rack,/obj/random/junkfood,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/starboard) -"azk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"azA" = (/obj/machinery/light/small,/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"azH" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/space) -"azQ" = (/obj/machinery/optable,/obj/decal/cleanable/blood,/turf/simulated/floor/tiled/white,/area/space) -"azU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/space) -"azX" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"aAi" = (/obj/floor_decal/carpet/blue2,/obj/structure/bed/padded,/obj/item/bedsheet/hop,/obj/landmark/start{name = "Head of Personnel"},/turf/simulated/floor/carpet/blue2,/area/space) -"aAp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"aAt" = (/obj/machinery/disposal,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aAw" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"aAz" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aAB" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"aAD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"aAE" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"aAJ" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/radiation,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"aAO" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/wallframe_spawn/reinforced_phoron/hull,/turf/simulated/floor/plating,/area/engineering/engine_room) -"aAP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aAU" = (/obj/structure/hygiene/shower{dir = 4; pixel_x = 5},/obj/floor_decal/steeldecal/steel_decals10,/obj/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/structure/curtain/open/shower,/obj/item/bikehorn/rubberducky,/obj/structure/closet/walllocker{pixel_x = -28},/obj/structure/hygiene/drain,/turf/simulated/floor/tiled/freezer,/area/space) -"aAY" = (/obj/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"aBc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"aBe" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/space,/area/space) -"aBk" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 1; display_name = "Port Dock A"; frequency = 1380; id_tag = "skipjack_shuttle_dock_airlock"; pixel_x = 32; pixel_y = -29; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/space) -"aBp" = (/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aBy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"aBA" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"aBC" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"aBD" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"aBE" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"aBJ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"aBK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/sign/deck/fourth{dir = 1; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"aBL" = (/obj/machinery/suit_storage_unit/atmos/alt,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "Engineering - EVA"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aBN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"aBP" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"},/turf/simulated/floor/plating,/area/engineering/engine_monitoring) -"aBR" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"aCb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light/spot{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"aCc" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aCf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 6},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"aCl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aCo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aCp" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table/standard,/obj/floor_decal/corner/grey/diagonal,/obj/random/clipboard,/obj/random/clipboard{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled,/area/rnd/research) -"aCs" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"aCu" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/cell1) -"aCw" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"aCD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet/orange,/area/space) -"aCE" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/blast/regular/open{id_tag = "eng_lockdown_emg1"; name = "Emergency Exit"},/turf/simulated/floor/plating,/area/space) -"aCF" = (/obj/shuttle_landmark/skipjack/deck3,/turf/space,/area/space) -"aCG" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"aCL" = (/obj/structure/table/standard,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aCM" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"aCX" = (/obj/machinery/flasher{pixel_x = 32; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"aDa" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"aDg" = (/obj/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"aDp" = (/obj/machinery/computer/modular/preset/civilian{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Central Stairwell"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aDt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"aDv" = (/obj/machinery/camera/network/second_deck{c_tag = "Chapel - Mass Driver"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aDB" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"aDF" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"aDI" = (/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"aDL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"aDM" = (/obj/structure/flora/seaweed,/obj/fluid_mapped,/obj/machinery/light{dir = 8},/turf/simulated/floor/beach/sand,/area/space) -"aDN" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/waterstore) -"aDT" = (/obj/structure/bed/chair/armchair/blue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blue,/area/space) -"aDY" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"aEa" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"aEe" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/escapepod{dir = 4; id_tag = "escape_pod_3_berth_hatch"; name = "Escape Pod Three"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"aEf" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/corner/white{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"aEv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aEy" = (/obj/machinery/door/airlock/maintenance{autoset_access = 0; name = "Security Maintenance"; req_access = list("ACCESS_SECURITY")},/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aEz" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "bsa_door2"; name = "Obstruction Field Disperser Blast Door"; pixel_x = 24; req_access = list("ACCESS_GUN")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aEI" = (/obj/decal/cleanable/blood/oil,/obj/machinery/atmospherics/pipe/cap/visible/fuel{dir = 1},/obj/machinery/atmospherics/pipe/cap/visible/fuel,/turf/simulated/floor/plating,/area/space) -"aEL" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/structure/bed/chair/padded/red,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"aEM" = (/obj/structure/bed/chair/office/purple,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"aFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/space) -"aFi" = (/obj/machinery/door/airlock/engineering{dir = 4; name = "Auxiliary Power Storage"; req_access = newlist()},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/auxpower) -"aFq" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"aFs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"aFz" = (/obj/structure/table/standard,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen{pixel_x = 4; pixel_y = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/item/sticky_pad/random,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"aFE" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/space) -"aFM" = (/obj/structure/railing/mapped{dir = 4},/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"aFO" = (/obj/structure/girder,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/curtain/bed,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"aFR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{dir = 4; name = "Restroom"},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/head) -"aFT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"aFW" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/table/standard,/obj/item/device/flashlight/lamp{pixel_x = 5; pixel_y = -4},/obj/item/device/camera,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"aGc" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/button/ignition{dir = 8; id_tag = "Incinerator"; pixel_x = 24; pixel_y = 6},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "incinerator_access_control"; name = "Incinerator Access Console"; pixel_x = 24; pixel_y = -6; tag_exterior_door = "incinerator_airlock_exterior"; tag_interior_door = "incinerator_airlock_interior"},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"aGh" = (/obj/structure/railing/mapped,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/l3closet/scientist,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aGj" = (/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/glass/civilian{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"aGk" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/floor_decal/corner/green{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"aGs" = (/obj/machinery/jukebox/custom_tape/old,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"aGH" = (/obj/structure/table/woodentable/walnut,/obj/machinery/light/small{dir = 4},/obj/item/storage/fancy/crayons,/turf/simulated/floor/wood/ebony,/area/space) -"aGI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"aGJ" = (/obj/machinery/disposal,/obj/floor_decal/corner/yellow/three_quarters{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 22},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"aGP" = (/obj/structure/lattice,/obj/structure/closet/crate,/turf/simulated/open,/area/maintenance/firstdeck/aftstarboard) -"aGQ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"aGT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{name = "Lounge"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"aHg" = (/obj/structure/rubble,/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"aHo" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/modular/preset/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"aHE" = (/obj/floor_decal/corner/black/full,/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/dark,/area/space) -"aHK" = (/obj/machinery/atmospherics/unary/tank/air,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"aHL" = (/obj/machinery/computer/modular/preset/aislot/sysadmin{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"aHM" = (/turf/simulated/wall/r_wall/prepainted,/area/tcommsat/chamber) -"aHV" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aIe" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"aIi" = (/obj/machinery/door/airlock/research{autoset_access = 0; frequency = 1379; id_tag = "xeno_airlock_outer"; name = "Xenobiology Access"; req_access = list("ACCESS_RESEARCH")},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aIl" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/light_switch{pixel_x = -6; pixel_y = 28},/obj/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wood/yew,/area/space) -"aIp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aIq" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/foreport) -"aIC" = (/obj/floor_decal/spline/plain/black{dir = 1},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"aIH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"aIL" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"aIM" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aIO" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/bed/chair/padded/blue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"aIS" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/spot{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/dogbed,/mob/living/simple_animal/passive/corgi/puppy,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"aIT" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/civilian{id_tag = "old_maintaince_privatedorm_toilet"; name = "Toilet"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aIU" = (/turf/simulated/floor/plating,/area/rnd/misc_lab) -"aIY" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/r_wall/hull,/area/space) -"aJb" = (/turf/simulated/wall/prepainted,/area/maintenance/seconddeck/forestarboard) -"aJd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"aJi" = (/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"aJv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aJD" = (/obj/structure/table/steel,/obj/machinery/button/blast_door{id_tag = "concheckwindow"; name = "Checkpoint Shutter Control"; pixel_x = 5; pixel_y = 6},/obj/machinery/button/blast_door{id_tag = "outercheckwindow"; name = "Outer Checkpoint Shutter Control"; pixel_x = 5; pixel_y = -3},/obj/structure/cable/green,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"aJG" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/bamboo,/area/space) -"aJI" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"aJJ" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 2},/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"aJL" = (/obj/machinery/space_heater,/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aKa" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{name = "Cryo Storage"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/sleep/cryo) -"aKe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"aKh" = (/obj/machinery/door/window/westright{dir = 4; name = "Xenoflora Environment"; req_access = newlist()},/obj/machinery/door/window/westleft{name = "Xenoflora Environment"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/xenoflora) -"aKj" = (/obj/floor_decal/corner/green{dir = 1},/obj/structure/table/standard,/obj/item/device/flashlight/lamp/lava/cyan,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) -"aKm" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "PetrovBiohazard"; name = "Petrov Biohazard Shutters"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"aKn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/space) -"aKq" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"aKt" = (/obj/structure/iv_stand,/obj/machinery/body_scan_display{pixel_y = 24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"aKy" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"aKG" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"aKQ" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/machinery/papershredder,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"aKX" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/wood/bamboo,/area/space) -"aLc" = (/obj/structure/bed/chair/office/comfy/purple{dir = 1},/obj/landmark/start{name = "Research Director"},/obj/structure/curtain/bed{pixel_y = 32},/turf/simulated/floor/wood/mahogany,/area/space) -"aLi" = (/obj/machinery/cooker/oven,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"aLo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light_construct{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/space) -"aLw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"aLA" = (/obj/structure/table/standard,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aLB" = (/obj/machinery/door/airlock/highsecurity{dir = 4; name = "Armory"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aLQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"aLS" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"aMo" = (/turf/simulated/floor/carpet/purple,/area/chapel/office) -"aMp" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"aMq" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/sign/thera{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"aMC" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"aMG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"aMI" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aML" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"aNn" = (/obj/structure/bed/chair/office/comfy/blue,/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"aNs" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"aNv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"aND" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"aNM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/incinerator) -"aNR" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/table/glass,/obj/machinery/light_construct{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"aNW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"aOa" = (/obj/floor_decal/industrial/hatch/red,/turf/simulated/floor/reinforced,/area/space) -"aOd" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"aOg" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/space) -"aOj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"aOn" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{id_tag = "BSD_windows"; name = "Bluespace Chamber Lockdown"},/turf/simulated/floor/plating,/area/space) -"aOo" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"aOt" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/power/apc/high{name = "north bump"; pixel_y = -24},/obj/structure/cable/green,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"aOx" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"aOA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"aOH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"aPn" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/spline/fancy/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"aPv" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"aPw" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"aPH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/door/airlock/engineering{name = "First Deck Substation"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/firstdeck) -"aPJ" = (/turf/simulated/wall/titanium,/area/shuttle/petrov/eva) -"aPS" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/uniform_vendor{dir = 8; icon_state = "robotics"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aPV" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/status_light{id_tag = "ReacEng3"; name = "Deck One Starboard status indicator"; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"aPW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"aPY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"aQb" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled,/area/space) -"aQd" = (/obj/structure/railing/mapped,/obj/machinery/space_heater,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"aQi" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled,/area/rnd/locker) -"aQn" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"aQp" = (/obj/machinery/atmospherics/unary/tank/air,/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"aQq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/ebony,/area/space) -"aQt" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"aQu" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"aQC" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"aQS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad/longrange,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/door/window/brigdoor/westleft{autoset_access = 0; dir = 2; req_access = list("ACCESS_EXPEDITION_SHUTTLE_HELM")},/obj/overmap/visitable/ship/landable/exploration_shuttle,/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"aRa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"aRe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"aRf" = (/obj/structure/table/rack{dir = 8},/obj/random/action_figure,/obj/random/action_figure,/obj/floor_decal/techfloor{dir = 9},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/space) -"aRn" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"aRo" = (/turf/simulated/wall/r_wall/prepainted,/area/turret_protected/ai_upload) -"aRp" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"aRr" = (/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/hydroponics) -"aRv" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 4},/obj/machinery/door/window/southright{dir = 4; name = "Research and Development Desk"; req_access = newlist()},/obj/machinery/door/window/northleft{autoset_access = 0; dir = 8; name = "Research and Development Desk"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/plating,/area/rnd/development) -"aRx" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"aRB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/material/knife/table/plastic,/obj/item/material/knife/table/plastic,/obj/item/material/knife/table/plastic,/obj/item/material/kitchen/utensil/fork/plastic,/obj/item/material/kitchen/utensil/fork/plastic,/obj/item/material/kitchen/utensil/fork/plastic,/obj/item/material/kitchen/utensil/spoon/plastic,/obj/item/material/kitchen/utensil/spoon/plastic,/obj/item/material/kitchen/utensil/spoon/plastic,/obj/item/material/kitchen/utensil/foon/plastic,/obj/item/material/kitchen/utensil/foon/plastic,/obj/item/material/kitchen/utensil/foon/plastic,/obj/item/material/kitchen/rollingpin,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aRD" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/corner/green/border,/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"aRE" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"aRF" = (/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"aRH" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"aRR" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/closet/crate,/obj/random/tank,/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"aSf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/red/bordercorner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 8},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"aSg" = (/obj/structure/closet/firecloset,/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/briefcase/inflatable,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"aSj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Chief Medical Officer"; sort_type = "Chief Medical Officer"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"aSu" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"aSx" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"aSG" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aSH" = (/turf/simulated/wall/prepainted,/area/assembly/robotics) -"aSV" = (/obj/random/trash,/obj/random/toolbox,/obj/item/beartrap,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"aSX" = (/turf/simulated/wall/r_wall/hull,/area/vacant/prototype/engine) -"aSY" = (/obj/structure/towel/fitness,/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"aTa" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) -"aTd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/blue/bordercorner2,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"aTf" = (/obj/item/storage/secure/safe{pixel_y = 32},/turf/simulated/floor/wood/yew,/area/space) -"aTh" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"aTm" = (/obj/structure/railing/mapped{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"aTn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"aTp" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/machinery/light/spot,/obj/item/device/camera,/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 10},/turf/simulated/floor/carpet/blue,/area/space) -"aTq" = (/obj/floor_decal/corner/grey{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"aTv" = (/obj/machinery/light{dir = 8},/obj/structure/adherent_pylon,/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"aTE" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"aTI" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters/open{id_tag = "med_crit1"; name = "Infirmary Staging Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"aTK" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/locker) -"aTL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/item/bodybag,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"aTM" = (/obj/floor_decal/industrial/warning/cee,/obj/machinery/airlock_sensor{id_tag = "sd_starboard_sensor"; master_tag = "sd_starboard"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"aUd" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"aUf" = (/obj/structure/railing/mapped,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"aUh" = (/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"aUm" = (/obj/structure/table/woodentable_reinforced/mahogany/walnut,/obj/floor_decal/spline/fancy/black,/obj/item/flame/candle,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"aUp" = (/obj/machinery/button/blast_door{id_tag = "ai_upload_blast"; name = "Cyborg Upload Blast Doors"; pixel_y = 24; req_access = list("ACCESS_AI_UPLOAD")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"aUt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"aUy" = (/obj/structure/bed/padded,/obj/item/bedsheet/yellow,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"aUF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics) -"aUN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"aUP" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"aUU" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"aUX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/button/alternate/door/bolts{dir = 1; id_tag = "toilet_eng_1"; name = "Lock"; pixel_y = -24},/turf/simulated/floor/tiled/freezer,/area/space) -"aVb" = (/obj/item/inflatable_duck{name = "Chief of Astronavigation"},/obj/item/device/radio/off,/obj/item/clothing/head/soft/solgov/fleet{pixel_x = -8; pixel_y = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"aVe" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aVf" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/random_multi/single_item/space_rabbit,/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"aVj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"aVn" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/techfloor{dir = 1},/obj/structure/sign/warning/fire{pixel_y = 32},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = -24; pixel_y = -8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/incinerator) -"aVq" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aVs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"aVI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"aVL" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"aVO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/green/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"aVQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"aVS" = (/obj/structure/table/rack,/obj/item/aiModule/asimov,/obj/item/aiModule/paladin,/obj/item/aiModule/robocop,/obj/item/aiModule/solgov_aggressive,/obj/item/aiModule/solgov,/obj/item/aiModule/freeformcore,/obj/floor_decal/techfloor{dir = 1},/obj/structure/window/reinforced,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{autoset_access = 0; base_state = "right"; dir = 8; icon_state = "right"; name = "Core Modules"; req_access = list("ACCESS_CAPTAIN")},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"aVZ" = (/obj/machinery/space_heater,/obj/floor_decal/techfloor/orange{dir = 6},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"aWr" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"aWu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"aWD" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"aWI" = (/obj/structure/stairs/west,/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aWQ" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"aWS" = (/obj/machinery/conveyor{dir = 8; id = "bsa"},/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"aWX" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/tech_loot,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"aXc" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"aXe" = (/obj/floor_decal/corner/paleblue/full,/obj/structure/flora/pottedplant/minitree,/obj/machinery/light_switch{dir = 4; on = 1; pixel_x = -25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"aXh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/single/color/cable_coil,/turf/simulated/floor/plating,/area/space) -"aXj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"aXo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"aXq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftport) -"aXz" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/space) -"aXB" = (/obj/floor_decal/borderfloorwhite{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"aXK" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"aXM" = (/obj/structure/table/rack/dark,/obj/item/stack/medical/splint,/obj/item/stack/medical/splint,/obj/item/stack/medical/splint,/obj/item/stack/medical/splint,/obj/item/stack/medical/advanced/bruise_pack{pixel_x = -7; pixel_y = -6},/obj/item/stack/medical/advanced/bruise_pack{pixel_x = -7},/obj/item/stack/medical/advanced/bruise_pack{pixel_x = -7; pixel_y = 9},/obj/item/stack/medical/advanced/ointment{pixel_x = 7; pixel_y = -6},/obj/item/stack/medical/advanced/ointment{pixel_x = 7},/obj/item/stack/medical/advanced/ointment{pixel_x = 7; pixel_y = 9},/obj/item/storage/firstaid/surgery,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/defibrillator,/obj/floor_decal/spline/plain/paleblue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"aXS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"aXW" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"aYb" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/sign/deck/second{dir = 8; pixel_x = 32; pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset/anchored,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"aYe" = (/obj/shuttle_landmark/skipjack/deck2,/turf/space,/area/space) -"aYp" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/galley) -"aYv" = (/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"aYw" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/structure/table/woodentable/maple,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_x = -4; pixel_y = 7},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_x = 5},/obj/item/reagent_containers/food/condiment/small/packet/sugar{pixel_x = -12; pixel_y = 2},/turf/simulated/floor/wood/bamboo,/area/space) -"aYx" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aYy" = (/obj/structure/bed/chair/padded/purple{dir = 1},/obj/floor_decal/corner/purple/bordercee{dir = 4},/obj/floor_decal/industrial/traffic/corner{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"aYz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"aYA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/airlock_sensor/airlock_interior{frequency = 1331; id_tag = "guppy_shuttle_interior_sensor"; master_tag = "guppy_shuttle"; name = "interior access button"; pixel_x = -22; pixel_y = 32; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"aYE" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/reinforced,/area/space) -"aYH" = (/obj/item/hand_labeler{pixel_x = -2; pixel_y = -3},/obj/item/clothing/glasses/science,/obj/item/reagent_containers/dropper{pixel_x = -4; pixel_y = 8},/obj/item/stack/material/phoron{amount = 5},/obj/floor_decal/corner/beige/three_quarters,/obj/floor_decal/corner/yellow/border{dir = 10},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aYJ" = (/obj/machinery/computer/rdconsole/core{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"aYR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/center) -"aYW" = (/obj/machinery/computer/modular/preset/civilian{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"aYX" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"aZj" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/dark,/area/space) -"aZC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"aZJ" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"aZX" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"bal" = (/obj/structure/bed/chair/office/comfy/teal{dir = 4},/obj/floor_decal/corner/yellow/half{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/quartermaster/office) -"baB" = (/obj/floor_decal/borderfloorblack/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"baE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"baF" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -6; pixel_y = 13},/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"baI" = (/obj/floor_decal/corner/black/full,/obj/structure/flora/pottedplant/decorative,/obj/machinery/light/spot{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_x = -9; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"baK" = (/obj/structure/bed/chair/office/comfy/red,/turf/simulated/floor/tiled/dark,/area/space) -"baT" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/corner/black/mono,/obj/item/storage/box/cola/sodawater,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"baW" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/meter,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"bbd" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"bbg" = (/obj/machinery/vending/cigarette,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white/monotile,/area/space) -"bbh" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"bbq" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"bby" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"bbD" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/obj/machinery/camera/network/mining{c_tag = "Mining - Warehouse"; dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"bbI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"bbO" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch{id_tag = "tox_airlock_interior"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bbV" = (/obj/floor_decal/corner/black/full,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"bbX" = (/obj/machinery/atmospherics/omni/filter{tag_east = 1; tag_north = 8; tag_south = 2},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"bbZ" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/woodentable/walnut,/obj/item/towel/random,/obj/item/towel/random,/obj/item/towel/random,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"bca" = (/obj/structure/bed/chair/wood/maple{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/grass/cut,/area/space) -"bce" = (/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"bci" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"bck" = (/obj/structure/table/rack,/obj/item/stock_parts/power/apc/buildable,/obj/item/stock_parts/power/apc/buildable,/obj/item/stock_parts/power/apc/buildable,/obj/item/stock_parts/console_screen,/obj/item/stock_parts/console_screen,/obj/item/stock_parts/console_screen,/obj/item/stock_parts/keyboard,/obj/item/stock_parts/keyboard,/obj/item/stock_parts/keyboard,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"bcs" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/full,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/space) -"bcu" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bcv" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bcy" = (/obj/structure/window/basic,/obj/machinery/door/window{autoset_access = 0; dir = 8},/obj/structure/curtain/open/privacy,/obj/structure/window/basic{dir = 4},/obj/item/stool/padded,/obj/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"bcI" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"bcJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"bcK" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/cell/high,/obj/item/device/multitool,/obj/item/stack/cable_coil,/turf/simulated/floor/reinforced,/area/space) -"bcL" = (/turf/simulated/open,/area/rnd/research) -"bcP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/outline/grey,/obj/machinery/space_heater,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"bcV" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"bcY" = (/obj/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"bda" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"bdj" = (/obj/structure/bed/sofa/m/blue{dir = 4},/obj/floor_decal/carpet/red{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/carpet/red,/area/space) -"bdv" = (/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"bdw" = (/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/reinforced,/area/vacant/monitoring) -"bdy" = (/obj/machinery/mass_driver{dir = 4; id_tag = "chapel"},/turf/simulated/floor/tiled/techfloor/grid,/area/chapel/main) -"bdz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"bdQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"beb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"bed" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bek" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/random/obstruction,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"bel" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"beq" = (/obj/machinery/light/spot{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"bes" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"beu" = (/obj/structure/hygiene/drain/bath,/obj/structure/hygiene/shower{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"bev" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/medical/staging) -"beA" = (/obj/structure/bed/chair/office/comfy/brown{dir = 1},/obj/landmark/start{name = "Councelor"},/turf/simulated/floor/tiled/dark,/area/space) -"beC" = (/obj/machinery/door/airlock/hatch/maintenance{autoset_access = 0; dir = 4; name = "Third Deck Port Nacelle"; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"beJ" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{pixel_y = 24},/obj/item/reagent_containers/glass/beaker/vial,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/white,/area/space) -"beN" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"beQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"beV" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"bfp" = (/obj/structure/closet/l3closet/scientist,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled,/area/space) -"bfq" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"bfG" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"bfI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"bfL" = (/obj/structure/cable,/obj/machinery/power/apc/critical{name = "south bump"; pixel_y = -21},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/space) -"bfS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"bfT" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"bgh" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bgl" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"bgn" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"bgp" = (/obj/structure/window/reinforced/polarized{id = "cap_room_window"},/obj/structure/window/reinforced/polarized{dir = 4; id = "cap_room_window"},/obj/structure/bed/padded,/obj/item/bedsheet/captain,/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 6},/turf/simulated/floor/carpet/blue,/area/space) -"bgw" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/space) -"bgx" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"bgD" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/plating,/area/space) -"bgG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"bgK" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass/cut,/area/space) -"bgP" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"bgZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"bhb" = (/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"bhg" = (/obj/machinery/atmospherics/tvalve{dir = 1; icon_state = "map_tvalve1"; state = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"bhi" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"bhA" = (/obj/structure/table/steel,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"bhB" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/table/woodentable/walnut,/obj/machinery/chemical_dispenser/bar_soft/full{pixel_y = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"bhO" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "hangar_ts_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"bhT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"bia" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"bib" = (/obj/structure/railing/mapped,/obj/floor_decal/corner/green/three_quarters{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bih" = (/obj/machinery/disposal,/obj/machinery/light{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"bii" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"bij" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"bin" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"biw" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/structure/catwalk,/turf/simulated/open,/area/space) -"biE" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"biG" = (/obj/structure/bed/chair/padded/purple{dir = 8},/obj/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"biJ" = (/obj/structure/window/basic{dir = 8},/obj/structure/reagent_dispensers/water_cooler{dir = 1},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/corner/black/three_quarters,/obj/floor_decal/corner/red/bordercorner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/floor_decal/corner/red/border,/obj/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"biK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"biR" = (/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"biZ" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/space) -"bjd" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/junkfood,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"bje" = (/obj/structure/bookcase/manuals/xenoarchaeology,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"bjf" = (/obj/floor_decal/corner/black/full,/obj/structure/table/steel_reinforced,/obj/item/hand_labeler,/obj/machinery/light/spot{dir = 8},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/space) -"bjg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"bjo" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"bjq" = (/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/engineering{name = "Quick Access Warehouse"},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bjs" = (/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hydroponics) -"bjB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/machinery/button/blast_door{dir = 1; id_tag = "portaux_warehouse"; name = "Warehouse Shutters Control"; pixel_y = -25; req_access = list("ACCESS_CARGO")},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lightgrey/bordercorner2,/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Fore Hallway Port"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"bjD" = (/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bjG" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"bjI" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch{frequency = 1379; id_tag = "engine_airlock_outer"; name = "Engine Airlock Exterior"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_monitoring) -"bjJ" = (/obj/floor_decal/corner/red,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bjR" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1port) -"bjU" = (/obj/machinery/light/spot,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"bjY" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/decal/cleanable/cobweb2,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"bka" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bkg" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"bkh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"bkj" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/fuelbay) -"bkz" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"bkN" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/black/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"bkQ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"bkT" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"bkU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"bld" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"bli" = (/obj/machinery/computer/ship/helm,/obj/machinery/button/blast_door{id_tag = "calypso_shutters"; name = "Protective Shutters Control"; pixel_x = 7; pixel_y = 34},/obj/machinery/button/blast_door{id_tag = "sensor_shutters"; name = "Protective Sensor Control"; pixel_x = -6; pixel_y = 34},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/blast_door{id_tag = "cockpit_shutters"; name = "Protective Cockpit Control"; pixel_x = -6; pixel_y = 24},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"blw" = (/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"blA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/assembly/robotics) -"blD" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"blG" = (/obj/structure/bed/chair/padded/teal{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"blM" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"bmc" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -21; pixel_y = -10},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light,/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"bmi" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"bmk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/monitoring) -"bml" = (/obj/structure/table/rack{dir = 8},/obj/item/tank/oxygen_emergency_double,/obj/item/tank/oxygen_yellow,/obj/item/tank/oxygen_yellow,/obj/item/tank/jetpack,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"bmr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bmB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"bmG" = (/obj/structure/bed/chair/padded/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"bne" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"bnf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bni" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bnr" = (/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"bnt" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood/walnut,/area/space) -"bnz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"bnI" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"bnQ" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/office) -"boa" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"bon" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/washing_machine,/obj/machinery/light_switch{dir = 4; pixel_x = -21},/turf/simulated/floor/tiled/freezer,/area/space) -"boo" = (/obj/structure/railing/mapped,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/grass/cut,/area/space) -"bop" = (/obj/floor_decal/corner/black/full,/obj/machinery/vending/coffee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"boz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"boE" = (/obj/structure/railing/mapped,/turf/simulated/floor/reinforced,/area/space) -"boN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/corner/purple,/obj/floor_decal/corner/purple{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled,/area/space) -"boO" = (/obj/structure/inflatable/wall,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"boS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"boT" = (/obj/structure/bed/padded,/obj/item/bedsheet/medical,/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"bpD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/maple,/area/space) -"bpK" = (/obj/structure/table/standard,/obj/item/towel/random,/obj/item/reagent_containers/spray/cleaner{pixel_x = -6; pixel_y = 8},/obj/random/soap,/obj/item/lipstick/random{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"bpR" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_airlock"; name = "Engine Room Airlock Controlls"; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bpU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/highsecurity{name = "Obstruction Field Disperser"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"bpY" = (/obj/structure/table/rack,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/stack/material/plasteel/fifty,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"bqj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/space) -"bqn" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_wall,/area/space) -"bqo" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{name = "Central Stairwell"},/turf/simulated/floor/tiled/monotile,/area/space) -"bqr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/center) -"bqs" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bqv" = (/obj/machinery/light{dir = 8},/obj/floor_decal/corner/blue/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/account_database{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"bqA" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge) -"bqD" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/mahogany,/area/space) -"bqG" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "firing_range_outer"; name = "Firing Range Airlock"},/obj/machinery/access_button/airlock_exterior{desc = "Security access required."; dir = 4; master_tag = "firing_range"; name = "exterior access button"; pixel_x = -10; pixel_y = 24; req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY")},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"bqJ" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp/green,/obj/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"bqL" = (/obj/machinery/radio_beacon,/obj/floor_decal/industrial/outline/blue,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"bqN" = (/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/machinery/power/apc/super/critical{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"bqO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"bqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"bqW" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"bqX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner/green,/turf/simulated/floor/tiled,/area/hydroponics) -"brh" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/spot,/obj/machinery/portable_atmospherics/canister/hydrogen{start_pressure = 14999},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"brq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) -"brx" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"brA" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"brB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"brE" = (/obj/random/trash,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"brF" = (/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"brI" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/table/standard,/obj/item/material/ashtray/bronze,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"brU" = (/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3port) -"brW" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"bso" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"bsB" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "toxin_lab_access"; name = "Toxin Lab Access Console"; pixel_y = 24; req_access = list("ACCESS_TOX_STORAGE")},/obj/machinery/vending/phoronresearch,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bsH" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"bsO" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"bsQ" = (/obj/structure/morgue{dir = 2},/obj/floor_decal/industrial/outline/blue,/obj/structure/closet/walllocker{pixel_y = 28},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"bsR" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"bsS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"bsU" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bsV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_fore_starboard_pump"},/obj/floor_decal/industrial/warning/cee,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"bsZ" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/forestarboard) -"btb" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"btc" = (/obj/paint/red,/obj/paint_stripe/red,/turf/simulated/wall/r_titanium,/area/space) -"btf" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bts" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Fore Hallway Port"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"btB" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/bed/chair/office/comfy/blue{dir = 8},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood/walnut,/area/space) -"btE" = (/obj/floor_decal/corner/purple/three_quarters{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"btF" = (/obj/structure/closet/cabinet,/obj/item/book/manual/engineering_singularity_safety,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"btP" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"btR" = (/obj/structure/catwalk,/obj/machinery/shieldwallgen,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/space) -"btU" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"btX" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/titanium,/area/guppy_hangar/start) -"bua" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "td_port_outer"; name = "Third Deck Port Airlock Access"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"buf" = (/obj/structure/window/basic{dir = 8},/obj/machinery/vending/fitness,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/black/three_quarters{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"buq" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "specops_dock_inner"; name = "Docking Port Airlock"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"buC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"buM" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"buN" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/item/storage/mirror{pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/space) -"buO" = (/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled,/area/space) -"buQ" = (/obj/structure/cable/cyan,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"buV" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"buY" = (/obj/floor_decal/corner/black/full,/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/machinery/rotating_alarm/security_alarm{dir = 8; pixel_x = 14},/turf/simulated/floor/tiled/dark,/area/space) -"buZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/rotating_alarm/supermatter{dir = 8; pixel_x = 14},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"bva" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 8},/obj/item/device/eftpos{eftpos_name = "Quartermaster EFTPOS scanner"},/turf/simulated/floor/tiled,/area/space) -"bvn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"bvp" = (/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"bvt" = (/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"bvw" = (/obj/decal/cleanable/blood,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/foreport) -"bvA" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"bvC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/steeldecal/steel_decals_central6{dir = 1},/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bvG" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green,/obj/floor_decal/carpet/red,/turf/simulated/floor/carpet/red,/area/space) -"bvK" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green,/obj/machinery/power/terminal,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bvN" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small{dir = 8},/obj/machinery/constructable_frame/computerframe,/turf/simulated/floor/plating,/area/space) -"bvW" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/atm{pixel_y = -32},/turf/simulated/floor/tiled,/area/space) -"bwb" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "solar_starboard_outer"; name = "Engineering External Access"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bwe" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"bwg" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"bwn" = (/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/cell/high,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Materials Storage"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bwo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/aftport) -"bwp" = (/obj/structure/closet/crate,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"bwr" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"bwv" = (/turf/simulated/wall/prepainted,/area/hallway/primary/thirddeck/fore) -"bwJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/space) -"bwM" = (/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/open,/area/space) -"bwQ" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/white/monotile,/area/space) -"bwS" = (/obj/machinery/atmospherics/unary/tank/air{dir = 8},/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/space) -"bxa" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_1_berth_hatch"; name = "Escape Pod One"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"bxb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"bxd" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/purple/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/space) -"bxl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atm{pixel_x = 32},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/space) -"bxn" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"bxp" = (/obj/floor_decal/corner/grey/full,/obj/machinery/media/music_writer{pixel_x = -32},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"bxy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"bxD" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/machinery/meter,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bxG" = (/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/scanner/spectrometer/adv,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/white,/area/medical/staging) -"bxH" = (/obj/decal/cleanable/dirt,/obj/item/ore/iron,/obj/structure/cable/cyan,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"bxO" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/valve/digital{name = "Internal connector to thrusters"},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"bxP" = (/obj/structure/table/rack,/obj/item/storage/box/lights/mixed,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"bxQ" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/head) -"bxS" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"bxZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"byc" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"byf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"byi" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"byr" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/security/brig) -"byA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/space) -"byK" = (/obj/structure/dispenser/oxygen,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"byL" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/techfloor{dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"byQ" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/vending/wallmed1{dir = 4; name = "Emergency NanoMed"; pixel_x = -24},/obj/structure/table/steel,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/roller_bed,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"byY" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) -"bzb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"bzi" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "hos_windows"},/turf/simulated/floor/plating,/area/space) -"bzm" = (/obj/floor_decal/corner/black/bordercorner{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/floor_decal/corner/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"bzt" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"bzA" = (/obj/paint/black,/obj/paint{color = "#353a42"},/turf/simulated/wall/ocp_wall,/area/space) -"bzE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bzH" = (/obj/machinery/power/apc/super/critical{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/cyan,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bzN" = (/obj/structure/lattice,/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bzP" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/floor_decal/industrial/outline/grey,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bAs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"bAt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{autoset_access = 0; name = "Security Maintenance"; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"bAu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"bAw" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 8},/turf/simulated/open,/area/space) -"bAx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Chief Engineer"; sort_type = "Chief Engineer"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"bAC" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/foreport) -"bAD" = (/obj/structure/catwalk,/obj/structure/ladder/up,/turf/simulated/open,/area/space) -"bAE" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/corner/green/half,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"bAL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/r_wall/prepainted,/area/space) -"bAO" = (/obj/structure/closet/crate/freezer,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/random/firstaid,/obj/random/firstaid,/obj/random/medical,/obj/random/medical,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"bAX" = (/obj/machinery/light{dir = 4},/obj/structure/bookcase/manuals/xenoarchaeology,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 6},/turf/simulated/floor/carpet/purple,/area/space) -"bAZ" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/camera/network/research{c_tag = "Research - Toxins Chamber Control"; dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bBa" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/closet/emcloset,/obj/machinery/camera/network/command{c_tag = "Command - Port Bridge Entry"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"bBf" = (/obj/structure/railing/mapped,/obj/floor_decal/spline/plain/black{dir = 10},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"bBp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"bBr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"bBv" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bBL" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"bBQ" = (/obj/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"bBS" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"bBT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/glass/security{name = "Suits Storage"},/turf/simulated/floor/tiled/monotile,/area/space) -"bBU" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"bCj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bCk" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/open,/area/solar/port) -"bCl" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bCu" = (/obj/paint/hull,/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/wall/ocp_wall,/area/vacant/prototype/engine) -"bCN" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bCP" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/structure/cable{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/structure/lattice,/obj/structure/disposalpipe/down{dir = 2},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"bCU" = (/turf/simulated/wall/prepainted,/area/quartermaster/expedition/eva) -"bCV" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"bDc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bDm" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"bDn" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/waterstore) -"bDp" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/computer/air_control{input_tag = "CO24p_in"; name = "Propellent Supply Control"; output_tag = "CO24p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngCO24"},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"bDs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"bDA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"bDC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor{dir = 8},/obj/structure/curtain/open/bed,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"bDH" = (/obj/machinery/stasis_cage,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bDI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"bDK" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"bDU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/button/blast_door{id_tag = "xenobioa1"; name = "Containment Blast Doors"; pixel_x = -6; pixel_y = 21; req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"bDX" = (/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"bEf" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"bEl" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/spline/fancy/black,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"bEn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"bEp" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bEx" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"bEB" = (/obj/random/closet,/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftport) -"bEG" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{autoset_access = 0; name = "Security Checkpoint"; req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); secured_wires = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bEM" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/wall/prepainted,/area/crew_quarters/galley) -"bEP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bEV" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 3},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"bEX" = (/obj/structure/table/woodentable/walnut,/obj/item/material/ashtray/bronze,/obj/random/smokes,/obj/machinery/camera/network/second_deck{c_tag = "Actors - Stage"; dir = 1},/turf/simulated/floor/wood/ebony,/area/space) -"bFd" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"bFf" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "petrov_shuttle_pump"},/obj/floor_decal/techfloor,/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bFk" = (/obj/structure/bed/chair/office/green{dir = 1},/obj/floor_decal/corner/paleblue,/turf/simulated/floor/tiled/white,/area/space) -"bFm" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/device/flashlight/lamp{pixel_x = -5; pixel_y = 14},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"bFp" = (/obj/structure/closet/cabinet,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/shoes/dress,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/clothing/under/suit_jacket/charcoal,/obj/item/clothing/gloves/white,/obj/item/clothing/gloves/white,/obj/item/clothing/gloves/white,/obj/item/clothing/gloves/white,/turf/simulated/floor/tiled/dark,/area/space) -"bFr" = (/obj/floor_decal/spline/plain/black{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bFt" = (/obj/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/pew/mahogany,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"bFE" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"bFP" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"bFR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"bFT" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"bFX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/turf/simulated/floor/tiled/monotile,/area/space) -"bGa" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/binary/pump/on{dir = 4; target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"bGt" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"bGu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"bGv" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/padded/red{dir = 4},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bGx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"bGC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/handrail{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bGK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"bGO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/item/stack/material/steel/ten,/obj/item/stack/material/steel/ten,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"bGP" = (/obj/floor_decal/borderfloor,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"bGR" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"bGS" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"bGZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"bHa" = (/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/borderfloorwhite{dir = 6},/obj/floor_decal/corner/blue/border{dir = 6},/obj/floor_decal/borderfloorwhite/corner2{dir = 6},/obj/floor_decal/corner/blue/bordercorner2{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"bHf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"bHl" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"bHq" = (/obj/wallframe_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/maintenance/waterstore) -"bHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/wall/r_wall/hull,/area/space) -"bHt" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"bHJ" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"bHS" = (/obj/structure/bed/sofa/r/blue{dir = 8},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red{dir = 6},/turf/simulated/floor/carpet/red,/area/space) -"bIo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"bIy" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/decal/cleanable/dirt,/obj/machinery/status_light{id_tag = "ReacEng2"; name = "Fourth Deck Port status indicator"; pixel_x = -8; pixel_y = 25},/obj/machinery/status_light{id_tag = "ReacEng4"; name = "First Deck Port status indicator"; pixel_x = -8; pixel_y = 34},/obj/machinery/status_light{id_tag = "ReacEng3"; name = "First Deck Starboard status indicator"; pixel_x = 8; pixel_y = 34},/obj/machinery/status_light{id_tag = "ReacEng1"; name = "Fourth Deck Starboard status indicator"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/plating,/area/engineering/fuelbay) -"bIO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/starboard) -"bIP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"bIS" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bIT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/random/trash,/turf/simulated/floor/tiled,/area/space) -"bJb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"bJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bJj" = (/obj/machinery/atmospherics/unary/tank/air,/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/space) -"bJm" = (/obj/random/vendor{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"bJw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"bJA" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/glass/bolted/cycling{frequency = 1380; id_tag = "skipjack_shuttle_dock_airlock_inner"; name = "Docking Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bJB" = (/obj/structure/table/standard,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/recharger,/obj/machinery/camera/network/command{c_tag = "Command - Cyborg Upload"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bJC" = (/obj/floor_decal/techfloor,/obj/machinery/light,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/random/machine/jukebox_custom,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"bJI" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"bJJ" = (/obj/structure/table/standard,/obj/item/clothing/shoes/swimmingfins,/obj/item/clothing/shoes/swimmingfins,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bJM" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"bJP" = (/obj/machinery/constructable_frame/machine_frame,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bKc" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"bKi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"bKj" = (/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"bKp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"bKt" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/light/small{dir = 1},/obj/structure/railing/mapped,/obj/item/tank/oxygen_yellow,/turf/simulated/floor/plating,/area/vacant/cargo) -"bKy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button/airlock_interior{master_tag = "solar_port"; name = "interior access button"; pixel_x = 12; pixel_y = -19; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"bKC" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"bKH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/table/standard,/obj/item/book/manual/hydroponics_pod_people,/obj/item/material/minihoe,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"bKK" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/structure/table/reinforced,/obj/item/storage/box/donut,/obj/machinery/recharger,/obj/machinery/button/windowtint{dir = 4; id = "forensicswindow"; pixel_x = -22},/obj/machinery/camera/network/security{c_tag = "Security - Detectives - Office"; dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"bKP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/soap,/turf/simulated/floor/tiled/white,/area/space) -"bKT" = (/obj/floor_decal/borderfloorwhite,/obj/floor_decal/corner/blue/border,/obj/machinery/light,/obj/machinery/computer/modular/preset/security{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"bKY" = (/obj/structure/closet/walllocker{pixel_x = 28},/obj/item/storage/box/latexgloves,/obj/item/storage/box/handcuffs,/obj/item/storage/box/handcuffs,/obj/item/storage/box/flashbangs,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bLk" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/machinery/vending/sol,/turf/simulated/floor/tiled/techfloor,/area/space) -"bLn" = (/obj/structure/table/standard,/obj/item/storage/firstaid/regular,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"bLr" = (/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"bLw" = (/obj/floor_decal/carpet,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/space) -"bLB" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/reinforced,/area/space) -"bLD" = (/obj/machinery/photocopier,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"bLR" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/carpet/blue2,/area/space) -"bLS" = (/obj/structure/bed/chair/comfy/purple{dir = 1},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"bLT" = (/obj/machinery/atmospherics/unary/vent_pump/tank{external_pressure_bound = 0; external_pressure_bound_default = 0; id_tag = "test_xenoflora_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/reinforced,/area/rnd/xenobiology/xenoflora) -"bLU" = (/obj/item/beach_ball,/turf/simulated/floor/grass/cut,/area/space) -"bLZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/obj/structure/railing/mapped,/obj/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"bMl" = (/obj/structure/sign/poster{pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bMA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"bMC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Third Deck Subgrid"; name_tag = "Third Deck Subgrid"},/obj/machinery/power/apc/critical{dir = 1; name = "north bump"; pixel_y = 21},/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"bMD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable_reinforced/walnut,/obj/item/folder/blue,/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/blue2,/area/space) -"bMH" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"bMJ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bMV" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 250000; output_attempt = 1; output_level = 250000},/obj/structure/cable/cyan,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"bMX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"bMY" = (/obj/structure/bed/sofa/r/brown{dir = 1},/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood,/area/space) -"bNj" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall/hull,/area/space) -"bNl" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/sign/poster{pixel_x = -32},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/machinery/camera/network/security{c_tag = "Security - Equipment"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bNq" = (/obj/machinery/portable_atmospherics/canister/helium,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"bNu" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bNz" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"bNB" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/paper_bin,/obj/item/sticky_pad/random,/obj/item/pen,/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/blue2,/area/space) -"bNC" = (/obj/structure/closet/cabinet,/obj/item/clothing/accessory/toggleable/hawaii/random,/obj/random/clothing,/obj/random/gloves,/obj/random/glasses,/obj/random/action_figure,/obj/random/plushie,/obj/item/clothing/shoes/sandal,/obj/item/clothing/under/harness,/obj/item/clothing/under/swimsuit/black,/obj/item/clothing/under/shorts/black,/obj/item/clothing/under/shorts/jeans/female,/obj/item/clothing/under/hazard,/obj/item/clothing/under/frontier,/obj/item/clothing/under/blazer,/turf/simulated/floor/wood/walnut,/area/vacant/cargo) -"bNE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Commissary"; sort_type = "Commissary"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"bNH" = (/obj/structure/barricade,/obj/machinery/door/airlock{name = "Abandoned Room"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bNJ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"bOd" = (/obj/structure/table/steel,/obj/item/clothing/gloves/thick,/obj/item/clothing/mask/gas/budget,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"bOf" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"bOh" = (/obj/structure/table/glass,/obj/item/storage/box/fingerprints,/obj/item/storage/box/fingerprints,/obj/floor_decal/borderfloorwhite{dir = 10},/obj/floor_decal/corner/blue/border{dir = 10},/obj/machinery/camera/network/security{c_tag = "Security - Detectives - Lab"; dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"bOt" = (/obj/floor_decal/ntlogo{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/entry) -"bOD" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bOL" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/space) -"bON" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"bOZ" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "xenohight_airlock_exterior_sensor"; master_tag = "xenohight_airlock"; pixel_x = 1; pixel_y = -24; req_access = list("ACCESS_XENOBIO")},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/machinery/camera/network/research{c_tag = "Xenobiology - Entry"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"bPb" = (/obj/structure/table/standard,/obj/machinery/light/small,/obj/item/paper/travelvisa{desc = "A flimsy piece of laminated cardboard issued by the Sol Central Government. It's look's damaged"},/turf/simulated/floor/tiled/monotile,/area/vacant/cargo) -"bPd" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"bPm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bPp" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor/northleft{dir = 2; name = "Security Checkpoint"},/obj/machinery/door/window/southleft{autoset_access = 0; dir = 1; name = "Security Checkpoint"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"bPt" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3starboard) -"bPu" = (/obj/structure/closet/coffin/wooden,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"bPB" = (/obj/structure/window/reinforced/polarized{dir = 8; id = "iaaright"},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"bPC" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/turf/simulated/floor/tiled/dark,/area/space) -"bPD" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"bPF" = (/turf/simulated/wall/prepainted,/area/crew_quarters/galley) -"bPH" = (/obj/structure/bookcase,/obj/item/book/manual/military_law,/turf/simulated/floor/wood/ebony,/area/space) -"bPX" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/floor_decal/industrial/traffic/corner{dir = 4},/obj/structure/cable/green,/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bQa" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1port) -"bQc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"bQg" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/space) -"bQm" = (/turf/simulated/floor/reinforced,/area/space) -"bQn" = (/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced/polarized{id = "cap_windows"},/turf/simulated/floor/plating,/area/space) -"bQq" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"bQy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"bQA" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"bQH" = (/obj/structure/closet/secure_closet/engineering_senior,/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/gps,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bQW" = (/obj/structure/table/woodentable/mahogany,/obj/item/storage/bible/tanakh,/obj/item/storage/bible/aqdas,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"bQZ" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "xenobotany_access_maintaince"; name = "Xenobotany Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology/xenoflora) -"bRb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"bRc" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"bRd" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee,/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; display_name = "First Deck Auxillary Dock"; id_tag = "fd_starboard"; name = "First Deck Starboard Airlock Controller"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"bRg" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bRh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bRk" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/space) -"bRm" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bRx" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hydroponics) -"bRI" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition) -"bRN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"bRQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/space) -"bRV" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/starboard) -"bSo" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"bSx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lime/bordercorner2{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"bSE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"bSH" = (/obj/machinery/biogenerator,/obj/floor_decal/corner/green/three_quarters{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "xenobotany_access"; name = "Xenobotany Lab Access Console"; pixel_x = 24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"bST" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/alarm/warm{dir = 4; pixel_x = -24; req_access = list(); target_temperature = 398.15; temperature = 343.15},/obj/structure/bed/sauna_bench/middle,/turf/simulated/floor/wood/ebony,/area/space) -"bSU" = (/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"bTg" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"bTs" = (/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bTH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"bTJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"bTK" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"bTN" = (/obj/structure/window/basic{dir = 1},/obj/structure/hygiene/drain,/obj/structure/hygiene/shower{dir = 4},/obj/machinery/door/window/eastright,/obj/structure/curtain/open/shower,/obj/structure/closet/walllocker{pixel_x = -28},/obj/item/bikehorn/rubberducky,/obj/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/freezer,/area/space) -"bTO" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/substation/seconddeck) -"bUb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"bUc" = (/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"bUe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"bUh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bUE" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"bUM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/space) -"bUO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"bUP" = (/obj/machinery/shieldgen,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"bUQ" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"bUR" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_1_pump"},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/grey/border{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bUX" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobio4"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"bUY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet/green,/area/space) -"bVg" = (/obj/floor_decal/techfloor/corner,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bVl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"bVu" = (/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bVv" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"bVw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/space) -"bVA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bVF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/space) -"bVO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"bVP" = (/obj/structure/dispenser/oxygen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"bVR" = (/obj/item/contraband/poster,/obj/item/contraband/poster,/obj/item/contraband/poster,/obj/item/contraband/poster,/obj/item/device/paicard,/obj/item/device/paicard,/obj/random/ironing_board_item,/obj/item/ironing_iron,/obj/item/device/toner,/obj/structure/closet/crate,/obj/item/storage/box/donkpocket_mixed,/obj/floor_decal/spline/plain/yellow,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"bWa" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bWf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"bWn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"bWo" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"bWr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"bWy" = (/obj/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"bWz" = (/obj/item/stool/padded/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"bWJ" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"bWL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/padded/red{dir = 4},/obj/machinery/light{dir = 8},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bWQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/spot,/obj/structure/table/standard,/obj/item/reagent_containers/spray/plantbgone{pixel_x = 5; pixel_y = 5},/obj/item/reagent_containers/spray/plantbgone,/obj/floor_decal/corner/green/three_quarters,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/hydroponics) -"bWT" = (/turf/simulated/floor/tiled/dark,/area/bridge) -"bWY" = (/obj/floor_decal/corner/black/half{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/storage/slide_projector,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"bXa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"bXc" = (/obj/structure/railing/mapped,/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"bXg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bXn" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/medical/equipstorage) -"bXq" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/chapel/main) -"bXs" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate/bin,/turf/simulated/floor/wood/walnut,/area/space) -"bXv" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"bXB" = (/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"bXC" = (/obj/machinery/light,/obj/machinery/suit_cycler/medical/alt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"bXI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"bXJ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/obj/structure/sign/directions/med{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"bXN" = (/obj/paint/hull,/turf/simulated/wall/ocp_wall,/area/vacant/prototype/engine) -"bXT" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/aftport) -"bXW" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/table/woodentable/walnut,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/space) -"bYb" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"bYl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/steel_grid,/area/space) -"bYu" = (/obj/floor_decal/corner/green/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"bYy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"bYC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"bYQ" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/handrail{dir = 1},/turf/simulated/floor/airless,/area/space) -"bYU" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/barrier,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"bYX" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"bZf" = (/obj/structure/largecrate,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"bZp" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/full{id = "rd_windows"},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/rd) -"bZF" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"bZH" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"bZL" = (/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_wall/hull,/area/space) -"bZR" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"bZT" = (/obj/machinery/button/mass_driver{dir = 1; id_tag = "enginecore"; name = "Emergency Core Eject"; pixel_x = 4; pixel_y = -20},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{autoset_access = 0; name = "emergency core eject"; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/button/blast_door{desc = "A remote control-switch for engine core."; dir = 1; id_tag = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = -8; pixel_y = -20; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/button/alternate/door/bolts{desc = "A remote control-switch for the engine core airlock hatch bolts."; dir = 4; id_tag = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -22; pixel_y = -8; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/button/blast_door{desc = "A switch designed to vent all gasses from the engine room into space. Press it if there is a fire in the engine room."; dir = 4; id_tag = "engineroomvent"; name = "Emergency Engine Room Vents"; pixel_x = -22; pixel_y = 4; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/button/blast_door{desc = "WARNING! Opening blast doors while reactor is operating, may cause meltdown."; dir = 4; id_tag = "SupermatterDoor"; name = "Supermatter Access Blast Doors"; pixel_x = -32; pixel_y = -8; req_access = list("ACCESS_ENGINEERING")},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"bZU" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1port) -"bZW" = (/obj/floor_decal/techfloor{dir = 1},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"bZZ" = (/obj/floor_decal/carpet/purple{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"cac" = (/obj/structure/table/woodentable/walnut,/obj/structure/window/reinforced/polarized{dir = 4; id = "cap_room_window"},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/carpet/blue,/area/space) -"cae" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"caf" = (/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"cag" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"cam" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/space) -"cas" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/constructable_frame/computerframe,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cau" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/sign/warning/pods/west{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"cav" = (/obj/structure/closet/crate/freezer/rations,/obj/machinery/light/small/emergency{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"caC" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular{dir = 4; id_tag = "guppy_shield_left"; name = "Window Shield"},/obj/paint_stripe/yellow,/turf/simulated/floor/plating,/area/guppy_hangar/start) -"caJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"caR" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "toxin_lab_access_outer"; name = "Toxin Lab Access"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"caZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"cbd" = (/obj/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"cbm" = (/obj/structure/railing/mapped,/obj/machinery/shieldgen,/obj/structure/sign/warning/pods/south{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"cbr" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"cbu" = (/obj/structure/bed/chair/shuttle/black{dir = 8},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/cockpit) -"cbw" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"cbC" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/substation/firstdeck) -"cbF" = (/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cbL" = (/obj/structure/bed/chair/padded/purple{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"cbO" = (/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,/obj/item/clothing/suit/storage/hooded/wintercoat/engineering,/obj/structure/table/rack{dir = 8},/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"cbR" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/structure/sign/deck/first{pixel_y = 35},/obj/structure/sign/directions/security{dir = 8; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"cbV" = (/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"ccc" = (/obj/structure/bed/chair/padded/purple,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"ccj" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ccq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ccI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/bamboo,/area/space) -"ccL" = (/obj/shuttle_landmark/admin/out,/turf/space,/area/space) -"ccN" = (/obj/structure/table/rack{pixel_x = 2},/obj/machinery/light{dir = 4},/obj/item/gun/launcher/syringe,/obj/item/storage/box/syringegun,/obj/item/storage/box/syringegun,/obj/item/storage/box/syringes,/obj/item/storage/box/syringes,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"ccO" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ccQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"ccS" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"cde" = (/obj/structure/closet/cabinet,/obj/floor_decal/corner/red/diagonal,/obj/decal/cleanable/flour,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"cdg" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"cdk" = (/obj/machinery/vitals_monitor,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/obj/structure/sign/warning/nosmoking_1{desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; pixel_y = 24},/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"cdn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/space) -"cdt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"cdw" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"cdz" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/office) -"cdG" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/camera/network/research{c_tag = "Research - Port Hallway"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"cdH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"cdP" = (/obj/floor_decal/corner/red,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"cdQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"cdU" = (/obj/landmark/start,/obj/structure/bed/chair/rounded/beige{dir = 1},/turf/simulated/floor/carpet,/area/space) -"cem" = (/obj/structure/table/steel,/obj/item/device/flashlight/lantern,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"ceo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"cep" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"cex" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/heads/office/cmo) -"ceA" = (/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"ceF" = (/obj/structure/flora/ausbushes/palebush,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/grass/cut,/area/space) -"ceI" = (/obj/machinery/vending/sol{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ceS" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/computer/air_control{input_tag = "fuel3p_in"; name = "Fuel Supply Control"; output_tag = "fuel3p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngPlasma3"},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"ceT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{autoset_access = 0; name = "Petrov Access"; req_access = list("ACCESS_HANGAR")},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"ceU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ceZ" = (/turf/simulated/wall/r_wall/prepainted,/area/vacant/infirmary) -"cfi" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_room) -"cfk" = (/obj/machinery/computer/rdconsole{dir = 1},/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera/network/command{c_tag = "Command - Research Director"; dir = 1},/obj/item/storage/secure/safe{pixel_y = -24},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"cfl" = (/obj/machinery/light/spot,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"cfm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled/white,/area/space) -"cfp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"cfs" = (/obj/structure/window/reinforced/polarized{dir = 8; id = "iaaright"},/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 10},/turf/simulated/floor/carpet/blue,/area/space) -"cfK" = (/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/floor_decal/techfloor{dir = 9},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/techfloor/corner,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cfL" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/structure/sign/directions/engineering{dir = 1; pixel_x = 32; pixel_y = -8},/obj/structure/sign/directions/supply{dir = 1; pixel_x = 32; pixel_y = -1},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Stairwell"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"cfP" = (/obj/machinery/mech_recharger,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"cfQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"cfU" = (/obj/machinery/power/fusion_core/mapped{initial_id_tag = "aux_fusion_plant"},/obj/structure/cable/yellow,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"cge" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"cgh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"cgj" = (/obj/structure/table/woodentable/maple,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"cgl" = (/obj/machinery/light/spot,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"cgp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cgu" = (/obj/structure/closet/cabinet,/obj/item/device/synthesized_instrument/trumpet,/obj/item/clothing/mask/gas/sexyclown,/obj/item/clothing/mask/gas/sexymime,/obj/item/clothing/mask/gas/clown_hat,/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"cgD" = (/obj/structure/bed/chair/padded/teal{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"cgE" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/assembly/robotics) -"cgH" = (/obj/paint{color = "#353a42"},/turf/simulated/wall/ocp_wall,/area/space) -"cgK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"cgR" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"chc" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"chf" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/table/standard,/obj/item/paper_bin{pixel_x = 8; pixel_y = 11},/obj/item/pen,/obj/item/material/kitchen/utensil/fork{pixel_x = -6; pixel_y = 7},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"chi" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/assembly/chargebay) -"cho" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"chs" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"chu" = (/obj/structure/holoplant,/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/space) -"chE" = (/obj/machinery/light,/obj/structure/bed/chair/padded/blue{dir = 4},/turf/simulated/floor/tiled,/area/space) -"cii" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/fore) -"cij" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/status_display{pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"cio" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/storage/primary) -"cis" = (/obj/fluid_mapped,/obj/random/soap,/mob/living/simple_animal/aquatic/fish/judge,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ciu" = (/obj/floor_decal/corner/black/three_quarters{dir = 4},/obj/floor_decal/corner/purple/border{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/space) -"ciz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ciB" = (/obj/machinery/atmospherics/unary/tank/air,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ciF" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ciL" = (/obj/structure/closet/crate/freezer,/obj/structure/railing/mapped,/obj/floor_decal/spline/plain/black{dir = 6},/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ciM" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1starboard) -"cjb" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"cjc" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tank,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor{dir = 10},/obj/random/tech_supply,/obj/item/storage/box/lights/led_neon,/obj/machinery/camera/network/supply{c_tag = "Fourth Deck - Supply - Auxillary Warehouse"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"cjk" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 15},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = 8; pixel_y = -6},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"cjl" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/secure_closet{name = "long term chamber locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor/full,/obj/floor_decal/industrial/hatch/orange,/obj/machinery/button/blast_door{dir = 8; id_tag = "visiting_room_windows_shutters"; name = "Brig's visiting room shutters"; pixel_x = 21; pixel_y = -6; req_access = list("ACCESS_SECURITY")},/turf/simulated/floor/tiled/techfloor,/area/space) -"cjn" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"cjp" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/medical/chemistry) -"cjz" = (/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"cjH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cjX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"cki" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"ckl" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/nt,/obj/item/folder/nt,/obj/item/folder/red,/obj/item/folder/yellow,/obj/item/folder,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/obj/machinery/light,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ckm" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ckp" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"ckA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"ckB" = (/obj/structure/table/standard,/obj/machinery/vending/wallmed1{dir = 4; name = "Emergency NanoMed"; pixel_x = -24},/obj/item/reagent_containers/spray/cleaner{pixel_x = -5; pixel_y = 4},/obj/item/device/robotanalyzer,/obj/item/storage/box/freezer,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"ckL" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"ckU" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ckW" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"cla" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"cld" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"clg" = (/turf/simulated/wall/r_wall/hull,/area/quartermaster/expedition) -"cll" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"clp" = (/obj/floor_decal/corner/lime/bordercorner{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/light/spot{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"clw" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"clD" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/dark,/area/space) -"clF" = (/obj/structure/lattice,/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/black/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"clH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"clM" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"clR" = (/obj/structure/bed/chair/armchair/black{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"clT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood/ebony,/area/space) -"clZ" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cma" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cmb" = (/obj/machinery/atmospherics/valve/digital,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"cmh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"cmk" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/floodlight{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"cmm" = (/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"cmw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"cmA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"cmJ" = (/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/papershredder,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"cmR" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cnh" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cnj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/door/window{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"cno" = (/obj/floor_decal/borderfloor/corner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"cnp" = (/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/border{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) -"cnr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"coc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/space) -"con" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"cos" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/ebony,/area/space) -"cow" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"coB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"coD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/holocontrol) -"coE" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"coH" = (/obj/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"coM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"coP" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/equipstorage) -"coY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"cpa" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/folder/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"cpk" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/holodeckcontrol,/obj/item/stock_parts/circuitboard/mech_recharger,/obj/item/stock_parts/circuitboard/solar_control,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"cpu" = (/turf/simulated/wall/walnut,/area/space) -"cpv" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"cpw" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"cpO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"cpQ" = (/obj/fluid_mapped,/turf/simulated/floor/tiled/techfloor,/area/space) -"cpR" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/mineral/processing_unit,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"cpS" = (/obj/machinery/button/blast_door{id_tag = "borg"; name = "Cyborg Upload Blast Doors"; pixel_x = -26; pixel_y = -6; req_access = list("ACCESS_AI_UPLOAD")},/obj/machinery/computer/drone_control{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"cpT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall/hull,/area/space) -"cqt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway - Airlock"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"cqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/grey/border{dir = 8},/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"cqC" = (/obj/item/stool/padded,/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"cqD" = (/obj/machinery/camera/network/command{c_tag = "Command - Chief Steward"; dir = 8},/turf/simulated/floor/wood,/area/space) -"cqT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"cqV" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/space) -"cqW" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"crm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/borderfloorblack/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"cro" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos) -"crr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"crs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; id_tag = "bridge_hallway_doors_starboadr"; name = "Bridge Access"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"crD" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/pizzabox/meat{pixel_y = 10},/obj/machinery/light/small,/turf/simulated/floor/carpet/blue2,/area/space) -"crE" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/machinery/light/spot{dir = 4},/obj/structure/bed/chair/padded/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"crG" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"crJ" = (/obj/machinery/computer/modular/preset/security{dir = 8},/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"crU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"crZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 80},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"csp" = (/obj/machinery/cryopod/robot{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"csw" = (/obj/machinery/washing_machine,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"csC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Janitor Closet"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/storage) -"csP" = (/obj/paint_stripe/blue,/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/airlock) -"csX" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"csZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"ctg" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/space) -"cto" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/green/bordercorner2{dir = 10},/obj/structure/sign/botany{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ctu" = (/obj/structure/table/rack,/obj/item/material/hatchet/machete,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/material/hatchet/machete,/obj/item/material/hatchet/machete,/obj/item/material/hatchet/machete,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"ctB" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ctC" = (/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"ctD" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"ctF" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "guppy_shuttle_pump_out_internal"},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"ctI" = (/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ctJ" = (/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"ctW" = (/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/floor_decal/corner/black/three_quarters{dir = 8},/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 8},/obj/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"ctX" = (/obj/floor_decal/spline/fancy/black{dir = 4},/obj/floor_decal/snow,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/space) -"cua" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"cub" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/hologram/holopad{pixel_x = 16},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cuf" = (/obj/machinery/floodlight{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"cug" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/machinery/camera/network/research{c_tag = "Research - Robotics Lab"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"cul" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/sign/warning/airlock{dir = 8; pixel_x = 32},/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"cus" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"cuD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"cuI" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cuP" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"cuW" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cuX" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/floor_decal/industrial/warning{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/space) -"cvh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cvk" = (/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "calypso_shuttle_pump"},/obj/structure/handrail{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"cvy" = (/obj/machinery/door/window/westright{name = "Xenoflora Environment"; req_access = newlist()},/obj/machinery/door/window/southright{dir = 4; name = "Xenoflora Environment"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/reinforced,/area/rnd/xenobiology/xenoflora) -"cvC" = (/turf/simulated/floor/reinforced,/area/rnd/xenobiology/xenoflora) -"cvM" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"cvN" = (/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/centralstarboard) -"cvV" = (/obj/structure/bed/chair/padded/purple{dir = 4},/obj/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"cvX" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen{pixel_x = -1},/obj/item/folder/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"cvZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"cwe" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/quartermaster/shuttlefuel) -"cwf" = (/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/explorer,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"cwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"cwq" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"cwr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"cwu" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"cwv" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cwy" = (/obj/machinery/seed_extractor,/obj/floor_decal/corner/green/three_quarters{dir = 4},/obj/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"cwA" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"cwE" = (/obj/structure/table/standard,/obj/random/firstaid,/obj/machinery/light/small/emergency{dir = 8},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/space) -"cwJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/aft) -"cwO" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"cwT" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/light{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"cwY" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"cxd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 1; pixel_x = 6; pixel_y = -21},/turf/simulated/floor/wood/walnut,/area/space) -"cxi" = (/obj/machinery/radiocarbon_spectrometer,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"cxm" = (/obj/floor_decal/corner/green/border{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cxr" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"cxs" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/machinery/light,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"cxt" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cxv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"cxy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cxA" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/sign/emergonly{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"cxF" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood/walnut,/area/space) -"cxG" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"cxH" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/largecrate,/obj/random/trash,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"cxL" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"cxM" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cxQ" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"cxR" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"cxT" = (/obj/item/storage/lunchbox/picnic/filled,/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2{dir = 6},/turf/simulated/floor/carpet/blue2,/area/space) -"cxW" = (/obj/structure/table/standard,/obj/random/tool,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"cxX" = (/obj/structure/catwalk,/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/mre/dessert,/obj/random/plushie,/obj/random/junk,/obj/random/firstaid,/obj/random/action_figure,/obj/random/cash,/obj/random/drinkbottle,/obj/random/hat,/turf/simulated/open,/area/space) -"cyb" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"cyc" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "xenobio1"; name = "Containment Blast Doors"; pixel_x = -6; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{id_tag = "xenobio1_vent"; name = "Cell 1 Vent"; pixel_x = 6; req_access = list("ACCESS_RESEARCH")},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/storage/box/syringes{pixel_y = 15},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cym" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"cyn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/carpet/green,/turf/simulated/floor/carpet/green,/area/space) -"cyr" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/bordercorner,/turf/simulated/floor/tiled,/area/space) -"cyM" = (/obj/structure/flora/pottedplant/fern,/obj/floor_decal/carpet,/obj/floor_decal/carpet{dir = 4},/obj/floor_decal/carpet{dir = 6},/turf/simulated/floor/carpet,/area/space) -"cyP" = (/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"cyU" = (/obj/random_multi/single_item/space_rabbit,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cyV" = (/obj/floor_decal/corner/blue{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"czb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"czd" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"czn" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/plating,/area/vacant/mess) -"czD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/space) -"czE" = (/obj/machinery/atmospherics/tvalve{dir = 1},/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"czG" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"czH" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"czJ" = (/obj/structure/closet/l3closet/general,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"czN" = (/obj/structure/closet/crate,/obj/item/stock_parts/circuitboard/smes,/obj/item/stock_parts/circuitboard/smes,/obj/item/stock_parts/smes_coil/super_io,/obj/item/stock_parts/smes_coil/super_io,/obj/item/stock_parts/smes_coil/super_capacity,/obj/item/stock_parts/smes_coil/super_capacity,/obj/item/stock_parts/smes_coil,/obj/item/stock_parts/smes_coil,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"czQ" = (/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/corner/beige{dir = 10},/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"czV" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/disposal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/green{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"czY" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass/science{name = "Expedition Prep"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"cAa" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"cAd" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cAf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"cAg" = (/obj/structure/filingcabinet/filingcabinet,/obj/floor_decal/corner/yellow/half{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"cAl" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"cAm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/decal/cleanable/cobweb{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cAu" = (/obj/machinery/computer/modular/preset/medical{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"cAC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/thirddeck) -"cAJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"cAK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"cAO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cBf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/camera/network/research{c_tag = "Research - Central Hallway"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"cBg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"cBk" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{frequency = 1331; id_tag = "rescue_shuttle_dock_airlock_sensor"; master_tag = "rescue_shuttle_dock_airlock"; pixel_x = -24; pixel_y = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"cBm" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/rotating_alarm/supermatter{pixel_y = 14},/turf/simulated/floor/plating,/area/engineering/engine_room) -"cBq" = (/obj/structure/catwalk,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"cBt" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external/bolted/cycling{dir = 4; frequency = 1380; id_tag = "nuke_shuttle_dock_airlock_inner"; name = "Docking Port Airlock"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cBv" = (/obj/machinery/door/firedoor{dir = 8},/obj/machinery/door/airlock/civilian{autoset_access = 0; dir = 4; name = "Security General Cabin"; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"cBw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"cBz" = (/obj/floor_decal/techfloor{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor/hole{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cBD" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Captain's reserve fax"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cBG" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"cBH" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "chapel_shutters_md"; name = "Last Way Shutter"; pixel_x = 20; pixel_y = 6; req_access = list("ACCESS_CHAPEL_STORAGE")},/obj/machinery/button/mass_driver{dir = 8; id_tag = "chapel"; name = "Last Way"; pixel_x = 20; pixel_y = -7},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"cBI" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/space) -"cBL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"cBM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"cBP" = (/obj/machinery/photocopier,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"cBU" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"cCj" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"cCk" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/obj/random/coin,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"cCu" = (/obj/machinery/power/apc/high{name = "north bump"; pixel_y = -24},/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"cCx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_atmos_airlock"; name = "Engine Room Airlock Controlls"; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"cCy" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Fourth Deck Substation Bypass"},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"cCC" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_x = 6; pixel_y = 10},/obj/machinery/cell_charger{pixel_x = -2; pixel_y = 1},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"cCD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 80},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"cCF" = (/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"cCT" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/camera/network/command{c_tag = "Telecommunications - Server Room"; network = list("Command","Engineering")},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"cDo" = (/obj/structure/holoplant,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"cDv" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cDy" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"cDA" = (/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = -28},/obj/floor_decal/corner/paleblue/bordercee{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"cDB" = (/obj/structure/flora/seaweed/glow,/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"cDC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/space) -"cDD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"cDE" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"cDJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/eastleft{dir = 1; name = "engineering front desk"},/obj/machinery/door/blast/regular/open{id_tag = "eng_lockdown_emg1"; name = "Emergency Exit"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"cDS" = (/obj/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"cDX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"cEa" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/space) -"cEb" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"cEd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/corner/green/half,/obj/machinery/button/blast_door{dir = 1; id_tag = "hydroponics_space"; name = "Space Shields"; pixel_y = -21},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"cEt" = (/obj/machinery/door/airlock/hatch/maintenance/bolted{frequency = 1379; id_tag = "prototype_exterior"; name = "Fusion Maintenance"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/control) -"cEu" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"cEw" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"cEx" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Treatment Center"; dir = 4; pixel_y = 20},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"cEy" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"cEB" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"cEL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"cEW" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"cFe" = (/obj/machinery/door/blast/regular/open{id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/obj/wallframe_spawn/reinforced/polarized{id = "rcheckinner_windows"},/turf/simulated/floor/plating,/area/space) -"cFh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"cFi" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/green/border{dir = 10},/obj/structure/closet/emcloset,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"cFl" = (/obj/floor_decal/corner/black/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cFo" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/floor_decal/spline/fancy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"cFs" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cFx" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"cFA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"cFG" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"cFI" = (/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"cFR" = (/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"cFT" = (/obj/machinery/door/airlock/hatch{frequency = 1379; id_tag = "engine_airlock_inner"; name = "Engine Airlock Interior"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"cFV" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"cGc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cGe" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/machinery/portable_atmospherics/canister/helium{start_pressure = 14999},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"cGg" = (/obj/structure/bed/chair/office/purple{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/development) -"cGi" = (/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cGn" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/landmark/start{name = "Captain"},/obj/structure/bed/chair/rounded/blue{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"cGp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"cGs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"cGv" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"cGw" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"cGE" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/computer/air_control{dir = 1; input_tag = "o22p_in"; name = "Oxygen Supply Control"; output_tag = "o22p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngOxygen2"},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"cGF" = (/obj/structure/table/standard,/obj/item/storage/box/detergent,/obj/item/storage/box/detergent,/obj/item/ironing_iron,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/item/ironing_iron,/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"cGH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cGN" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "skipjack_shuttle_pump"},/obj/floor_decal/borderfloor/corner2{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cGV" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"cGY" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red/bordercorner{dir = 4},/obj/floor_decal/corner/red/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cHg" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_smes) -"cHi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing/mapped,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cHq" = (/obj/structure/table/woodentable/maple,/obj/item/device/flashlight/lamp/green,/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Chapel - Office"},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"cHz" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/obj/machinery/meter,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cHE" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"cHJ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"cHK" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"cHN" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/multi_tile/glass/medical{dir = 8; id_tag = "MedbayInf"; name = "Treatment Center"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"cHP" = (/obj/structure/table/woodentable,/obj/item/airalarm_electronics,/obj/item/airlock_electronics,/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"cHR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"cHZ" = (/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/steeldecal/steel_decals6,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"cIe" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cIj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"cIz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"cIH" = (/obj/machinery/computer/modular/preset/medical{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"cIZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/orange,/area/space) -"cJa" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/industrial/warning,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"cJb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"cJc" = (/obj/structure/lattice,/turf/simulated/wall/r_wall/hull,/area/engineering/atmos) -"cJp" = (/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Port"},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"cJv" = (/turf/simulated/wall/prepainted,/area/storage/auxillary/port) -"cJD" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_6"; name = "escape pod six controller"; pixel_x = -20; tag_door = "escape_pod_6_hatch"},/obj/structure/bed/chair/shuttle{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"cJH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor{color = null; dir = 4},/obj/floor_decal/corner/blue/border{dir = 4},/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"cJI" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor/northleft{name = "Quartermaster"; req_access = newlist()},/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 4},/obj/machinery/door/blast/shutters/open{id_tag = "qm_office"; name = "QM Office Shutters"},/turf/simulated/floor/plating,/area/space) -"cJL" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Research Maintenance Access"; req_access = newlist()},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"cJQ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"cJV" = (/obj/floor_decal/corner/black/three_quarters{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/dark,/area/space) -"cJX" = (/obj/structure/disposaloutlet,/obj/machinery/shield_diffuser,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cKb" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"cKg" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/assembly/robotics) -"cKo" = (/obj/structure/roller_bed,/obj/floor_decal/industrial/outline/blue,/obj/machinery/camera/network/medbay{c_tag = "Critical Wing - EMT Compartment"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"cKr" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"cKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/aft) -"cKy" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/reagent_containers/chem_disp_cartridge/coffee,/obj/item/reagent_containers/food/drinks/glass2/coffeecup,/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_airlock"; name = "Engine Room Airlock Controlls"; pixel_x = 7; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/structure/extinguisher_cabinet{pixel_x = -7; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"cKE" = (/obj/structure/bed/padded,/obj/item/bedsheet/red,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cKF" = (/obj/machinery/computer/ship/sensors,/turf/simulated/floor/plating,/area/space) -"cKH" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/obj/item/folder/red,/obj/item/folder,/obj/item/folder/nt,/obj/item/folder/yellow,/obj/item/folder/white,/obj/item/folder/nt,/obj/item/folder/nt,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"cKJ" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"cKK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"cKL" = (/turf/simulated/wall/prepainted,/area/crew_quarters/lounge) -"cKO" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/space) -"cKU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"cKZ" = (/obj/shuttle_landmark/escape_pod/start/pod6,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"cLf" = (/obj/structure/bookcase/manuals/medical,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"cLi" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"cLl" = (/obj/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/space) -"cLp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/foreport) -"cLq" = (/obj/structure/table/standard,/obj/item/anobattery{pixel_x = -6; pixel_y = 2},/obj/item/anobattery{pixel_x = -2; pixel_y = -2},/obj/item/anobattery{pixel_x = 2; pixel_y = 2},/obj/item/anobattery{pixel_x = 6; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/space) -"cLv" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/northleft{dir = 2},/obj/structure/table/rack{dir = 8},/obj/item/aiModule/solgov,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cLx" = (/obj/structure/table/steel,/obj/item/stack/material/wood/walnut{amount = 2},/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"cLE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cLG" = (/obj/structure/mopbucket,/obj/item/mop,/obj/floor_decal/industrial/hatch/yellow,/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/techfloor,/area/space) -"cLH" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/tele_beacon,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"cLI" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"cLQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/space) -"cLT" = (/obj/floor_decal/corner/black/full,/obj/machinery/papershredder,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"cLV" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/red{pixel_x = 2; pixel_y = 6},/obj/item/pen/blue{pixel_x = -3; pixel_y = 2},/obj/item/pen/crayon/yellow{desc = "A colourful crayon. Please refrain from eating it or putting it in your nose. This one is labeled 'Canary Yellow.'"},/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/research{c_tag = "Research - Office"; dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"cMb" = (/obj/machinery/uniform_vendor,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/space) -"cMe" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/floor_decal/spline/fancy/wood/corner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"cMf" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/landmark/start,/turf/simulated/floor/tiled,/area/space) -"cMo" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cMI" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"cMN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"cMY" = (/obj/machinery/computer/modular/preset/dock{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cNc" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced/polarized/full{id = "hop_windows"},/turf/simulated/floor/plating,/area/space) -"cNg" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"},/turf/simulated/floor/plating,/area/engineering/engine_monitoring) -"cNo" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"},/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"cNp" = (/obj/machinery/computer/modular/preset/engineering{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"cNv" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"cNA" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light,/turf/simulated/floor/wood/mahogany,/area/space) -"cNF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/grey/border{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"cNO" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"cNP" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/foreport) -"cOd" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button/airlock_interior{master_tag = "sd_port"; name = "interior access button"; pixel_x = 24; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/door/airlock/external/glass/bolted/cycling{id_tag = "sd_port_inner"; name = "Second Deck Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"cOj" = (/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/medical) -"cOl" = (/obj/floor_decal/corner/paleblue/bordercorner2{dir = 10},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/floor_decal/corner/paleblue/half{dir = 1},/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cOm" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cOn" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "ai_bridge_pump"},/obj/machinery/light/small,/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/plating,/area/space) -"cOt" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/cockpit) -"cOz" = (/obj/machinery/space_heater,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"cOC" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/space) -"cOK" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"cOL" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"cON" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/item/device/gps,/turf/simulated/floor/tiled/steel_grid,/area/space) -"cOR" = (/obj/structure/table/standard,/obj/item/cane{pixel_x = 4},/obj/item/cane{pixel_y = 2},/obj/item/cane{pixel_x = -1; pixel_y = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"cOX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/catwalk,/obj/structure/hygiene/drain,/obj/structure/hygiene/shower{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) -"cOY" = (/obj/machinery/atmospherics/binary/pump,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"cOZ" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/rotating_alarm/supermatter{pixel_y = 14},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"cPc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"cPg" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/flashlight/lamp/lava/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cPv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/tvalve{dir = 1; icon_state = "map_tvalve1"; state = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"cPA" = (/obj/machinery/suspension_gen,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/button/blast_door{dir = 1; id_tag = "mine_warehouse"; name = "Storage Door Control"; pixel_x = 6; pixel_y = -24; req_access = list(list("ACCESS_MINING","ACCESS_XENOARCH","ACCESS_EL"))},/obj/machinery/light_switch{dir = 1; pixel_x = -6; pixel_y = -24},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cPD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"cPG" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"cPI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/landmark/start{name = "Detective"},/turf/simulated/floor/tiled/white,/area/space) -"cPK" = (/obj/structure/closet/l3closet/general,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/vacant/infirmary) -"cPM" = (/obj/machinery/psi_meter,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"cPY" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cQa" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"cQb" = (/obj/structure/catwalk,/obj/machinery/nav_light,/turf/simulated/open,/area/space) -"cQh" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 24},/obj/structure/sign/deck/third{pixel_y = 35},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"cQn" = (/obj/floor_decal/corner/paleblue/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"cQq" = (/obj/structure/table/standard,/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/obj/random/tech_supply,/obj/machinery/recharger,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/corner/yellow/mono,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"cQD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood/walnut,/area/space) -"cQL" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/space) -"cQP" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_smes) -"cQR" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/space) -"cQT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cQV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/reinforced,/area/space) -"cRc" = (/obj/structure/bed/chair/armchair/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_x = 9; pixel_y = -21},/obj/floor_decal/carpet/green,/turf/simulated/floor/carpet/green,/area/space) -"cRd" = (/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"cRe" = (/obj/structure/closet/walllocker{pixel_y = 28},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/vacant/cargo) -"cRn" = (/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/plating,/area/space) -"cRq" = (/turf/simulated/wall/prepainted,/area/hallway/primary/thirddeck/center) -"cRr" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Supply to Bridge Air Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/space) -"cRB" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cRD" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/open,/area/maintenance/seconddeck/aftstarboard) -"cRI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1331; id_tag = "rescue_shuttle_dock_airlock_inner"; name = "Docking Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"cRP" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/flora/ausbushes/genericbush,/turf/simulated/floor/grass/cut,/area/space) -"cRT" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"cRX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"cRY" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/random/maintenance,/obj/machinery/door/window/westleft{name = "Commissary rack"; req_access = newlist()},/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/random/single/cola,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"cSd" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"cSj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cSp" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"cSs" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cSz" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"cSC" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"cSI" = (/obj/structure/table/steel,/obj/item/storage/pill_bottle/tramadol,/obj/item/storage/firstaid/o2{pixel_x = 5; pixel_y = 5},/obj/item/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/tank/oxygen_emergency_double,/obj/item/tank/oxygen_emergency_double,/obj/random/medical/lite,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"cSZ" = (/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"cTe" = (/obj/structure/table/rack{dir = 8},/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/random/bomb_supply,/obj/floor_decal/techfloor{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/obj/random/junk,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"cTj" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"cTo" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 15000},/obj/machinery/button/blast_door{id_tag = "cChamber2pV"; name = "Fourth Deck Port Chamber Vent"; pixel_x = 8; pixel_y = 24},/obj/machinery/button/blast_door{id_tag = "d2portnacelle"; name = "Combustion Chamber Blast Door Control"; pixel_x = -8; pixel_y = 24},/obj/machinery/button/ignition{id_tag = "engines-2"; pixel_y = 34},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"cTs" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/helium,/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"cTv" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/brown/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_x = 9; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"cTy" = (/obj/floor_decal/corner/yellow/mono,/obj/machinery/vending/coffee{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"cTP" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/blue,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"cTR" = (/obj/random/maintenance,/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/coin,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/borderfloorblack/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"cTV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"cUd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/vending/snack{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"cUe" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"cUn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cUz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"cUD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/sign/warning/pods/south{dir = 4; pixel_x = -32},/obj/floor_decal/borderfloorblack/corner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"cUI" = (/obj/structure/table/standard,/obj/item/paper{pixel_y = 5},/obj/random/toy{pixel_x = -11; pixel_y = -2},/obj/random/toy{pixel_x = 14; pixel_y = 5},/obj/structure/sign/poster/nyc/wild_cargo{pixel_y = 32},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"cUK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"cUP" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/glass/bolted/cycling{frequency = 1380; id_tag = "merchant_shuttle_station_outer"; name = "Docking Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"cUR" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"cVc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 2; name = "Medical Reception"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"cVd" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"cVl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{controlled = 0; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000; pressure_checks = 2; pressure_checks_default = 2; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d3starboard) -"cVp" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/space) -"cVB" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/device/flashlight/lamp/green{pixel_x = -6; pixel_y = 13},/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cVE" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/door/blast/regular{dir = 4; id_tag = "d1portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"cVF" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{pixel_y = 32},/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood/walnut,/area/space) -"cVG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"cVI" = (/obj/floor_decal/industrial/traffic{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cWb" = (/turf/simulated/wall/titanium,/area/shuttle/petrov/cockpit) -"cWd" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_11"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"cWh" = (/obj/structure/closet/crate/internals/fuel,/obj/floor_decal/spline/plain/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"cWn" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"cWt" = (/obj/structure/bed/chair/office/teal{dir = 8},/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"cWv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"cWz" = (/obj/machinery/light/small{dir = 8},/obj/floor_decal/carpet/green{dir = 8},/turf/simulated/floor/carpet/green,/area/space) -"cWK" = (/obj/structure/bed/chair/office/green{dir = 1},/obj/floor_decal/corner/paleblue,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"cXg" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"cXj" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cXk" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/space) -"cXp" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/wood/maple{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"cXs" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"cXt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/reinforced,/area/space) -"cXu" = (/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/staging) -"cXB" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/brown/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/brown/bordercorner2{dir = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"cXD" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"cXE" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_port"},/obj/structure/catwalk,/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; id_tag = "td_port"; name = "Third Deck Port Airlock Controller"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"cXG" = (/obj/floor_decal/spline/fancy/black,/obj/structure/closet/fridge/meat,/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"cXI" = (/obj/machinery/door/blast/shutters{dir = 8; id_tag = "qm_warehouse"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"cXU" = (/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner,/obj/machinery/door/airlock/civilian{name = "Closet"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"cXW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/floor_decal/corner/grey{dir = 10},/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"cYb" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/table/woodentable/walnut,/obj/floor_decal/spline/fancy/black{dir = 9},/obj/item/rolled_towel/green_stripped,/obj/item/rolled_towel/blue_stripped,/obj/item/rolled_towel/red_stripped,/obj/item/rolled_towel/pink_stripped,/turf/simulated/floor/grass/cut,/area/space) -"cYd" = (/obj/structure/bed/chair/shuttle/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"cYe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"cYk" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 2; id_tag = "xenobio4_vent"; name = "Chamber Vent"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"cYn" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/table/rack{dir = 8},/obj/random/maintenance,/obj/random/masks,/turf/simulated/floor/tiled/techfloor,/area/space) -"cYp" = (/obj/floor_decal/corner/red/diagonal,/obj/random/junk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"cYq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/security{name = "HOS' waiting room"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"cYC" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "escape_pod_3_berth"; name = "escape pod three berth controller"; pixel_x = -20; pixel_y = 32; tag_door = "escape_pod_3_berth_hatch"},/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"cYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"cYH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"cYM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/bordercorner{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"cYN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/space) -"cYQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood/walnut,/area/space) -"cYT" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"cYV" = (/obj/machinery/cryopod/robot{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"cZc" = (/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"cZj" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"cZo" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1443; id = "containment_in"; use_power = 1},/turf/simulated/floor/reinforced,/area/space) -"cZw" = (/obj/shuttle_landmark/ert/deck2,/turf/space,/area/space) -"cZz" = (/obj/structure/closet/coffin,/obj/structure/railing/mapped,/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"cZE" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"cZO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"cZP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/machinery/sparker{id_tag = "engines-2"; pixel_x = -24},/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"cZT" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/outline/blue,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"cZU" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"cZY" = (/obj/machinery/turretid/stun{control_area = list(/area/turret_protected/ai_upload); name = "AI Upload turret control"; pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"daa" = (/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/maintenance{name = "Xenoflora Lab Maintenance"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/research) -"dac" = (/obj/structure/sign/warning/docking_area{dir = 1},/turf/simulated/wall/r_wall/hull,/area/maintenance/fourthdeck/forestarboard) -"dag" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"dal" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dan" = (/obj/machinery/sleeper{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/borderfloor{color = null; dir = 6},/obj/floor_decal/corner/blue/border{dir = 6},/obj/floor_decal/borderfloor/corner2{color = null},/obj/floor_decal/corner/paleblue/bordercorner2,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"dao" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"daA" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"daC" = (/obj/structure/catwalk,/obj/machinery/constructable_frame/machine_frame,/obj/item/stock_parts/circuitboard/autolathe,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"daE" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"daJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/space) -"daK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 1; pixel_y = -21},/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/space) -"daM" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/door/blast/regular{dir = 4; id_tag = "d4portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"daS" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/security/brig) -"daV" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"daZ" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"dbc" = (/obj/floor_decal/corner/black{dir = 5},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"dbj" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"dbq" = (/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dbt" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"dbu" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dbw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"dby" = (/obj/floor_decal/techfloor{dir = 6},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/machinery/oxygen_pump{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"dbB" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"dbD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"dbG" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"dbH" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"dbV" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"dcb" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dch" = (/obj/item/material/ashtray/glass,/obj/machinery/light{dir = 4},/obj/structure/table,/turf/simulated/floor/carpet,/area/space) -"dcr" = (/obj/decal/cleanable/dirt,/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"dcy" = (/obj/floor_decal/corner/black/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dcz" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"dcD" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dcK" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dcU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"dcW" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"ddj" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/bed/sofa/m/brown,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/space) -"ddl" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/wood/maple{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"ddv" = (/turf/simulated/wall/prepainted,/area/hallway/primary/seconddeck/fore) -"ddI" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"ddK" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"ddW" = (/obj/machinery/telecomms/server/presets/science,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"ddX" = (/obj/floor_decal/solarpanel,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "auxsolarstarboard"; name = "Aft Starboard Solar Array"},/turf/simulated/floor/airless,/area/space) -"ddZ" = (/obj/random_multi/single_item/space_rabbit,/obj/structure/catwalk,/turf/space,/area/space) -"deh" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"dej" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"deq" = (/obj/structure/railing/mapped,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"det" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"dew" = (/obj/machinery/door/airlock/hatch{name = "Cargo Bay Left "; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"deB" = (/obj/structure/rubble,/obj/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"deD" = (/obj/structure/table/rack,/obj/item/aiModule/oxygen,/obj/item/aiModule/oneHuman,/obj/item/aiModule/antimov,/obj/item/aiModule/teleporterOffline,/obj/item/aiModule/quarantine,/obj/item/aiModule/purge,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/red,/obj/machinery/door/window{autoset_access = 0; dir = 4; name = "High-Risk Modules"; req_access = list("ACCESS_CAPTAIN")},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"deG" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/storage/mirror{pixel_x = -1; pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"deI" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/green/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"deM" = (/obj/structure/bed/chair/shuttle{dir = 8},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"deO" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/b_green/border{dir = 9},/obj/floor_decal/corner/b_green/bordercorner2{dir = 1},/obj/machinery/light{dir = 8},/obj/item/storage/firstaid/light{pixel_x = -8; pixel_y = -4},/obj/item/storage/firstaid/light{pixel_x = -8; pixel_y = 4},/obj/item/storage/firstaid/light{pixel_x = -8; pixel_y = 12},/obj/item/storage/firstaid/light{pixel_x = 6; pixel_y = -4},/obj/item/storage/firstaid/light{pixel_x = 6; pixel_y = 4},/obj/item/storage/firstaid/light{pixel_x = 6; pixel_y = 12},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"deT" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/tiled/dark,/area/bridge) -"dfd" = (/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/disposalpipe/segment,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"dfl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"dfs" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/obj/machinery/meter,/obj/structure/fireaxecabinet{pixel_y = 32},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"dfG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/ironing_board_structure,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"dfI" = (/obj/machinery/sparker{id_tag = "Xenobio"; pixel_y = 22},/turf/simulated/floor/reinforced,/area/space) -"dfK" = (/turf/simulated/wall/prepainted,/area/rnd/office) -"dfO" = (/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"dfP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"dfT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dgc" = (/obj/machinery/computer/modular/preset/security{dir = 4},/obj/machinery/button/windowtint{dir = 1; id = "cadetwindow"; pixel_x = 6; pixel_y = -21},/obj/machinery/light_switch{dir = 1; pixel_x = -6; pixel_y = -21},/turf/simulated/floor/wood/mahogany,/area/space) -"dgh" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/rnd/development) -"dgj" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/item/sticky_pad/random,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"dgk" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"dgr" = (/obj/structure/table/rack{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/stack/material/glass/reinforced/fifty,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dgx" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dgC" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"dgE" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"dgH" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall/r_wall/hull,/area/hallway/primary/fourthdeck/center) -"dgK" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 8; id_tag = "EngineRadiatorViewport"; name = "Engine Radiator Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/plating,/area/engineering/engine_room) -"dgN" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"dgO" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"dgP" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"dgR" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"dgT" = (/obj/floor_decal/borderfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"dhc" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge) -"dhe" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"dhj" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/titanium,/area/exploration_shuttle/power) -"dhl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"dhC" = (/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"dhH" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"dhI" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/item/cell/device/standard,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dii" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/engineering{dir = 4; name = "Engine Control Room"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/engineering/engine_monitoring) -"dij" = (/obj/structure/catwalk,/obj/machinery/barrier,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"din" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"diG" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/white,/obj/item/tape_roll,/obj/floor_decal/corner/grey/diagonal,/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 8},/obj/decal/cleanable/blood/oil,/turf/simulated/floor/tiled,/area/space) -"diI" = (/obj/floor_decal/carpet/orange,/obj/floor_decal/carpet/orange{dir = 8},/obj/floor_decal/carpet/orange{dir = 10},/obj/item/screwdriver,/turf/simulated/floor/carpet/orange,/area/space) -"diN" = (/obj/structure/table/glass,/obj/machinery/microscope,/obj/floor_decal/borderfloorwhite{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"diO" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/space) -"diP" = (/obj/structure/hygiene/sink{pixel_y = -12},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"diT" = (/obj/machinery/computer/modular/preset/security{dir = 8},/obj/floor_decal/borderfloor/full,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"diZ" = (/obj/machinery/door/window/brigdoor/southright{dir = 4; id = "Cell 3"; name = "Cell three"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "security_permabrig_third_cell_shutters"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"djg" = (/obj/floor_decal/corner/black/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dji" = (/obj/machinery/light/spot,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"djp" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/spline/plain/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"djt" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/computer/modular/preset/civilian{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"djw" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"djA" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"djF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"djH" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"djN" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/structure/bed/chair/padded/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"djQ" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"djU" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"dkd" = (/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/games{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"dkf" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Quartermaster"},/obj/structure/noticeboard{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/space) -"dkg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dkl" = (/obj/machinery/air_sensor{id_tag = "testchamber_sensor"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dkt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"dkC" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"dkI" = (/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/super/critical{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/reinforced,/area/space) -"dkJ" = (/obj/machinery/button/blast_door{dir = 4; id_tag = "qm_warehouse"; name = "Warehouse Shutters Control"; pixel_x = -24; req_access = list("ACCESS_CARGO")},/obj/floor_decal/borderfloor/corner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"dkR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/forestarboard) -"dkS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"dkV" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"dlr" = (/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/floordetail/edgedrain{dir = 8},/obj/floor_decal/corner/paleblue,/obj/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"dlH" = (/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/cockpit) -"dlI" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"dlN" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/item/stool/padded/red,/turf/simulated/floor/tiled,/area/vacant/cargo) -"dlO" = (/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"dlV" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"dlX" = (/obj/machinery/atmospherics/unary/tank/air,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dma" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Server Access"; req_access = newlist(); secured_wires = 1},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/chamber) -"dmd" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"dme" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"dml" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"dmo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dmw" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small,/obj/machinery/light_switch{pixel_x = 10; pixel_y = -21},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dmA" = (/obj/structure/catwalk,/obj/floor_decal/corner/red/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dmG" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dmM" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"dmN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"dmQ" = (/obj/item/stool/bar,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"dmW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"dng" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"dnh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/space) -"dnl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "firingspace"; name = "FIRING RANGE SAFETY SHIELD"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/red,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"dnu" = (/obj/structure/table/marble,/obj/machinery/cooker/cereal,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"dnx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"dnz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/sign/warning/compressed_gas{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"dnB" = (/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/floor_decal/corner/green/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dnG" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Aft Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"dnL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/aft) -"dnQ" = (/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "calypso_shuttle_pump_out_internal"},/obj/structure/handrail{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"dnR" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/masks,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dnV" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "HOP"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/blue/border{dir = 10},/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/blue/bordercorner2{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dnY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dob" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/techfloor,/obj/floor_decal/corner/paleblue{dir = 8},/obj/floor_decal/corner/black,/obj/machinery/light/spot,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"dof" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/space) -"doj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/space) -"dol" = (/obj/floor_decal/corner/red/diagonal,/obj/decal/cleanable/flour,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"dou" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "chemistry_lockdown"; name = "Chemistry Shutters"},/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/medical/chemistry) -"doG" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/suit_storage_unit/standard_unit{req_access = newlist()},/obj/machinery/button/alternate/door/bolts{id_tag = "bridge_safe_exterior"; name = "safe room door-control"; pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"doJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 9},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"doM" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/chapel/main) -"doP" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"doV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"dpn" = (/obj/structure/table/standard,/obj/item/storage/box/detergent,/obj/item/storage/box/detergent,/obj/item/ironing_iron,/turf/simulated/floor/tiled/freezer,/area/space) -"dpp" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"dpq" = (/obj/floor_decal/corner/purple/border{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"dps" = (/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/vending/snix,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"dpu" = (/obj/structure/flora/ausbushes/brflowers,/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"dpG" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/office) -"dpI" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge) -"dpR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"dpT" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"dpX" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 9},/turf/simulated/floor/carpet/purple,/area/space) -"dpY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/plating,/area/space) -"dqa" = (/obj/structure/table/standard,/obj/item/book/manual/nuclear,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"dqe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"dqh" = (/obj/structure/closet{closet_appearance = /singleton/closet_appearance/secure_closet/engineering/tools},/obj/item/storage/toolbox/mechanical,/obj/item/tape_roll,/obj/random/powercell,/obj/item/clothing/glasses/welding,/obj/item/device/flashlight/maglight,/obj/item/device/flash,/obj/item/device/geiger,/obj/item/device/multitool,/obj/item/storage/box/lights/mixed,/obj/item/device/synthesized_instrument/guitar,/obj/random/single/color/cable_coil,/obj/random/firstaid,/obj/random/material,/obj/item/clothing/gloves/insulated,/obj/item/clothing/mask/plunger,/turf/simulated/floor/tiled/monotile,/area/vacant/cargo) -"dqi" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{name = "Internal Affairs Agent Dorm"; secured_wires = 1},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dqu" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/obj/structure/bed/padded,/obj/item/bedsheet/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"dqv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{dir = 1; name = "Internal Affairs Agent Maintaince"; secured_wires = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dqz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"dqB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/space) -"dqF" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"dqP" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"dqY" = (/obj/structure/railing/mapped{dir = 1},/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"dra" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/random/maintenance,/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/auxpower) -"drh" = (/obj/structure/table/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding,/obj/item/storage/belt/utility,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/space) -"dro" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/vehicle/train/cargo/trolley,/obj/floor_decal/spline/plain/brown{dir = 10},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"drr" = (/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"drx" = (/obj/item/stool/padded,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"dry" = (/obj/machinery/computer/modular/preset/dock{dir = 1},/obj/floor_decal/corner/yellow/half,/turf/simulated/floor/tiled,/area/quartermaster/office) -"drA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"drH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"drK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"drP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"dsg" = (/obj/structure/closet/bombcloset,/turf/simulated/floor/tiled/techfloor,/area/space) -"dsj" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"dsk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dsm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dsp" = (/obj/floor_decal/corner/black/border,/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dsE" = (/obj/machinery/light{dir = 4},/obj/structure/table/steel_reinforced,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dsW" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/corner/purple,/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"dsX" = (/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"dsY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"dte" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"dtn" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"dto" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"dtt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng3_outer"; name = "First Deck Starboard Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1starboard) -"dtv" = (/obj/item/broken_bottle{pixel_x = 10},/obj/machinery/light_switch{dir = 4; pixel_x = -23},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"dty" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"dtE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"dtV" = (/obj/item/trash/beef{pixel_x = -9; pixel_y = 2},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"dtY" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"dua" = (/obj/structure/bed/sofa/l/brown{dir = 1},/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood,/area/space) -"dug" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Output"; name_tag = "Engine Output"},/obj/machinery/light,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_smes) -"dul" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"dus" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"dut" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/catwalk_plated,/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"duu" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"dux" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lightgrey/border{dir = 10},/obj/structure/flora/pottedplant/tall,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"duy" = (/obj/structure/table/steel,/obj/item/book/manual/nt_regs,/obj/item/folder/nt,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/space) -"duz" = (/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/forestarboard) -"duA" = (/obj/structure/bed/chair/wood/maple,/obj/floor_decal/spline/fancy/black{dir = 9},/turf/simulated/floor/grass/cut,/area/space) -"duB" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/space) -"duD" = (/obj/machinery/door/airlock/civilian{req_access = newlist()},/obj/machinery/door/firedoor,/turf/simulated/floor/wood/walnut,/area/vacant/cargo) -"duE" = (/obj/floor_decal/corner/black/mono,/obj/machinery/door/airlock/command{dir = 1; name = "Head Of Security Dorm"; req_access = newlist(); secured_wires = 1; stripe_color = "#9d2300"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"duF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"duG" = (/obj/structure/table/standard,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light/spot{dir = 8},/obj/item/folder/nt,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"duJ" = (/obj/floor_decal/corner/green/three_quarters{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/corner/purple/bordercorner,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "xenobotany_access_maintaince"; name = "Xenobotany Lab Access Console"; pixel_y = -24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"duT" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/bed/chair/pew/left,/turf/simulated/floor/wood,/area/space) -"dva" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"dvc" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/lattice,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dvd" = (/obj/structure/sign/warning/biohazard{pixel_y = -24},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/table/standard,/obj/machinery/computer/atmoscontrol/laptop{monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dvv" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"dvx" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"dvy" = (/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"dvA" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/maple,/area/space) -"dvG" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/space) -"dvK" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"dvU" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"dvW" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dwg" = (/obj/structure/sign/warning/vent_port{dir = 1},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1port) -"dwh" = (/obj/machinery/sparker{id_tag = "Isocell3"; pixel_x = -18},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"dwo" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"dwq" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"dwz" = (/obj/floor_decal/corner/red,/obj/machinery/button/blast_door{dir = 8; id_tag = "security_permabrig_second_cell_shutters"; name = "2nd Cell Shutters"; pixel_x = 21; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/flasher{dir = 8; id_tag = "security_second_cell_flash"; pixel_x = 22; pixel_y = -9; req_access = list("ACCESS_SECURITY")},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dwC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"dwD" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"dwG" = (/obj/floor_decal/corner/red,/obj/structure/disposalpipe/segment,/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "bar_private_room_1"; name = "Unlock"; pixel_x = -24; pixel_y = -7; req_access = list("ACCESS_BAR")},/turf/simulated/floor/tiled/dark,/area/space) -"dwQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"dwT" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dwV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dxa" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/obj/structure/sign/warning/nosmoking_1{dir = 1; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"dxd" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/flora/pottedplant/orientaltree,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled,/area/rnd/office) -"dxg" = (/obj/floor_decal/borderfloor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"dxi" = (/obj/structure/sign/warning/hot_exhaust{dir = 4; pixel_x = -32},/obj/structure/catwalk,/turf/simulated/open,/area/space) -"dxk" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/computer/cryopod{pixel_y = -24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"dxl" = (/obj/structure/sign/warning/moving_parts{dir = 8; pixel_x = 34},/obj/machinery/conveyor{id = "charon_cargo_out"; name = "charon interior conveyor belt"},/turf/simulated/floor/tiled,/area/space) -"dxo" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/closet/secure_closet{name = "long term chamber locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor/full,/obj/floor_decal/industrial/hatch/orange,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"dxq" = (/obj/floor_decal/chapel,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"dxB" = (/obj/structure/bed/chair/office/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"dxC" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/floor_decal/techfloor,/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"dxN" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"dxS" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 4},/obj/machinery/light,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"dxX" = (/obj/floor_decal/techfloor/orange,/obj/machinery/conveyor{dir = 4; id = "compactor"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dxZ" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/aftstarboard) -"dyd" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"dyp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"dys" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"dyx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"dyA" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_smes) -"dyC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"dyD" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/floor_decal/spline/fancy/wood,/obj/structure/sign/directions/science{dir = 4; pixel_x = 32},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"dyK" = (/obj/structure/sign/poster{pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"dyS" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/photocopier,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"dyT" = (/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "concheckwindow"; name = "Operation Checkpoint Shutters"; opacity = 0},/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/security/opscheck) -"dzc" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{pixel_x = -2; pixel_y = 9},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{pixel_x = 3; pixel_y = 1},/turf/simulated/floor/wood/mahogany,/area/space) -"dzd" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"dze" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/machinery/vending/coffee{dir = 8},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark,/area/space) -"dzh" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/floor_decal/corner/green/bordercorner{dir = 1},/obj/floor_decal/corner/green/bordercorner,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"dzl" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"dzn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/flasher{id_tag = "security_perm_chamber_flash"; name = "Floor mounted flash"},/turf/simulated/floor/tiled/freezer,/area/space) -"dzt" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dzv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dzD" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"dzO" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Telecommunications"; charge = 5e+006; input_attempt = 1; input_level = 250000; output_attempt = 1; output_level = 250000},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"dzP" = (/obj/machinery/recharger/wallcharger{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/obj/random/snack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"dzR" = (/obj/structure/closet/crate/trashcart,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"dzV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hydroponics) -"dzY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/button/blast_door{id_tag = "petrovcell3"; name = "Test Chamber Vent"; pixel_x = -26; pixel_y = -26},/turf/simulated/floor/tiled/white,/area/space) -"dAl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"dAn" = (/obj/machinery/tele_beacon,/obj/structure/handrail{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"dAr" = (/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"dAw" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"dAy" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dAE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"dAF" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/closet/emcloset,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"dAH" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_4_pump"},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/grey/border{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dAQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dAX" = (/obj/machinery/door/airlock/glass/security{name = "Forensics"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"dAY" = (/obj/item/stack/tile/walnut{pixel_x = -20; pixel_y = 17},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/bar) -"dBb" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/gps,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dBd" = (/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"dBh" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dBm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) -"dBn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"dBq" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Security Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"dBv" = (/obj/structure/table/standard,/obj/item/sticky_pad/random,/obj/item/tape_roll,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/corner/yellow/mono,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Primary Tool Storage"},/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"dBw" = (/obj/machinery/atmospherics/unary/freezer{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dBG" = (/obj/machinery/computer/modular/preset/security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"dBI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dBO" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"dBP" = (/obj/machinery/telecomms/receiver/preset_right,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"dBS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/item/stool/padded/red,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dBU" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/morgue) -"dBV" = (/obj/machinery/door/blast/regular{dir = 4; id_tag = "EngineVent"; name = "Reactor Vent"},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"dCa" = (/obj/machinery/cooker/grill,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Garden - Straboard"},/turf/simulated/floor/grass/cut,/area/space) -"dCc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dCe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"dCk" = (/obj/floor_decal/corner/black/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dCm" = (/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"dCn" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"dCr" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"dCx" = (/obj/structure/table/standard,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/analyzer{pixel_x = 6},/obj/item/device/integrated_electronics/wirer,/obj/item/device/integrated_circuit_printer,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/development) -"dCA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"dCG" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/red/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"dCM" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/random/trash,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"dCO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dCQ" = (/obj/structure/cart{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftstarboard) -"dCW" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dDa" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dDb" = (/obj/random_multi/single_item/space_rabbit,/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"dDe" = (/obj/structure/railing/mapped,/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dDf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoset_access = 0; name = "Petrov Dock"; req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS"))},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"dDg" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/item/target/alien,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dDj" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dDp" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"dDx" = (/obj/machinery/door/airlock/hatch{autoset_access = 0; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"dDz" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"dDA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"dDG" = (/obj/machinery/atmospherics/unary/tank/air{dir = 8; start_pressure = 450},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"dDN" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"dDU" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"dDW" = (/turf/simulated/wall/prepainted{can_open = 1},/area/maintenance/firstdeck/aftstarboard) -"dEa" = (/obj/floor_decal/techfloor{dir = 10},/obj/structure/bed/chair/padded/blue{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"dEo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dEs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"dEv" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/foreport) -"dEy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/green/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"dEB" = (/turf/unsimulated/mask,/area/hallway/primary/firstdeck/center) -"dEI" = (/obj/random/obstruction,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dEQ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/space) -"dET" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"dFn" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"dFw" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 40},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"dFA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/meter,/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"dFF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"dFK" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dFQ" = (/obj/structure/bed/chair/padded/blue{dir = 1},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"dFT" = (/obj/structure/catwalk,/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dFV" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/red,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"dFZ" = (/obj/machinery/floodlight,/obj/floor_decal/spline/plain/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"dGd" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"dGe" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/table/rack,/obj/random/junkfood,/obj/random/hat,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"dGi" = (/obj/floor_decal/corner/black/mono,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"dGl" = (/obj/floor_decal/techfloor/corner,/obj/random/trash,/obj/structure/cart{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"dGx" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space) -"dGz" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"dGA" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/structure/handrail{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dGC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/window/basic{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"dGG" = (/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/grass/cut,/area/space) -"dGJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/corner/grey/border{dir = 9},/obj/floor_decal/corner/grey/bordercorner,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"dGT" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/bed/chair/padded/red{dir = 1},/obj/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"dGY" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dHa" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/computer/modular/preset/civilian/professional{dir = 4},/obj/floor_decal/corner/purple/full,/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"dHi" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/item/stack/material/aluminium/fifty,/obj/item/stack/material/plastic/fifty,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/tiled/techfloor,/area/space) -"dHu" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"dHv" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/office) -"dHB" = (/obj/structure/sign/warning/hot_exhaust{dir = 1; pixel_y = -32},/turf/space,/area/space) -"dHC" = (/obj/structure/cryofeed,/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"dHF" = (/obj/machinery/door/airlock/command{autoset_access = 0; name = "Flight Control Tower"; req_access = list("ACCESS_HANGAR")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"dHK" = (/turf/simulated/wall/r_wall/hull,/area/engineering/hardstorage) -"dHN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/engineering{name = "Equipment"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"dHW" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"dIb" = (/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_airlock"; name = "Engine Room Airlock Controlls"; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/airlock_sensor{id_tag = "engine_airlock_sensor"; master_tag = "engine_airlock"; name = "Cycle Airlock"; pixel_x = 14; pixel_y = 24},/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"dIi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/structure/flora/pottedplant/tall,/obj/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/space) -"dIj" = (/obj/machinery/button/blast_door{id_tag = "sup_office"; name = "Desk Shutter Control"; pixel_y = 22; req_access = list("ACCESS_CARGO")},/obj/machinery/light{dir = 1},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/yellow,/obj/floor_decal/corner/yellow/three_quarters{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"dIn" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"dIp" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/rnd/entry) -"dIu" = (/obj/machinery/tele_beacon,/turf/simulated/floor/reinforced,/area/space) -"dIE" = (/obj/machinery/robotics_fabricator,/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"dIF" = (/obj/floor_decal/corner/purple/half{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"dIL" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dIP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/spot,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"dIR" = (/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 30},/obj/structure/table/woodentable_reinforced/walnut,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"dIX" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/structure/bed/chair/padded/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dJd" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/material/ashtray/plastic{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood/mahogany,/area/space) -"dJe" = (/obj/floor_decal/industrial/traffic,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dJg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"dJh" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/closet/emcloset/anchored,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"dJo" = (/obj/structure/table/glass,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc/high/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"dJp" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "petrov_shuttle_pump"},/obj/floor_decal/techfloor,/obj/structure/handrail{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dJq" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "admin_shuttle_dock_sensor"; master_tag = "admin_shuttle_dock"; pixel_x = -24; pixel_y = -8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"dJs" = (/obj/structure/bed/chair/padded/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dJA" = (/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/turf/simulated/floor/plating,/area/space) -"dJE" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"dJO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/hygiene/toilet{name = "captain's throne"},/obj/item/soap,/obj/structure/curtain/open/shower,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/freezer,/area/space) -"dJP" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 14},/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 1},/turf/simulated/floor/carpet/blue,/area/space) -"dJQ" = (/obj/floor_decal/borderfloorblack,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dJY" = (/obj/item/extinguisher/mini,/obj/structure/table,/turf/simulated/floor/wood/walnut,/area/space) -"dJZ" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"dKc" = (/obj/machinery/computer/modular/preset/library,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"dKd" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"dKh" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"dKv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/medical{name = "Hospital Back Room"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dKB" = (/turf/simulated/wall/r_wall/prepainted,/area/security/nuke_storage) -"dKE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"dKQ" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dLa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"dLd" = (/obj/structure/table/standard,/obj/random/maintenance,/turf/simulated/floor/tiled/freezer,/area/space) -"dLe" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/atmos/storage) -"dLj" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/morgue{dir = 2},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/forestarboard) -"dLk" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"dLm" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"dLu" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/starboard) -"dLD" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Port Hallway"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dLE" = (/obj/floor_decal/industrial/outline/grey,/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/porta_turret{dir = 8},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "ai_core_airlock"; name = "AI Core Airlock Console"; pixel_y = 24; req_access = list("ACCESS_AI_UPLOAD"); tag_airpump = "ai_core_pump"; tag_chamber_sensor = "ai_core_sensor"; tag_exterior_door = "ai_core_outer"; tag_interior_door = "ai_core_inner"},/turf/simulated/floor/tiled/techmaint,/area/space) -"dLK" = (/obj/structure/table/steel_reinforced,/obj/item/device/synthesized_instrument/synthesizer,/turf/simulated/floor/tiled/steel_grid,/area/space) -"dLM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"dLU" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "xenobotany_access_maintaince_outer"; name = "Xenobotany Lab Access"},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology/xenoflora) -"dMb" = (/obj/structure/disposaloutlet{dir = 8; name = "cargo outlet"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"dMc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"dMl" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "toxins_petrov_shutters"; name = "Mixing Chamber Blast Shutters"},/turf/simulated/floor/reinforced,/area/space) -"dMy" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"dMC" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"dME" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dMG" = (/turf/simulated/floor/tiled,/area/assembly/robotics) -"dMH" = (/obj/structure/closet/crate/secure/biohazard{req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER"))},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dMK" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "lobb_hall_shutt"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dMQ" = (/obj/machinery/atmospherics/unary/tank{color = "#ff0000"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"dMS" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"dNa" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "Solar Control - Third Deck - Port"},/turf/simulated/floor/plating,/area/space) -"dNb" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "pathfinder_office"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{id_tag = "exp_leader_window_to_space"; name = "Exploration Leader Window Blast Door"},/turf/simulated/floor/plating,/area/space) -"dNc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/paper_bin{pixel_y = 10},/obj/item/pen{pixel_y = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"dNg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dNj" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"dNk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"dNl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/button/alternate/door/bolts{id_tag = "civsafedoor"; name = "safe room door-control"; pixel_y = 24},/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"dNp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"dNr" = (/obj/structure/railing/mapped,/obj/structure/bed/sofa/r/blue,/turf/simulated/floor/plating,/area/space) -"dNs" = (/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"dNz" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/research) -"dND" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"dNN" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply{pixel_x = -4; pixel_y = -8},/obj/random/tech_supply{pixel_x = 6; pixel_y = 7},/obj/random/tool{pixel_x = 4; pixel_y = -3},/obj/random/tool{pixel_x = -2},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"dNR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dNT" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/wine,/obj/item/reagent_containers/food/drinks/glass2/wine,/obj/item/reagent_containers/food/drinks/bottle/tadmorwine,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"dNX" = (/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"dNY" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "visiting_room_windows_shutters"; name = "Brig's visiting room shutters"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/security/prison) -"dOc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/wall/r_wall/hull{can_open = 1},/area/space) -"dOd" = (/obj/machinery/computer/modular/preset/medical{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"dOh" = (/obj/machinery/door/window/brigdoor/westleft{dir = 4; req_access = newlist()},/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"dOk" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/item/modular_computer/telescreen/preset/generic{pixel_x = -32; pixel_y = -9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"dOl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"dOA" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"dOB" = (/obj/structure/sign/nanotrasen{dir = 4},/turf/simulated/wall/r_wall/hull,/area/space) -"dOH" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"dOK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"dOR" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dPg" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/bridge) -"dPl" = (/turf/simulated/wall/r_wall/prepainted,/area/tcommsat/storage) -"dPn" = (/obj/structure/coatrack{pixel_x = 11; pixel_y = 23},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood/ebony,/area/space) -"dPq" = (/obj/structure/rubble,/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/decal/cleanable/filth,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"dPt" = (/obj/machinery/vending/cola{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/lime/mono,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"dPv" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/door/blast/regular{dir = 4; id_tag = "d2portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"dPB" = (/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"dPE" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "bar_private_room_2"; name = "Unlock"; pixel_x = 24; pixel_y = -7; req_access = list("ACCESS_BAR")},/turf/simulated/floor/tiled/dark,/area/space) -"dPO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dPP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"dQa" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "CO21p_in"; injecting = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3starboard) -"dQl" = (/obj/machinery/door/airlock/civilian{name = "Long Term Prison"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"dQp" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/shuttle/petrov/cockpit) -"dQq" = (/obj/floor_decal/borderfloorblack,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dQs" = (/obj/machinery/beehive,/obj/floor_decal/corner/green/half,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"dQG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"dQH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dQM" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/xenobiology/entry) -"dQP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"dQU" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/techfloor,/obj/floor_decal/corner/paleblue{dir = 10},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"dQY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"dRc" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"dRi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"dRl" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 4; id_tag = "hydro<-bar"; name = "Hydro Shutters"},/turf/simulated/floor/plating,/area/space) -"dRn" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 10},/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"dRq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"dRs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"dRw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"dRD" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"dRO" = (/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dRP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"dRQ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dSr" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) -"dSt" = (/obj/machinery/door/airlock/external/bolted{dir = 4; frequency = 1380; id_tag = "escape_pod_3_hatch"; name = "Escape Pod Three Hatch"},/obj/machinery/shield_diffuser,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dSz" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/structure/bed/chair/wood/maple,/turf/simulated/floor/wood/bamboo,/area/space) -"dSC" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"dSQ" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"dSS" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"dSU" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"dSW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/engineering{locked = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"dSX" = (/obj/structure/sign/warning/secure_area{dir = 8; pixel_x = 32},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"dSZ" = (/obj/structure/shuttle/engine/propulsion,/obj/structure/shuttle/engine/heater{pixel_y = 32},/turf/simulated/floor/airless,/area/space) -"dTa" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall/prepainted,/area/turret_protected/ai) -"dTq" = (/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"dTy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"dTA" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "misclab"; name = "Test Chamber Blast Doors"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/plating,/area/space) -"dTD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 4},/obj/structure/fireaxecabinet{dir = 4; pixel_y = 32},/obj/structure/table/rack,/obj/item/barrier,/obj/item/barrier,/obj/item/storage/box/lights/mixed,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"dTL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dTW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/barrier,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"dTZ" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"dUd" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Portables"},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"dUh" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/structure/fireaxecabinet{pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"dUn" = (/obj/structure/disposalpipe/segment,/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine{department = "HOS"},/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/newscaster/security_unit{pixel_x = -26; pixel_y = 2},/turf/simulated/floor/tiled/dark,/area/space) -"dUq" = (/obj/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/pew/mahogany,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"dUD" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"dUF" = (/obj/machinery/atmospherics/omni/mixer{active_power_usage = 7500; tag_north = 1; tag_north_con = 0.5; tag_south = 2; tag_west = 1; tag_west_con = 0.5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"dUH" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/bed/chair/padded/purple{dir = 8},/turf/simulated/floor/tiled,/area/space) -"dUK" = (/obj/structure/table/woodentable/maple,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/floor_decal/carpet/purple{dir = 8},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"dUQ" = (/obj/decal/cleanable/filth,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"dUV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"dUW" = (/obj/machinery/atmospherics/valve/digital{name = "TEG bypass valve"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"dVc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/decal/cleanable/cobweb{dir = 1},/obj/random/maintenance,/turf/simulated/floor/tiled/freezer,/area/space) -"dVj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"dVn" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"dVo" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/turf/simulated/floor/reinforced,/area/space) -"dVr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"dVs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"dVD" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"dVG" = (/obj/structure/flora/seaweed/mid,/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"dVH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood/mahogany,/area/space) -"dVJ" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Chamber Input"},/obj/machinery/button/blast_door{id_tag = "toxins_petrov_exhaust"; name = "Chamber Vent"; pixel_x = 8; pixel_y = -24},/obj/machinery/button/blast_door{id_tag = "toxins_petrov_shutters"; name = "Chamber Protective Shutters"; pixel_x = -5; pixel_y = -24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"dVL" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"dVN" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"dVP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"dVR" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/rad_collector,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"dVT" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "solar_port_inner"; name = "Engineering External Access"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"dWf" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"dWg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Fuel Bay"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/fuelbay) -"dWi" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/table/woodentable_reinforced/ebony,/obj/machinery/recharger,/obj/machinery/light/spot,/turf/simulated/floor/wood/walnut,/area/space) -"dWn" = (/obj/structure/catwalk,/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"dWp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/carpet,/area/space) -"dWr" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 8},/obj/structure/bed/padded,/obj/item/bedsheet/purple,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"dWt" = (/obj/structure/flora/pottedplant/decorative,/obj/floor_decal/corner/lime/half{dir = 4},/obj/floor_decal/corner/lime{dir = 9},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Stairwell"},/turf/simulated/floor/tiled,/area/space) -"dWy" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/space) -"dWA" = (/obj/machinery/papershredder,/obj/machinery/computer/guestpass{pixel_y = 30},/turf/simulated/floor/carpet/blue2,/area/space) -"dWB" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"dWC" = (/obj/structure/bed/chair/padded/red{dir = 1},/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"dWF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"dWJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"dWO" = (/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"dWS" = (/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"dXc" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/floor_decal/carpet/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/floor/carpet/blue,/area/space) -"dXe" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"dXp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"dXy" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"dXI" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"dXO" = (/obj/floor_decal/techfloor,/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"dYa" = (/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"dYd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"dYi" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"dYk" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"dYl" = (/obj/structure/sign/directions/supply{dir = 8; pixel_y = -24},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Central Stairwell"; dir = 1},/turf/simulated/open,/area/space) -"dYr" = (/obj/machinery/vending/cigarette{dir = 4},/obj/floor_decal/corner/lime/bordercorner2,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/machinery/light,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/space) -"dYs" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"dYx" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG,/obj/floor_decal/carpet/blue2{dir = 1},/turf/simulated/floor/carpet/blue2,/area/space) -"dYA" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"dYG" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 8; pixel_x = 22},/obj/machinery/light{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"dYL" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"dYS" = (/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"dYW" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/equipstorage) -"dYZ" = (/obj/structure/bed/chair/office/purple{dir = 8},/obj/floor_decal/corner/purple/three_quarters{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"dZf" = (/obj/structure/filingcabinet,/obj/item/folder/white,/obj/item/folder/blue,/obj/item/folder/red,/obj/item/folder/yellow,/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"dZg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"dZm" = (/obj/structure/sign/warning/high_voltage{dir = 4},/turf/simulated/wall/r_wall/prepainted,/area/maintenance/substation/seconddeck) -"dZu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"dZA" = (/obj/structure/hygiene/faucet,/turf/simulated/floor/pool,/area/space) -"dZF" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/grass/cut,/area/space) -"dZK" = (/obj/structure/fitness/weightlifter,/obj/floor_decal/corner/red/full,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"dZU" = (/obj/structure/table/glass,/obj/random/maintenance,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/item/defibrillator/loaded,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"dZW" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/barrier,/turf/simulated/floor/plating,/area/space) -"eae" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"eaf" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/generic,/obj/random/junk,/obj/item/frame/apc,/turf/simulated/floor/plating,/area/vacant/mess) -"eah" = (/obj/machinery/light_switch{dir = 4; pixel_x = -23},/obj/item/reagent_containers/food/snacks/semki,/obj/structure/displaycase{icon_state = "labcageb0"},/turf/simulated/floor/plating,/area/space) -"eai" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/prepainted,/area/maintenance/substation/fourthdeck) -"eap" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/reinforced,/area/maintenance/firstdeck/aftport) -"eav" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/borderfloor{color = null; dir = 5},/obj/floor_decal/corner/blue/border{dir = 5},/obj/floor_decal/borderfloor/corner2{color = null; dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/structure/table/reinforced,/obj/item/roller_bed,/obj/item/roller_bed,/obj/structure/closet/medical_wall{pixel_y = 32},/obj/item/storage/firstaid/sleekstab,/obj/item/storage/firstaid/sleekstab,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"eaD" = (/obj/machinery/artifact_scanpad,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"eaN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/freezer,/area/space) -"eaO" = (/obj/structure/hygiene/shower{pixel_y = 15},/obj/floor_decal/industrial/warning,/obj/decal/cleanable/blood,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"eaT" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"ebc" = (/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"ebf" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/machinery/sparker{id_tag = "engines"; pixel_x = -24},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"ebh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ebl" = (/obj/machinery/button/blast_door{id_tag = "xenobioa3"; name = "Containment Blast Doors"; pixel_x = -6; pixel_y = 21; req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/corner/purple,/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ebs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ebt" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ebz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"ebF" = (/obj/structure/bed/chair/padded/green{dir = 1},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/green/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/space) -"ebG" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"ebM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/sign/warning/nosmoking_1{dir = 1; pixel_y = -32},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"ece" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/space) -"ecg" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"ecl" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_2_pump"},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_2"; name = "escape pod two controller"; pixel_x = -20; tag_door = "escape_pod_2_hatch"},/obj/floor_decal/borderfloor/corner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ecA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "bo_windows"},/turf/simulated/floor/plating,/area/space) -"ecC" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/corner/green/bordercorner,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"ecF" = (/obj/machinery/disposal,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ecJ" = (/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_permabrig_second_cell_shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"ecL" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"ecS" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"edb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/space) -"edc" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"edh" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "visiting_room_windows_shutters"; name = "Brig's visiting room shutters"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/prison) -"edi" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"edj" = (/obj/fluid_mapped,/obj/item/clothing/under/swimsuit/red,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"edr" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/folder/blue,/turf/simulated/floor/tiled,/area/space) -"edt" = (/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled/dark,/area/space) -"edw" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"edA" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/bridge/hallway) -"edD" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"edI" = (/obj/structure/closet/secure_closet/prospector,/obj/item/shuttle_beacon,/obj/item/device/radio,/obj/item/storage/belt/utility/full,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/brown/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"edK" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"edR" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/space) -"eea" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"eec" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Subgrid"; name_tag = "Engine Subgrid"},/obj/machinery/power/apc/super/critical{name = "south bump"; pixel_y = -24},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_smes) -"eee" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"eek" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/item/storage/briefcase/crimekit{pixel_y = 10},/obj/machinery/light_switch{pixel_y = 28},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/space) -"eep" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{dir = 1; id_tag = "engine_atmos_airlock"; name = "Engine Room Airlock Controlls"; pixel_y = -24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"eeE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"eeI" = (/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"eeL" = (/obj/machinery/light/small/emergency{dir = 4},/obj/structure/closet/crate/freezer/rations,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/space) -"efa" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"efb" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"eff" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"efi" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"efu" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"efw" = (/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/computer/air_control{input_tag = "o23p_in"; name = "Oxygen Supply Control"; output_tag = "o23p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngOxygen3"},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"efB" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/space) -"efD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"efM" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "AI Core Access"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/turret_protected/ai) -"efZ" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 4; id_tag = "rescue_shuttle_dock_airlock_pump"; power_rating = 25000},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"egb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"egi" = (/obj/structure/sign/warning/hot_exhaust{dir = 4; pixel_x = -32},/turf/space,/area/space) -"egj" = (/turf/simulated/wall/prepainted,/area/hallway/primary/seconddeck/center) -"egn" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"ego" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"egr" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"egt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/spline/fancy/wood/cee,/obj/machinery/door/window/westright{dir = 2},/obj/machinery/door/window/westright{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"egz" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"egI" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 8},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"egJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset/anchored,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"egL" = (/obj/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"egT" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"egW" = (/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/corner/purple/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"egZ" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/space) -"eha" = (/obj/machinery/reagentgrinder,/turf/simulated/floor/plating,/area/vacant/infirmary) -"ehs" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Air to Portables"},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"ehw" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"ehB" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"ehI" = (/obj/machinery/telecomms/processor/preset_four,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"ehT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"ehU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/recharger,/obj/structure/table/steel_reinforced,/obj/floor_decal/techfloor,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"ehW" = (/obj/structure/railing/mapped,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eia" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"eig" = (/obj/structure/curtain/medical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"eiD" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3starboard) -"eiO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Medical Equipment"; sort_type = "Medical Equipment"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"eiQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"eiT" = (/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/explorer,/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"eiV" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eiW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Fusion Substation"; name_tag = "Fusion Substation"},/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"eja" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_1_pump"},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 8; frequency = 1380; id_tag = "escape_pod_1"; name = "escape pod one controller"; pixel_x = 20; tag_door = "escape_pod_1_hatch"},/obj/floor_decal/borderfloor/corner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ejc" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ejh" = (/obj/structure/table/steel,/obj/item/book/manual/engineering_construction,/obj/item/book/manual/atmospipes,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ejn" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ejo" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "security_permabrig_lobby_shutters"},/obj/paint_stripe/red,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/turf/simulated/floor/plating,/area/space) -"ejp" = (/obj/structure/bed/sofa/l/black{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"ejy" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ejB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ejL" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/blue2,/area/space) -"ejO" = (/obj/machinery/door/airlock/hatch/maintenance{name = "First Deck Port Nacelle"; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1port) -"ejQ" = (/obj/catwalk_plated,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"ejR" = (/obj/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"ejS" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"ekc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"eke" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"ekr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance{autoset_access = 0; name = "Third Deck Starboard Nacelle"; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"ekv" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - Entry"; dir = 4},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ekw" = (/obj/machinery/atmospherics/portables_connector,/obj/structure/handrail{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"ekG" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"ekH" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"ekP" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ekS" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/obj/decal/cleanable/molten_item,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"ekV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary) -"ekY" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ekZ" = (/obj/structure/table/standard,/obj/item/device/integrated_electronics/wirer,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/analyzer{pixel_x = 6},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"elu" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"elC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"elF" = (/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/door/blast/regular/open{density = 0; id_tag = "cockpit_shutters"; name = "Protective Shutters"; opacity = 0},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/cockpit) -"elJ" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood{icon_state = "wood_broken0"},/area/maintenance/firstdeck/forestarboard) -"elL" = (/obj/machinery/atmospherics/pipe/zpipe/up/cyan{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/railing/mapped,/turf/simulated/floor/airless,/area/space) -"elN" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"elP" = (/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"elS" = (/obj/structure/reagent_dispensers/watertank,/obj/random/soap,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftstarboard) -"elU" = (/obj/structure/table/woodentable/walnut,/obj/item/material/ashtray/bronze,/obj/item/storage/mirror{pixel_x = 24},/turf/simulated/floor/wood/ebony,/area/space) -"emb" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/auxpower) -"emi" = (/obj/machinery/door/window{autoset_access = 0; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"emo" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"emp" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"emx" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/newscaster{pixel_y = 32},/obj/structure/closet/l3closet/scientist/multi,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"emC" = (/obj/machinery/camera/network/research{c_tag = "Research - Special Containment"; dir = 4; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/reinforced,/area/space) -"emE" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/pump,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"emK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled,/area/space) -"emO" = (/obj/structure/bed/padded,/obj/item/bedsheet/brown,/obj/structure/curtain/open/bed{anchored = 1},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/brown/border{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/brown/bordercorner2{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"emS" = (/obj/structure/disposalpipe/up{dir = 4},/obj/floor_decal/industrial/warning/full,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/fuel{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"emU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Utility Up"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/fourthdeck) -"emY" = (/obj/machinery/cryopod,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/brown/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/machinery/computer/cryopod{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"enc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"enp" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/light/spot{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"enq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"enG" = (/obj/structure/window/basic{dir = 8},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"enM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"enS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"enW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"enZ" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eod" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eoi" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/light{dir = 8},/obj/structure/hygiene/drain,/turf/simulated/floor/tiled/steel_grid,/area/space) -"eok" = (/turf/simulated/wall/r_wall/hull,/area/hallway/primary/fourthdeck/center) -"eon" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"eou" = (/obj/machinery/robotics_fabricator,/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"eoG" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"eoJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/security{dir = 4; name = "Evidence Storage"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"eoO" = (/obj/structure/catwalk,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eoQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"eoT" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"eoV" = (/obj/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "firing_range_pump"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"eoX" = (/obj/machinery/artifact_analyser,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"epe" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"epf" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 2; id_tag = "SupermatterDoor"; name = "Supermatter Access Blast Door"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"epi" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 1; target_pressure = 15000; unlocked = 1},/turf/simulated/wall/r_wall/prepainted,/area/maintenance/incinerator) -"epj" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"epk" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/mop/broom,/obj/item/mop/broom{pixel_x = -4; pixel_y = 9},/obj/item/mop/broom{pixel_x = 7; pixel_y = 9},/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/ebony,/area/space) -"epl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/galley) -"epn" = (/obj/structure/bed/sofa/r/brown{dir = 4},/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"epp" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/space) -"epq" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/floor_decal/corner/black/full,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"eps" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"epy" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"epB" = (/obj/structure/bed/sofa/l/blue{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 6},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 10},/turf/simulated/floor/carpet/red,/area/space) -"epF" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"epQ" = (/obj/structure/morgue,/obj/floor_decal/industrial/outline/blue,/obj/structure/closet/walllocker{pixel_x = -28},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"epT" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eqc" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/flora/pottedplant/mysterious,/turf/simulated/floor/tiled,/area/rnd/office) -"eqd" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/folder/red,/obj/item/folder/red,/obj/item/pen,/obj/item/hand_labeler,/obj/machinery/recharger/wallcharger{dir = 1; pixel_y = -22},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/catwalk_plated,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/fore) -"eqm" = (/turf/simulated/wall/r_wall/hull{can_open = 1},/area/vacant/cargo) -"eqo" = (/obj/decal/cleanable/dirt,/obj/item/ore/iron,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eqq" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/space) -"eqs" = (/obj/structure/table/steel,/obj/item/storage/box/glasses,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"eqt" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"eqA" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack/dark,/obj/item/storage/firstaid/trauma{pixel_x = -7; pixel_y = 7},/obj/item/storage/firstaid/fire{pixel_x = 7; pixel_y = 7},/obj/item/storage/firstaid/trauma{pixel_x = -7},/obj/item/storage/firstaid/fire{pixel_x = 7},/obj/floor_decal/spline/plain/paleblue{dir = 1},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"eqF" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "fuel2p_in"; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3port) -"eqS" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/space) -"eqV" = (/obj/floor_decal/corner/red/mono,/obj/structure/closet/secure_closet{name = "Checkpoint Locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/button/blast_door{dir = 4; id_tag = "lob_bridge_lock"; name = "Bridge and lobby shutoff"; pixel_x = -29},/obj/machinery/button/blast_door{dir = 4; id_tag = "lob_rear_exit"; name = "Rear exit blastdoor"; pixel_x = -20},/turf/simulated/floor/tiled/techfloor,/area/space) -"eqX" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eqZ" = (/obj/floor_decal/industrial/loading,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/forestarboard) -"era" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"erj" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/tiled/white,/area/space) -"erp" = (/obj/structure/sign/warning/hot_exhaust{dir = 4; pixel_x = -32},/turf/simulated/open,/area/space) -"err" = (/obj/machinery/power/emitter{dir = 8},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"ert" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/device/tape,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"erx" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"erA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"erN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"erQ" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar{id = "auxsolarstrbbridge"; name = "Bridge Auxiliary Solar Array"},/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"erR" = (/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Cryogenics"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"erY" = (/obj/floor_decal/industrial/outline/yellow,/obj/random/closet,/obj/decal/cleanable/dirt,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"erZ" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/brown/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/computer/modular/preset/supply_public{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"esd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"esg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary) -"esi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"esk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"esl" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "xenobotany_access_maintaince_inner"; name = "Xenobotany Lab Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white/monotile,/area/rnd/xenobiology/xenoflora) -"esn" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"eso" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/table/steel,/obj/machinery/button/blast_door{id_tag = "security_sergeant_shutters"; name = "Desk Shutters"; pixel_x = 6; pixel_y = -4; req_access = list("ACCESS_WARDEN")},/obj/structure/window/reinforced{dir = 1},/obj/item/folder/red,/turf/simulated/floor/tiled/dark,/area/space) -"esx" = (/obj/machinery/power/terminal,/obj/item/stool,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"esy" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"esB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"esD" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"esF" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/shield_diffuser,/obj/structure/disposaloutlet{dir = 1},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/industrial/warning/cee,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"etl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"etw" = (/obj/machinery/computer/ship/sensors{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"etx" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_5_hatch"; name = "Escape Pod Five Hatch"},/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"etA" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"etE" = (/obj/floor_decal/corner/purple/three_quarters,/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"etK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"etL" = (/obj/structure/table/rack,/obj/item/pickaxe{pixel_x = 5},/obj/item/pickaxe{pixel_x = -2; pixel_y = -2},/obj/item/shovel{pixel_x = -5},/obj/item/shovel{pixel_x = -5},/obj/item/shovel{pixel_x = -5},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"etS" = (/obj/structure/closet/toolcloset/excavation{locked = 1; req_access = list("ACCESS_XENOARCH")},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/brown/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"etT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/forestarboard) -"etV" = (/obj/shuttle_landmark/lift/medical_bottom,/turf/simulated/floor/plating,/area/medical/morgue) -"eui" = (/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"euj" = (/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techmaint,/area/space) -"euo" = (/obj/machinery/door/airlock{door_color = "#78523b"; name = "Sauna"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eup" = (/obj/item/stool/padded,/obj/floor_decal/corner/grey{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"euE" = (/obj/machinery/recharge_station,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/research{c_tag = "Research - Mech Bay"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"euR" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"euX" = (/obj/structure/railing/mapped,/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/ivbag/nanoblood,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/opos,/obj/item/reagent_containers/ivbag/blood/human/aneg,/obj/item/reagent_containers/ivbag/blood/human/apos,/obj/item/reagent_containers/ivbag/blood/human/bneg,/obj/item/reagent_containers/ivbag/blood/human/bpos,/obj/item/reagent_containers/ivbag/blood/human/abneg,/obj/structure/curtain/medical,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"evo" = (/obj/structure/table/woodentable/ebony,/obj/item/frame/light_switch,/obj/item/frame/fire_alarm,/obj/item/frame/air_alarm{pixel_y = -16},/obj/machinery/light,/turf/simulated/floor/wood/yew,/area/space) -"evv" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/tiled/techmaint,/area/space) -"evy" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"evz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/space) -"evB" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/aftport) -"evE" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"evG" = (/obj/random/closet,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"evH" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"evY" = (/obj/floor_decal/techfloor,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"ewe" = (/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"ewh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/flasher{id_tag = "security_pod_flash"; name = "Floor mounted flash"},/turf/simulated/floor/tiled/dark,/area/space) -"ewl" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"ewq" = (/obj/structure/sign/warning/vent_port,/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3starboard) -"ewu" = (/obj/floor_decal/chapel{dir = 4},/obj/structure/bed/chair/pew/left/mahogany,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"eww" = (/obj/machinery/atmospherics/omni/filter{tag_east = 8; tag_north = 1; tag_south = 2},/obj/engine_setup/filter,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"ewz" = (/turf/simulated/floor/carpet/green,/area/space) -"ewF" = (/obj/machinery/light/spot,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"ewO" = (/obj/floor_decal/corner/black{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"ewQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"ewZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"exj" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"exk" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1port) -"exm" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "concheckwindow2"; name = "Research Checkpoint Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"exs" = (/obj/structure/sign/warning/airlock{dir = 1},/turf/simulated/wall/prepainted,/area/space) -"exA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"exG" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"exI" = (/obj/structure/railing/mapped{dir = 4},/turf/space,/area/space) -"exK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hydroponics) -"exM" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"exY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Engineering Bay"; sort_type = "Engineering Bay"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"eyb" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/incinerator) -"eyl" = (/obj/machinery/light/small/emergency{dir = 8},/obj/structure/closet/crate/freezer/rations,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"eym" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"eyn" = (/obj/machinery/light,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"eyr" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eyD" = (/obj/machinery/button/windowtint{dir = 4; id = "interrogation_no2_windows"; pixel_x = -22; pixel_y = 8},/obj/floor_decal/borderfloor{dir = 9},/obj/machinery/computer/modular/preset/security{dir = 4},/obj/floor_decal/corner/black/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"eyF" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "iaaleft"},/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 6},/turf/simulated/floor/carpet/blue,/area/space) -"eyO" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"eyQ" = (/obj/structure/sign/directions/engineering{dir = 4; pixel_y = 31},/obj/structure/sign/directions/supply{dir = 4; pixel_y = 24},/turf/simulated/open,/area/space) -"eyY" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3port) -"ezl" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/space) -"ezv" = (/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"ezy" = (/obj/structure/table/glass,/obj/item/towel/random,/obj/item/reagent_containers/spray/cleaner{pixel_x = -6; pixel_y = 8},/obj/random/soap,/obj/item/lipstick/random{pixel_x = 5; pixel_y = 5},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"ezz" = (/obj/structure/table/woodentable_reinforced/mahogany/walnut,/obj/floor_decal/spline/fancy/black,/obj/item/flame/candle,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"ezA" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/rack,/obj/item/stack/material/ocp/fifty,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"ezH" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"ezI" = (/obj/floor_decal/techfloor{dir = 5},/obj/structure/closet/crate,/obj/decal/cleanable/dirt,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ezK" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass/cut,/area/rnd/xenobiology/xenoflora) -"ezL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"ezP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 9},/obj/machinery/door/blast/shutters{dir = 2; id_tag = "eng_QAW"; name = "Quick Access Warehouse"},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/machinery/button/blast_door{desc = "A remote control-switch for shutters."; id_tag = "eng_QAW"; name = "Shutters Control"; pixel_x = -24; req_access = list("ACCESS_ENGINEERING")},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eAa" = (/obj/machinery/door/window{dir = 1},/turf/simulated/floor/tiled/freezer,/area/space) -"eAi" = (/obj/structure/table/steel,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eAj" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"eAk" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/mining/brace{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"eAo" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/dark,/area/bridge) -"eAu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "escape_pod_4_berth"; name = "escape pod four berth controller"; pixel_x = 20; pixel_y = -32; tag_door = "escape_pod_4_berth_hatch"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"eAz" = (/turf/simulated/wall/prepainted,/area/medical/staging) -"eAG" = (/obj/machinery/computer/ship/engines{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"eAH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"eAI" = (/obj/machinery/button/blast_door{desc = "A remote control-switch for shutters."; id_tag = "eva_shutters"; name = "EVA Shutters"; pixel_y = 21; req_access = list("ACCESS_EVA")},/turf/simulated/floor/tiled/techfloor,/area/space) -"eAM" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "lobb_shutt"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"eAP" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/space) -"eAS" = (/obj/structure/ladder/up,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eAT" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/wall/ocp_wall,/area/engineering/engine_room) -"eAU" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 4},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"eBq" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/obj/structure/sign/warning/pods/east{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"eBs" = (/turf/simulated/wall/prepainted,/area/hallway/primary/fourthdeck/fore) -"eBw" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"eBC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/vault/bolted{id_tag = "bridge_safe_exterior"; name = "Bridge Safe Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/bridge) -"eBD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/games,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"eBL" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/light{dir = 8},/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/entry) -"eBY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/kitchen,/obj/item/reagent_containers/food/condiment/enzyme,/obj/item/reagent_containers/food/condiment/barbecue,/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Kitchen - Cooking"},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"eCe" = (/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Treatment Center - Observation"; dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"eCf" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{controlled = 0; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000; pressure_checks = 2; pressure_checks_default = 2; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d1starboard) -"eCj" = (/obj/machinery/disposal,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eCo" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"eCs" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/undies_wardrobe,/obj/machinery/light,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"eCv" = (/obj/floor_decal/borderfloor{dir = 9},/obj/machinery/recharger,/obj/floor_decal/corner/lime/border{dir = 9},/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/space) -"eCy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"eCH" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/civilian{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"eCI" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"eCO" = (/obj/structure/lattice,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space) -"eCP" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"eCQ" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/centralport) -"eCX" = (/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"eCZ" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"eDb" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/security{name = "Visiting Room"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"eDe" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/structure/flora/pottedplant/decorative,/obj/machinery/camera/network/command{c_tag = "Command - Adjutants"; dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"eDg" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"eDk" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "xenobio2"; name = "Containment Blast Doors"; pixel_x = -6; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{id_tag = "xenobio2_vent"; name = "Cell 2 Vent"; pixel_x = 6; req_access = list("ACCESS_RESEARCH")},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eDo" = (/obj/item/folder/red,/obj/structure/table/woodentable_reinforced/ebony,/turf/simulated/floor/carpet/red,/area/space) -"eDq" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"eDt" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/obj/machinery/alarm/monitor/isolation{alarm_id = "petrov1"; dir = 4; pixel_x = -24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"eDx" = (/obj/machinery/light_switch{pixel_x = -10; pixel_y = 28},/obj/structure/table/rack,/obj/floor_decal/spline/plain/yellow{dir = 8},/obj/item/stack/tile/wood{amount = 10},/obj/item/stack/tile/walnut{amount = 10},/obj/item/stack/tile/yew{amount = 10},/obj/item/stack/tile/maple{amount = 10},/obj/item/stack/tile/mahogany{amount = 10},/obj/item/stack/tile/ebony{amount = 10},/obj/item/stack/tile/bamboo{amount = 10},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"eDC" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"eDD" = (/obj/machinery/door/firedoor{dir = 8},/obj/machinery/door/airlock/civilian{dir = 4; name = "Crew General Cabin"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"eDJ" = (/obj/machinery/reagentgrinder,/obj/floor_decal/corner/beige{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/camera/network/medbay{c_tag = "Chemistry"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"eDL" = (/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/thruster/d3port) -"eDM" = (/obj/structure/bed/chair/office/teal{dir = 8},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/railing/mapped{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"eDX" = (/obj/structure/bed/padded,/obj/item/bedsheet/rd,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/syringe,/obj/random/drinkbottle,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"eEb" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"eEi" = (/obj/structure/table/standard,/obj/item/storage/box/detergent{pixel_x = 7; pixel_y = 4},/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"eEw" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/reagent_sublimator,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"eEA" = (/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"eEC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"eEO" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"eEX" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/office/comfy/red{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"eEZ" = (/obj/structure/bed/chair/padded/yellow{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eFd" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"eFf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/decal/cleanable/generic,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"eFg" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"eFn" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eFr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/blue/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/space) -"eFH" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/green/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eFK" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"eFO" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/aftport) -"eFZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"eGe" = (/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"eGC" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"eGR" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/foreport) -"eGS" = (/obj/structure/sign/warning/engineering_access{pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"eGU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"eHb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/holocontrol) -"eHe" = (/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/folder/white,/turf/simulated/floor/tiled/white/monotile,/area/space) -"eHm" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood/walnut,/area/space) -"eHt" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/structure/table/steel_reinforced,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/tiled/techfloor,/area/space) -"eHy" = (/obj/machinery/door/airlock/glass/command{dir = 4; id_tag = "portbridgedoor"; name = "Bridge"; secured_wires = 1},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "bridge_ent"; name = "Bridge Lockdown"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"eHA" = (/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2{dir = 5},/obj/structure/window/reinforced/tinted{dir = 1; icon_state = "window"},/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/blue2,/area/space) -"eHP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"eIe" = (/turf/simulated/wall/prepainted,/area/hallway/primary/fourthdeck/aft) -"eIg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"eIl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"eIn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/space) -"eIo" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"eIr" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "lobb_hall_shutt"; opacity = 0},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eIu" = (/obj/machinery/porta_turret{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"eIv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"eIy" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"eID" = (/obj/machinery/disposal,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"eII" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"eIL" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/red/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"eJb" = (/obj/floor_decal/corner/red/mono,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"eJf" = (/obj/floor_decal/carpet/blue2,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2{dir = 10},/turf/simulated/floor/carpet/blue2,/area/space) -"eJi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/orange,/area/space) -"eJk" = (/obj/structure/table/rack/dark,/obj/structure/railing/mapped,/obj/item/stack/material/wood/yew/twentyfive,/obj/item/stack/material/wood/walnut/twentyfive,/obj/item/stack/material/wood/maple/twentyfive,/obj/item/stack/material/wood/mahogany/ten,/obj/item/stack/material/wood/fifty,/obj/item/stack/material/wood/ebony/ten,/obj/item/stack/material/wood/bamboo/fifty,/obj/floor_decal/spline/plain/black{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"eJn" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/space) -"eJo" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"eJr" = (/obj/machinery/cryopod{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"eJs" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/space) -"eJA" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/b_green/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/b_green/bordercorner2{dir = 10},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"eJG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"eJL" = (/obj/machinery/recharge_station,/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/light_switch{dir = 1; pixel_x = -6; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"eJO" = (/obj/floor_decal/corner/red/bordercee{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eJR" = (/obj/structure/inflatable,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"eJS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"eJT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"eKa" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"eKb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark,/area/space) -"eKi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"eKr" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "bridge_windows"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/bridge) -"eKv" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"eKw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"eKz" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"eKL" = (/obj/structure/table/woodentable/walnut,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart{pixel_x = 7; pixel_y = 2},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{pixel_x = -4; pixel_y = -4},/obj/item/reagent_containers/food/drinks/cans/cola_pork{pixel_x = -3; pixel_y = 12},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"eKN" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/item/storage/box/lights/mixed,/obj/item/clothing/gloves/thick/duty,/obj/machinery/light/small,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"eKO" = (/turf/simulated/wall/r_wall/hull,/area/bridge/storage) -"eKS" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"eKY" = (/obj/structure/closet,/obj/random/maintenance,/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"eLn" = (/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"eLz" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"eLC" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/handrail{dir = 1},/turf/simulated/floor/airless,/area/space) -"eLG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eLH" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/space) -"eLZ" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"eMa" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/commissary) -"eMj" = (/obj/machinery/botany/extractor,/obj/floor_decal/corner/green/half,/obj/floor_decal/corner/purple/border,/obj/machinery/camera/network/research{c_tag = "Research - Xenoflora Lab"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"eMr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"eMt" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/obj/random/junk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"eMv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eMB" = (/obj/floor_decal/corner/black/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eMC" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"eME" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/space) -"eMF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"eML" = (/obj/landmark{name = "carpspawn"},/turf/simulated/open,/area/space) -"eMM" = (/obj/structure/table/standard,/obj/item/roller_bed,/obj/item/roller_bed,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"eMP" = (/obj/floor_decal/corner/red/full,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"eMR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"eMW" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eMY" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"eNe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"eNi" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"eNk" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/chemistry) -"eNl" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/waterstore) -"eNs" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"eNt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/space) -"eNw" = (/obj/floor_decal/corner/black/bordercorner,/obj/structure/handrail,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eNz" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eNG" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 8; id_tag = "hydro<-bar"; name = "Hydro Shutters"},/turf/simulated/floor/plating,/area/space) -"eNJ" = (/obj/structure/table/standard,/obj/item/storage/box/rxglasses,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"eNO" = (/obj/structure/table/woodentable/walnut,/obj/item/storage/box/donut,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"eNR" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"eNZ" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"eOb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"eOj" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_2_pump"},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eOo" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eOx" = (/obj/structure/table/marble,/obj/item/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"eOA" = (/obj/shuttle_landmark/merc/deck1,/turf/space,/area/space) -"eOE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"ePa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"ePe" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"ePj" = (/obj/structure/filingcabinet/chestdrawer,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"ePm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "escape_pod_2_berth"; name = "escape pod two berth controller"; pixel_x = 20; pixel_y = -32; tag_door = "escape_pod_2_berth_hatch"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"ePs" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/aneg,/obj/item/reagent_containers/ivbag/blood/human/apos,/obj/item/reagent_containers/ivbag/blood/human/bneg,/obj/item/reagent_containers/ivbag/blood/human/bpos,/obj/item/reagent_containers/ivbag/nanoblood,/obj/floor_decal/industrial/outline/yellow,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/item/reagent_containers/food/snacks/candy/donor,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"ePv" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 9},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"ePE" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"ePH" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ePX" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_2"},/turf/simulated/floor/reinforced,/area/vacant/monitoring) -"eQk" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/door/window/brigdoor/northleft{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"eQv" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "xenobio1"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"eQC" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"eQE" = (/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/security/nuke_storage) -"eQO" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/space) -"eQQ" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"eQR" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"eQV" = (/obj/structure/table/standard,/obj/item/reagent_containers/glass/bucket,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"eQY" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"eRj" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"eRn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"eRu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"eRz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"eRD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"eRE" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"eRH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"eRP" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/catwalk_plated,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"eRU" = (/obj/structure/closet/secure_closet/personal,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"eRV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"eSe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/forestarboard) -"eSg" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"eSi" = (/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"eSp" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/artifact,/obj/machinery/anomaly_container,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"eSq" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"eSs" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/standard,/obj/item/extinguisher/mini,/obj/item/extinguisher/mini,/obj/item/extinguisher/mini,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"eSF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Robotics Laboratory"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"eSI" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/plating,/area/space) -"eSJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eSL" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "toxin_lab_access_inner"; name = "Toxin Lab Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"eSR" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eSY" = (/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1port) -"eTa" = (/obj/structure/table/rack,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"eTg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"eTu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"eTv" = (/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "admin_shuttle_dock_inner"; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"eTF" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) -"eTK" = (/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"eTL" = (/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"eUc" = (/obj/machinery/suit_storage_unit/atmos/alt,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eUd" = (/obj/machinery/door/airlock/external/bolted{dir = 4; frequency = 1380; id_tag = "escape_pod_4_hatch"; name = "Escape Pod Four Hatch"},/obj/machinery/shield_diffuser,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eUo" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3port) -"eUs" = (/obj/structure/bed/chair/wood/walnut{dir = 1},/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"eUx" = (/obj/machinery/cryopod,/obj/machinery/computer/cryopod{pixel_y = -24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"eUz" = (/obj/floor_decal/corner/black/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"eUL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"eUR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"eUW" = (/obj/floor_decal/corner/yellow,/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"eVa" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/command{dir = 4; id_tag = "hosdoor"; name = "Head Of Security"; req_access = newlist(); secured_wires = 1; stripe_color = "#9d2300"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"eVd" = (/obj/structure/flora/seaweed,/mob/living/simple_animal/aquatic/fish/grump{name = "Titus"},/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"eVe" = (/obj/machinery/space_heater{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/space) -"eVv" = (/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/firstaid/empty,/obj/item/storage/firstaid/empty,/obj/item/storage/firstaid/empty,/obj/item/device/scanner/health,/obj/item/device/scanner/health,/obj/item/device/scanner/health,/obj/structure/table/rack,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"eVF" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"eVG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"eVI" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"eVJ" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "admin_shuttle_dock_pump"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"eVO" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"eVU" = (/obj/machinery/computer/station_alert/security,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"eVW" = (/obj/structure/closet/emcloset/anchored,/turf/simulated/floor/plating,/area/space) -"eWf" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/structure/bed/chair/shuttle/green{dir = 8},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"eWg" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"eWh" = (/obj/structure/bed/psych,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/carpet/green{dir = 1},/turf/simulated/floor/carpet/green,/area/space) -"eWu" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "auxair_outer"; name = "Auxiliary Air Storage Exterior Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos/storage) -"eWC" = (/obj/machinery/door/airlock/external{autoset_access = 0; req_access = newlist()},/turf/simulated/floor/plating,/area/vacant/cargo) -"eWI" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/space) -"eWN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen/red,/obj/item/pen/blue,/obj/item/pen,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"eWT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"eXb" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eXe" = (/obj/floor_decal/corner/yellow,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"eXn" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"eXv" = (/obj/machinery/door/window/brigdoor/southright{autoset_access = 0; dir = 8; name = "Test Chamber"; req_access = list("ACCESS_TOXINS")},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"eXy" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"eXK" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"eXP" = (/obj/structure/table/reinforced,/obj/item/device/assembly/igniter{pixel_x = -2; pixel_y = -2},/obj/item/device/assembly/igniter{pixel_x = -3; pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 5; pixel_y = 4},/obj/machinery/light/spot,/turf/simulated/floor/reinforced,/area/space) -"eXV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity/bolted{id_tag = "BSD_airlock"; name = "Containment Chamber"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"eYc" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"eYf" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eYh" = (/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/obj/structure/railing/mapped{dir = 4},/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"eYo" = (/obj/floor_decal/corner/blue{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"eYs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"eYz" = (/obj/machinery/light/spot{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/item/device/drone_designator,/obj/item/device/multitool,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"eYD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"eYI" = (/obj/structure/table/standard,/obj/machinery/light_construct{dir = 8},/obj/machinery/light_switch{dir = 1; pixel_y = -21},/obj/random/junk,/turf/simulated/floor/tiled,/area/space) -"eYQ" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/bed/sofa/r/brown{dir = 8},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red{dir = 6},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"eYS" = (/obj/machinery/flasher{id_tag = "security_perm_chamber_flash"; name = "Floor mounted flash"},/turf/simulated/floor/wood/walnut,/area/space) -"eYU" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"eYX" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"eZa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"eZp" = (/obj/machinery/light{dir = 8},/obj/structure/table/woodentable/ebony,/obj/floor_decal/spline/fancy/black{dir = 9},/turf/simulated/floor/wood/maple,/area/space) -"eZr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"eZy" = (/obj/machinery/shieldwallgen,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "misclab"; name = "Test Chamber Blast Doors"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced,/area/space) -"eZB" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"eZI" = (/obj/structure/closet/radiation,/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"eZK" = (/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"eZQ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"eZV" = (/obj/floor_decal/corner/red,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"far" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "bar<-cafe"; name = "Bar Shutters"},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"faw" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"faA" = (/turf/simulated/wall/r_wall/hull,/area/vacant/infirmary) -"faB" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "td_fore_starboard_inner"; name = "Third Deck Fore Starboard Nacelle Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button/airlock_interior{master_tag = "td_fore_starboard"; name = "interior access button"; pixel_y = -24; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"faF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/civilian{id_tag = "toilet1"; name = "Stall One"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"faG" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"faN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/ebony,/area/space) -"fba" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"fbb" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/ore_box,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"fbk" = (/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "cafe_private_room"; name = "Private Room"},/obj/machinery/door/firedoor,/obj/floor_decal/spline/fancy/wood/cee{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"fbs" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fby" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/catwalk_plated,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"fbB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"fbC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fbD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftport) -"fbL" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"fbM" = (/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/item/stack/package_wrap/cargo_wrap,/obj/item/device/destTagger,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"fbN" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "rust_injector"; injecting = 1; use_power = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"fbX" = (/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"fbZ" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"fca" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"fcb" = (/obj/machinery/ai_status_display,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"fcd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"fcf" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/wallframe_spawn/no_grille,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"fcj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fcx" = (/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/space) -"fcy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"fcz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fcC" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/cyan,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"fcI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hydroponics) -"fcN" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"fcQ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"fcT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/standard,/obj/item/device/scanner/spectrometer/adv,/obj/item/stack/material/phoron{amount = 5},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"fda" = (/obj/structure/catwalk,/obj/machinery/light/spot{dir = 8},/turf/simulated/open,/area/space) -"fds" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"fdy" = (/obj/floor_decal/techfloor/orange,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"fdz" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"fdA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/space) -"fdB" = (/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3starboard) -"fdC" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "solar_bridge_port_outer"; locked = 1; name = "Engineering External Access"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fdF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"fdI" = (/obj/machinery/space_heater,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/space) -"fdQ" = (/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"fdR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"fdV" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"fdX" = (/obj/structure/lattice,/obj/structure/catwalk,/turf/simulated/open,/area/space) -"fdZ" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"fea" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = -5; pixel_y = 4},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = 8; pixel_y = 6},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"fef" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"fei" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/closet/crate/trashcart,/obj/random/firstaid,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"fej" = (/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"fev" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"feA" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/space) -"feE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/floor_decal/borderfloorblack/corner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"feJ" = (/obj/structure/closet/crate/radiation,/obj/item/stack/material/tritium/ten,/obj/item/stack/material/tritium/ten,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"feM" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"feR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"ffc" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/floor_decal/corner/green/bordercorner2{dir = 5},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"ffd" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ffh" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ffj" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ffp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ffu" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"ffv" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/techfloor,/obj/machinery/portable_atmospherics/canister/empty/phoron,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"ffw" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/command{autoset_access = 0; dir = 4; name = "Bridge Access"; req_access = list("ACCESS_SEC_DOORS")},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "lob_rear_exit"; name = "Rear exit blastdoor"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ffy" = (/obj/floor_decal/corner/green/border{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ffB" = (/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"ffF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ffN" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"ffU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"fga" = (/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/wood/bamboo,/area/space) -"fgf" = (/obj/structure/holoplant,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fgo" = (/obj/machinery/door/blast/regular/open{id_tag = "xenobio2"; name = "Containment Blast Doors"},/obj/wallframe_spawn/reinforced_phoron/hull,/turf/simulated/floor/plating,/area/space) -"fgG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/hologram/holopad{pixel_x = -16},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fgI" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fgP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fgR" = (/obj/machinery/power/terminal,/obj/floor_decal/industrial/warning,/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"fgX" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_8"; name = "escape pod eight controller"; pixel_x = -20; tag_door = "escape_pod_8_hatch"},/obj/structure/bed/chair/shuttle{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"fhh" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"fhs" = (/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"fht" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fhu" = (/obj/floor_decal/corner/blue/three_quarters{dir = 1},/obj/structure/table/rack,/obj/item/clothing/mask/gas/half,/obj/machinery/door/window/northleft{dir = 2; name = "CMO's HCM"; req_access = newlist()},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"fhw" = (/obj/structure/table/rack{dir = 8},/obj/item/screwdriver,/obj/item/wrench,/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/space) -"fhP" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fhV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"fhX" = (/obj/floor_decal/techfloor{dir = 10},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = -24},/obj/structure/bed/chair/padded/blue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"fhY" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"fih" = (/obj/machinery/door/window/southright{dir = 1; name = "Test Chamber"},/obj/machinery/door/window/southright{name = "Test Chamber"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"fik" = (/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"fit" = (/obj/structure/closet/cabinet,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"fiz" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"fiA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"fiC" = (/obj/machinery/door/morgue{name = "Confession Booth"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"fiD" = (/obj/machinery/suit_cycler/exploration,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"fiO" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"fiP" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fiQ" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/bed/sofa/r/brown,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"fiW" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/device/paicard,/obj/random/tech_supply,/obj/floor_decal/corner/yellow/mono,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"fiX" = (/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/fourthdeck/center) -"fjh" = (/obj/floor_decal/corner/blue{dir = 6},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"fjl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"fjo" = (/obj/structure/closet/secure_closet/prospector,/obj/item/shuttle_beacon,/obj/item/device/radio,/obj/item/storage/belt/utility/full,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/brown/border{dir = 9},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"fju" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/vault/bolted{autoset_access = 0; id_tag = "bridgesafe_front"; name = "Auxillary Safe Room Door"},/obj/item/airlock_brace{req_access = list("ACCESS_BRIDGE")},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/bridge) -"fjw" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1441; id = "waste_in"; use_power = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fjF" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"fjG" = (/obj/floor_decal/corner/green/border,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white/monotile,/area/space) -"fjQ" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fjT" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/mining{autoset_access = 0; req_access = list("ACCESS_HANGAR")},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/space) -"fjV" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fkc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/prepainted{can_open = 1},/area/space) -"fkf" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fki" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "interrogation_no1_windows"},/turf/simulated/floor/plating,/area/space) -"fkJ" = (/obj/item/stool,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"fkN" = (/obj/machinery/access_button/airlock_interior{master_tag = "prototype_controller"; pixel_x = 23; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"fkQ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"fkR" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fkW" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"fkY" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "calypso_shuttle_pump"},/obj/machinery/embedded_controller/radio/airlock/docking_port{cycle_to_external_air = 1; dir = 8; frequency = 1331; id_tag = "calypso_shuttle"; pixel_x = 20; req_access = list("ACCESS_EXPEDITION_SHUTTLE"); tag_exterior_sensor = "calypso_shuttle_exterior_sensor"},/obj/floor_decal/industrial/warning/full,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"flf" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"flh" = (/obj/machinery/light/spot{dir = 8},/obj/machinery/computer/modular/preset/engineering{dir = 4},/obj/floor_decal/corner/brown/mono,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"flr" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/gym) -"flu" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/machinery/door/window/southright{dir = 4; name = "RD's HCM"; req_access = newlist()},/obj/item/rig/hazmat/equipped,/obj/item/clothing/mask/gas/half,/obj/floor_decal/corner/purple/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"flz" = (/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"flB" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"flG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"flJ" = (/obj/structure/closet/crate,/obj/floor_decal/techfloor{dir = 8},/obj/random/tech_supply,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"flP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) -"flQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"fmm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"fmo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"fmq" = (/obj/machinery/sleeper,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"fmy" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lightgrey/border{dir = 6},/obj/machinery/vending/coffee{dir = 1},/turf/simulated/floor/tiled,/area/space) -"fmD" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"fmH" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "IAA Office"},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fmK" = (/obj/floor_decal/corner/black{dir = 5},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"fmM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{dir = 4; name = "Brig Storage"},/turf/simulated/floor/tiled/monotile,/area/space) -"fmP" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/industrial/outline/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"fmT" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/nuke_cylinder_dispenser{pixel_x = 2},/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"fnb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fne" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall/hull,/area/space) -"fno" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"fns" = (/obj/floor_decal/techfloor{dir = 5},/obj/structure/flora/pottedplant/overgrown,/obj/structure/sign/warning/smoking{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"fnv" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"fnN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"fnX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"fnZ" = (/obj/structure/railing/mapped,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/space) -"foc" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary) -"fog" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"fok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/woodentable/walnut,/obj/machinery/microwave,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"fol" = (/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"foq" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/outline/blue,/obj/machinery/light/small{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fov" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/black/mono,/obj/structure/bed/chair/rounded/blue{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"foH" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"foM" = (/obj/machinery/computer/modular/preset/engineering{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - West"; dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"foS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"foZ" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/woodentable/walnut,/obj/item/storage/firstaid/regular,/obj/floor_decal/spline/fancy/black{dir = 5},/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"fpc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fpg" = (/obj/structure/sign/warning/docking_area{pixel_y = 32},/obj/structure/catwalk,/obj/structure/railing/mapped,/turf/space,/area/space) -"fpj" = (/obj/machinery/door/firedoor{dir = 8},/obj/machinery/door/airlock/civilian{autoset_access = 0; dir = 4; name = "Engineers General Cabin"; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"fpo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/button/blast_door{dir = 8; id_tag = "security_lockdown"; name = "SECURITY LOCKDOWN"; pixel_x = 24; pixel_y = -12; req_access = list("ACCESS_HEAD_OF_SECURITY")},/obj/machinery/button/blast_door{dir = 8; id_tag = "firingspace"; name = "Firing Range Shields"; pixel_x = 24; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/button/windowtint{dir = 8; id = "hos_windows"; pixel_x = 24; pixel_y = 12},/turf/simulated/floor/carpet/red,/area/space) -"fpp" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/table/marble,/obj/item/hand_labeler,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"fpq" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/mob/living/simple_animal/hostile/retaliate/parrot/Poly,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"fpv" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/steel,/obj/item/tank/nitrogen,/obj/item/clothing/mask/breath,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"fpB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"fpD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"fpG" = (/obj/machinery/smartfridge/drying_rack{dir = 1},/obj/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/monotile,/area/space) -"fpI" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/holocontrol) -"fpP" = (/obj/random/trash,/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"fpU" = (/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fpW" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"fpX" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fqc" = (/turf/simulated/wall/titanium,/area/shuttle/petrov/cell2) -"fqh" = (/obj/machinery/door/airlock/multi_tile/medical{id_tag = "med_crit_d1"; name = "Critical Wing First"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_crit1"; name = "Infirmary Staging Shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"fqm" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/closet/emcloset,/obj/machinery/camera/network/command{c_tag = "Command - Starboard Bridge Entry"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"fqq" = (/obj/paint/red,/obj/paint_stripe/white,/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/titanium,/area/guppy_hangar/start) -"fqy" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"fqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"fqJ" = (/turf/simulated/wall/prepainted,/area/chapel/office) -"fqR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"fqU" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/warning/cee{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"fqW" = (/obj/structure/flora/pottedplant/fern,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 10},/turf/simulated/floor/carpet/purple,/area/space) -"frc" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/port) -"frh" = (/obj/item/stool/bar,/obj/decal/cleanable/filth,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"frl" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fru" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/crystal{name = "Adherent Maintenance"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/adherent) -"frJ" = (/obj/machinery/atmospherics/valve/digital{dir = 8; name = "DOCKING TO WASTE"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/radiation,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"frK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"frN" = (/obj/random/trash,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftstarboard) -"frX" = (/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"fsb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/table/woodentable_reinforced/walnut,/obj/item/storage/box/donut,/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/carpet/red{dir = 1},/turf/simulated/floor/carpet/red,/area/space) -"fsc" = (/obj/machinery/constructable_frame/computerframe{dir = 4},/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"fsu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"fsI" = (/obj/machinery/atmospherics/unary/freezer,/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"fsK" = (/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"fsR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/vacant/cargo) -"fsX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"ftg" = (/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/structure/sign/warning/pods/east{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"ftn" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/research{name = "Toxins Storage"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fto" = (/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/borderfloorblack{dir = 6},/turf/simulated/floor/tiled/dark,/area/bridge) -"ftw" = (/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/thirddeck/center) -"ftD" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"ftF" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ftI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"ftL" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/fourth_deck{c_tag = "Escape Pods - Port - Dock"; dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"ftM" = (/obj/structure/disposalpipe/segment,/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/space) -"ftP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"ftS" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "solar_port"; pixel_x = -5; pixel_y = 21; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/airlock_sensor{id_tag = "solar_port_sensor"; master_tag = "solar_port"; pixel_x = 8; pixel_y = 27},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"ftU" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"fua" = (/obj/structure/table/glass,/obj/random/snack,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fub" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"fuc" = (/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fue" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/bed/sofa/m/red{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"fuf" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/blue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"fuh" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/floor_decal/industrial/outline/grey,/obj/random/action_figure,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"fui" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"ful" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "eng2"; name = "Third Deck Port Nacelle Access"; pixel_x = 20; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/thruster/d3port) -"fuw" = (/obj/decal/cleanable/dirt,/obj/structure/table/steel_reinforced,/obj/item/pen,/obj/item/paper_bin,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fux" = (/turf/simulated/floor/reinforced,/area/vacant/monitoring) -"fuA" = (/obj/floor_decal/borderfloorblack{dir = 10},/turf/simulated/floor/tiled/dark,/area/bridge) -"fuH" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "escape_pod_5_pump"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fuL" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fuP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fuX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/vault/bolted{autoset_access = 0; id_tag = "medsafe_fore"; name = "Emergency Exit"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"fvb" = (/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"fvn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"fvA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/machinery/meter,/obj/floor_decal/techfloor,/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"fvE" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/machinery/atmospherics/binary/pump/on{dir = 4; target_pressure = 200},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"fvF" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/space) -"fvG" = (/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fvJ" = (/obj/structure/catwalk,/obj/structure/handrail,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fvL" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "eng1"; name = "Third Deck Starboard Nacelle Access"; pixel_x = -20; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/power/apc/high/critical{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/camera/network/engineering{c_tag = "Fourth Deck - Starbound Necelle - Airlock"},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"fvM" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fvU" = (/obj/floor_decal/corner/grey/full,/obj/structure/sign/poster{pixel_x = 32},/obj/structure/bed/padded,/obj/item/bedsheet/blue,/turf/simulated/floor/tiled/dark,/area/space) -"fwa" = (/obj/machinery/cryopod{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"fwg" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"fwh" = (/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"fwr" = (/obj/structure/catwalk,/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"fwu" = (/obj/floor_decal/corner/yellow/half{dir = 4},/obj/floor_decal/corner/yellow{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fww" = (/obj/floor_decal/corner/red/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fwy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"fwE" = (/obj/machinery/light,/obj/floor_decal/borderfloor{dir = 6},/obj/structure/closet/hydrant{pixel_x = 28},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fwJ" = (/obj/floor_decal/corner/red/half{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"fwO" = (/obj/floor_decal/industrial/outline/yellow,/obj/random/ironing_board_structure,/obj/decal/cleanable/dirt,/obj/item/ironing_iron,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"fwR" = (/obj/structure/sign/warning/airlock{dir = 8},/turf/simulated/wall/titanium,/area/space) -"fwS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/prepainted,/area/vacant/cargo) -"fwW" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/space) -"fxb" = (/obj/structure/mattress,/obj/item/bedsheet/purple,/obj/item/clothing/gloves/daft_punk,/obj/structure/curtain/bed,/turf/simulated/floor/carpet,/area/maintenance/seconddeck/foreport) -"fxl" = (/obj/structure/reagent_dispensers/water_cooler,/obj/floor_decal/corner/paleblue/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fxm" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"fxn" = (/obj/structure/table/rack,/obj/item/storage/belt/archaeology,/obj/item/storage/belt/archaeology,/obj/item/storage/belt/archaeology,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/pickaxe{pixel_x = 5},/obj/item/pickaxe{pixel_x = -2; pixel_y = -2},/obj/item/stack/flag/red,/obj/item/stack/flag/red,/obj/item/stack/flag/red,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/storage/excavation,/obj/item/device/measuring_tape,/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"fxq" = (/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"fxt" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"fxV" = (/obj/machinery/r_n_d/protolathe,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"fxZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"fyb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"fyc" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"fyd" = (/obj/machinery/flasher{id_tag = "security_perm_chamber_flash"; name = "Floor mounted flash"},/turf/simulated/floor/tiled,/area/space) -"fyg" = (/obj/floor_decal/corner/red/diagonal,/obj/decal/cleanable/dirt,/obj/decal/cleanable/crayon,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"fyw" = (/obj/structure/catwalk,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"fyB" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"fyE" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/mauve/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/mauve/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"fyJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fyN" = (/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"fyW" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/catwalk_plated/dark,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/safe_room/bridge) -"fzb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"fzh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"fzo" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white/monotile,/area/space) -"fzr" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"fzt" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/super/critical{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fzu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"fzA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"fzC" = (/turf/simulated/floor/wood,/area/space) -"fzF" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"fzG" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"fzK" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"fAh" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fAj" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/fabricator/micro/bartender{pixel_x = 4},/obj/structure/noticeboard{pixel_y = 32},/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/wood/walnut,/area/space) -"fAm" = (/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobio4"; name = "Containment Blast Doors"},/obj/wallframe_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"fAp" = (/obj/structure/bookcase,/obj/item/book/manual/anomaly_spectroscopy,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"fAq" = (/turf/simulated/wall/r_wall/hull,/area/quartermaster/expedition/storage) -"fAC" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -2; pixel_y = 8},/obj/item/toy/figure/captain{pixel_x = 6; pixel_y = 2},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"fAD" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"fAE" = (/obj/item/rpd,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fAO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/door/airlock/research{autoset_access = 0; dir = 4; frequency = 1379; id_tag = "xeno_airlock_inner"; name = "Xenobiology Access"; req_access = list("ACCESS_RESEARCH")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"fBg" = (/obj/structure/sign/warning/hot_exhaust{dir = 1},/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/aftport) -"fBi" = (/obj/random/trash,/obj/item/reagent_containers/glass/bucket,/obj/item/device/flashlight/flare/glowstick/random,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"fBj" = (/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) -"fBl" = (/obj/structure/table/rack,/obj/random/plushie,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fBs" = (/obj/structure/roller_bed,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"fBu" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 2},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"fBM" = (/obj/structure/bed/chair/padded/blue,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fBO" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/bed/sofa/l/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"fBT" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"fCf" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/corner/lime/bordercorner,/obj/floor_decal/corner/lime/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/camera/network/medbay{c_tag = "Infrimary - Patient Ward"; dir = 4; pixel_y = 12},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fCl" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"fCx" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/fuel{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fCA" = (/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"fCB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/structure/curtain/open/bed,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"fCD" = (/obj/structure/table/rack,/obj/item/stack/material/glass/fifty,/obj/item/stack/material/glass{amount = 10},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/tiled/techfloor,/area/space) -"fCG" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"fCI" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood/walnut,/area/space) -"fCJ" = (/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"fCM" = (/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"fCW" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/turf/simulated/floor/carpet/red,/area/space) -"fDd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"fDo" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/borderfloor/corner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"fDr" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"fDt" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/industrial/outline/orange,/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"fDC" = (/obj/structure/disposalpipe/up{dir = 1},/obj/floor_decal/industrial/warning/full,/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/fuel{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"fDE" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"fDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1331; id_tag = "guppy_shuttle_inner"; name = "Guppy Internal Access"; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"fDL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/civilian{dir = 4; name = "Cryo Storage"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fDQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"fDT" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/forestarboard) -"fEe" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"fEj" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fEm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Head of Personnel"; sort_type = "Head of Personnel"},/turf/simulated/floor/plating,/area/space) -"fEo" = (/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"fEw" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"fEy" = (/obj/floor_decal/corner/red/half{dir = 8},/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"fEz" = (/obj/structure/disposalpipe/up{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"fEA" = (/obj/machinery/uniform_vendor{icon_state = "robotics"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"fEC" = (/obj/shuttle_landmark/ert/deck1,/turf/space,/area/space) -"fED" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"fEE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"fEG" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"fEN" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/forestarboard) -"fEQ" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"fES" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"fEX" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/standard,/obj/machinery/fabricator/micro/bartender{pixel_x = 5; pixel_y = 2},/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"fEY" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/engineering/engine_room) -"fFd" = (/obj/structure/bookcase/manuals/engineering,/obj/floor_decal/carpet/purple{dir = 4},/turf/simulated/floor/carpet/purple,/area/space) -"fFf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fFi" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Second Deck Substation Bypass"},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"fFn" = (/obj/structure/railing/mapped{dir = 1},/obj/random/machine/jukebox_custom,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"fFs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"fFx" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/reinforced,/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/recharger,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"fFB" = (/obj/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"fFC" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance{name = "Maintenance Storage"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fFG" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fFO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"fFR" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/floor_decal/corner/green{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"fFU" = (/obj/machinery/anomaly_container,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fGa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"fGn" = (/obj/item/ladder_mobile,/obj/random/junk,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"fGp" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"fGs" = (/obj/item/stool/padded/red,/obj/random/junk,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"fGt" = (/obj/structure/ladder,/obj/machinery/light/small{dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/aftport) -"fGv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"fGA" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/scrap/stacking_machine,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fGH" = (/obj/machinery/power/terminal{dir = 1},/obj/machinery/light/small{dir = 8},/obj/floor_decal/techfloor{dir = 10},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/camera/network/engineering{c_tag = "Bluespace Drive"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"fGI" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"fGK" = (/obj/structure/bed/chair/padded/yellow{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"fGL" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"fHe" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"fHg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"fHi" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"fHs" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/spot{dir = 8},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"fHv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"fHz" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"fHI" = (/obj/structure/table/standard,/obj/item/device/integrated_electronics/wirer,/obj/item/device/integrated_electronics/debugger,/obj/item/device/integrated_electronics/analyzer,/obj/item/device/integrated_circuit_printer,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"fHP" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"fHS" = (/obj/paint_stripe/red,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/turf/simulated/floor/plating,/area/space) -"fHU" = (/obj/machinery/computer/modular/preset/security,/obj/floor_decal/corner/red/half{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"fHV" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"fIa" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"fIb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"fIc" = (/obj/structure/closet/lawcloset,/obj/structure/window/reinforced,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fIe" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/ship_munition/disperser_charge/emp,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"fIg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"fIj" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/development) -"fIk" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"fIn" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/floor_decal/borderfloorwhite{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/camera/network/medbay{c_tag = "Personnel - Office"},/turf/simulated/floor/tiled/white,/area/space) -"fIr" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"fIw" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/fourthdeck/foreport) -"fIB" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"fIG" = (/obj/machinery/camera/network/research{c_tag = "Research - Misc. Test Chamber - Large"; dir = 1; network = list("Research","Miscellaneous Reseach")},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"fIJ" = (/obj/floor_decal/corner/paleblue{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"fIK" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"fIL" = (/obj/floor_decal/techfloor,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"fIN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fIQ" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "solar_bridge_port_pump"},/obj/machinery/light/small,/obj/machinery/oxygen_pump{pixel_y = -32},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "solar_bridge_port_airlock"; pixel_x = 2; pixel_y = 24; req_access = list("ACCESS_EXTERNAL"); tag_airpump = "solar_bridge_port_pump"; tag_chamber_sensor = "solar_bridge_port_sensor"; tag_exterior_door = "solar_bridge_port_outer"; tag_interior_door = "solar_bridge_port_inner"},/obj/machinery/airlock_sensor{id_tag = "solar_bridge_port_sensor"; pixel_x = -12; pixel_y = 24},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fIW" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fIX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"fIZ" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/vending/coffee{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"fJi" = (/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"fJC" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"fJD" = (/turf/simulated/wall/r_wall/prepainted,/area/holocontrol) -"fJJ" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"fJK" = (/obj/floor_decal/corner/grey/full,/obj/machinery/photocopier,/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/space) -"fJM" = (/obj/floor_decal/borderfloorblack,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"fJR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fJV" = (/obj/machinery/papershredder,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"fJZ" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"fKa" = (/obj/machinery/disperser/middle{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fKd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/corner/lime/bordercorner,/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"fKj" = (/obj/machinery/constructable_frame/computerframe{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"fKp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fKs" = (/obj/floor_decal/corner/black/full,/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"fKt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"fKC" = (/obj/structure/closet/shipping_wall/filled{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/green{dir = 9},/obj/machinery/camera/network/second_deck{c_tag = "Hydroponics - Fore"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"fKI" = (/turf/simulated/wall/r_wall/hull,/area/engineering/atmos) -"fKO" = (/obj/structure/table/rack{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/rig/eva/equipped,/obj/machinery/door/window/brigdoor/southleft{autoset_access = 0; req_access = list("ACCESS_SENENG")},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fKT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/northleft,/obj/structure/table/rack{dir = 8},/obj/item/aiModule/robocop,/obj/item/aiModule/solgov_aggressive,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fLa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fLb" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/blue,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"fLe" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/catwalk,/turf/simulated/open,/area/space) -"fLf" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 1},/obj/structure/handrail{dir = 1},/turf/space,/area/space) -"fLm" = (/obj/machinery/airlock_sensor{frequency = 1331; id_tag = "calypso_shuttle_sensor"; master_tag = "calypso_shuttle"; pixel_x = 25},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/structure/hygiene/shower{dir = 8; pixel_x = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/airlock) -"fLp" = (/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/paint_stripe/red,/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized{id = "cadetwindow"},/turf/simulated/floor/plating,/area/space) -"fLx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"fLB" = (/obj/structure/bed/sofa/l/black{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fLK" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/device/flash,/obj/item/device/flashlight,/obj/item/storage/secure/safe{pixel_y = 24},/obj/machinery/light/small{dir = 8},/obj/item/gun/energy/gun/small/secure,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fLQ" = (/obj/machinery/door/window/brigdoor/westleft{autoset_access = 0; dir = 2; req_access = list("ACCESS_BRIDGE")},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"fLW" = (/obj/item/stack/tile/floor,/obj/random/junk,/obj/random/junk,/obj/decal/cleanable/filth,/obj/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fMi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"fMs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{dir = 4; name = "Report desk"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"fMt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"fMx" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "admin_shuttle_dock_pump"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"fMy" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/bed/sofa/r/red{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"fMz" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"fMD" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"fMG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"fMI" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/vacant/cargo) -"fMJ" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/forestarboard) -"fMK" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/machinery/camera/network/command{c_tag = "Telecommunications - Storage"; network = list("Command","Engineering")},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"fMR" = (/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/ebony,/area/space) -"fMU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"fNa" = (/obj/machinery/vending/cola,/obj/floor_decal/corner/red/half{dir = 8},/obj/floor_decal/corner/red{dir = 6},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/sign/directions/security{dir = 8; pixel_y = 24},/obj/structure/sign/directions/infirmary{dir = 4; pixel_y = 31},/obj/structure/sign/directions/science{dir = 4; pixel_y = 38},/turf/simulated/floor/tiled,/area/space) -"fNb" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/paint_stripe/red,/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized{id = "forensicswindow"},/turf/simulated/floor/plating,/area/space) -"fNr" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"fNt" = (/obj/machinery/light{dir = 1},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"fNz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/catwalk_plated,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"fNB" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"fNC" = (/obj/floor_decal/corner/green{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"fND" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"fNJ" = (/obj/machinery/door/airlock/hatch{id_tag = "engine_access_hatch"; locked = 1; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/blast/regular{dir = 4; id_tag = "SupermatterDoor"; name = "Supermatter Access Blast Door"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"fNX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"fNY" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"fOg" = (/obj/machinery/organ_printer/robot/mapped,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"fOk" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/green,/area/space) -"fOr" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "cadetwindow"},/turf/simulated/floor/plating,/area/space) -"fOt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"fOB" = (/turf/simulated/floor/tiled,/area/holocontrol) -"fOF" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"fOG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"fOL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"fOO" = (/obj/machinery/optable,/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"fOP" = (/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fOT" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"fOU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"fPb" = (/obj/machinery/light/spot,/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fPc" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/table/standard,/obj/machinery/button/blast_door{dir = 4; id_tag = "med_dorms_blast_doors"; name = "Space Shields"; pixel_x = -21},/obj/item/device/flashlight/lamp{pixel_x = -2; pixel_y = 16},/obj/item/material/ashtray/plastic{pixel_x = 1; pixel_y = 3},/obj/item/trash/cigbutt{pixel_x = 2},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp{pixel_x = -3; pixel_y = -1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fPl" = (/obj/structure/ladder/up,/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"fPp" = (/obj/machinery/camera/network/engineering{c_tag = "Tech Storage - Main"},/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"fPC" = (/obj/structure/table/standard,/obj/item/device/geiger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/scanner/plant,/obj/item/device/scanner/health,/turf/simulated/floor/tiled/white/monotile,/area/space) -"fPE" = (/obj/machinery/atmospherics/unary/tank/air,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fPH" = (/obj/floor_decal/borderfloorblack,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/space) -"fPJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"fPK" = (/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/space) -"fPL" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"fPN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"fPT" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"fPZ" = (/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"fQd" = (/obj/machinery/recharger,/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/b_green/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/b_green/bordercorner2{dir = 10},/obj/structure/table/steel,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"fQf" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall/r_wall/hull,/area/space) -"fQk" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"fQo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"fQy" = (/obj/structure/holoplant,/obj/structure/railing/mapped,/obj/structure/flora/ausbushes/fernybush,/obj/floor_decal/spline/fancy/black{dir = 6},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"fQz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"fQA" = (/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"fQF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/forestarboard) -"fQJ" = (/obj/floor_decal/borderfloorblack{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"fQM" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "xenobio3"; name = "Containment Blast Doors"; pixel_x = -6; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{id_tag = "xenobio3_vent"; name = "Cell 3 Vent"; pixel_x = 6; req_access = list("ACCESS_RESEARCH")},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fQU" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"fQV" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"fQW" = (/obj/machinery/light/small{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/structure/closet/crate/solar,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"fRj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/techfloor/orange{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"fRk" = (/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"fRq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fRz" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"fRG" = (/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"fRI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lightgrey/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/structure/bed/sofa/r/brown{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"fRK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fRO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Central Hallway"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"fRP" = (/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3starboard) -"fRQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"fRR" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fRZ" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; injecting = 1; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d1port) -"fSq" = (/obj/item/storage/mirror{pixel_x = -26; pixel_y = 1},/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"fSs" = (/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"fSv" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/green/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/vending/hydronutrients{dir = 1},/turf/simulated/floor/tiled,/area/space) -"fSA" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"fTe" = (/obj/item/stock_parts/circuitboard/telecomms/processor,/obj/item/stock_parts/circuitboard/telecomms/receiver,/obj/item/stock_parts/circuitboard/telecomms/server,/obj/item/stock_parts/circuitboard/telecomms/bus,/obj/item/stock_parts/circuitboard/telecomms/broadcaster,/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/ntnet_relay,/obj/machinery/light/small{dir = 8},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"fTr" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall/prepainted,/area/space) -"fTt" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"fTv" = (/obj/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fTU" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"fTV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"fTY" = (/obj/machinery/door/airlock/glass/atmos{dir = 4; name = "Atmospherics"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"fUd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) -"fUh" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"fUi" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/shuttle/petrov/eva) -"fUt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"fUv" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fUJ" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"fUK" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"fUO" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"fUP" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{id_tag = "eng_lockdown_emg1"; name = "Emergency Exit"},/obj/machinery/door/airlock/glass/engineering/no_stripe{name = "Engineering Bay"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/space) -"fUR" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/industrial/traffic,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"fUV" = (/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/multi_tile/security{name = "Security Maintenance"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"fVg" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"fVh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/foreport) -"fVk" = (/obj/structure/disposalpipe/up{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/fuel{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fVm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"fVp" = (/obj/machinery/power/port_gen/pacman{anchored = 1; sheets = 10},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"fVs" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"fVt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/airlock) -"fVA" = (/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/bordercorner{dir = 4},/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/space) -"fVH" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/structure/closet/emcloset/anchored,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fVM" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"fVR" = (/obj/structure/table/rack,/obj/floor_decal/spline/plain/yellow{dir = 10},/obj/item/beartrap,/obj/item/beartrap,/obj/item/device/flashlight/upgraded,/obj/item/device/flashlight/upgraded,/obj/item/device/flashlight/upgraded,/obj/item/stack/package_wrap/cargo_wrap,/obj/item/stack/package_wrap/cargo_wrap,/obj/item/tape_roll,/obj/item/tape_roll,/obj/item/tape_roll,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"fVS" = (/obj/machinery/door/window/westright{name = "Xenoflora Environment"; req_access = newlist()},/obj/machinery/door/window/westleft{dir = 4; name = "Xenoflora Environment"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/xenoflora) -"fWb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"fWe" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/turf/simulated/floor/reinforced,/area/space) -"fWs" = (/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/foreport) -"fWM" = (/obj/structure/hygiene/toilet{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/light/small{dir = 8},/obj/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/space) -"fWP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"fWS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/grey/bordercorner,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fXg" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"fXl" = (/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel_grid,/area/space) -"fXm" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"fXs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/corner/grey/border{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"fXB" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"fXJ" = (/obj/machinery/suit_storage_unit/security/alt,/obj/machinery/camera/network/security{c_tag = "Security - Suits Storage"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"fXP" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"fXQ" = (/obj/structure/catwalk,/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "sauna_maint"; name = "Lock"; pixel_x = 21},/turf/simulated/floor/plating,/area/space) -"fXX" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"fYd" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"fYk" = (/obj/structure/table/steel{flipped = 1},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/forestarboard) -"fYw" = (/obj/machinery/light,/obj/floor_decal/corner/paleblue/bordercee{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"fYz" = (/obj/floor_decal/corner/black/full,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"fYA" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"fYE" = (/obj/machinery/telecomms/bus/preset_four,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"fYI" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"fYO" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"fYS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/rack,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"fYV" = (/obj/machinery/button/blast_door{id_tag = "teleport3"; name = "Third Deck Teleporter Access Shutter Control"; pixel_x = -6; pixel_y = 29},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"fZb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"fZi" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"fZl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"fZn" = (/obj/structure/closet/crate/plastic,/obj/structure/railing/mapped,/obj/floor_decal/spline/plain/black,/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"fZo" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/random/maintenance,/turf/simulated/floor/tiled/freezer,/area/space) -"fZp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/virology{dir = 8},/obj/item/taperoll/engineering/applied,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"fZD" = (/obj/machinery/space_heater,/obj/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/wood,/area/space) -"fZE" = (/turf/simulated/floor/wood/yew,/area/space) -"fZL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"fZM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled,/area/rnd/research) -"fZP" = (/obj/machinery/button/blast_door{id_tag = "portaux_warehouse"; name = "Warehouse Shutters Control"; pixel_y = 24; req_access = list("ACCESS_CARGO")},/obj/floor_decal/techfloor{dir = 5},/obj/structure/closet/walllocker{pixel_x = 28},/obj/random/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"gab" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"gai" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/space) -"gal" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"gap" = (/obj/machinery/flasher{id_tag = "security_perm_chamber_flash"; name = "Floor mounted flash"},/obj/floor_decal/corner/red/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"gat" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"gav" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"gaA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"gaG" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 15000},/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine thruster blast doors."; dir = 4; id_tag = "ThrusterVents"; name = "Thruster Blast Door control"; pixel_x = -24; req_access = list("ACCESS_ENGINE_EQUIP")},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"gaH" = (/obj/machinery/disposal,/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"gaJ" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "security_entry_airlock_enter"; name = "Security Entry Airlock"; pixel_x = 5; pixel_y = 22; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "security_entry_airlock_exit"; name = "Security Exit Airlock"; pixel_x = -5; pixel_y = 22; req_access = list("ACCESS_SECURITY")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/pen,/obj/machinery/button/blast_door{id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gaP" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gaQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"gaY" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood/mahogany,/area/space) -"gbc" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gbg" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"gbk" = (/obj/machinery/atmospherics/unary/tank/air{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"gbu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gbC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"gbE" = (/obj/structure/morgue{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"gbM" = (/obj/structure/bed/chair/office/comfy/blue{dir = 1},/obj/landmark/start{name = "Head of Personnel"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gcb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"gcc" = (/obj/structure/table/steel,/obj/item/material/hatchet,/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"gce" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 8; pixel_x = 22},/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"gcg" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"gck" = (/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/computer/station_alert/all{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"gcz" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"gcF" = (/obj/structure/table/rack,/obj/item/tank/jetpack/carbondioxide,/obj/item/tank/jetpack/carbondioxide,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light{dir = 1},/obj/item/tank/jetpack/carbondioxide,/obj/item/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gcH" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/space) -"gcK" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"gcN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"gdc" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = 1; name = "Research Director Dorm"; req_access = newlist(); secured_wires = 1; stripe_color = "#ffffff"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gdm" = (/obj/structure/hygiene/toilet{color = "ffdd33"; name = "captain's throne"},/obj/machinery/newscaster{pixel_x = -28},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/freezer,/area/space) -"gdD" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "bridge_outer_windows"},/turf/simulated/floor/plating,/area/space) -"gdN" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"gdZ" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"gek" = (/turf/simulated/wall/prepainted,/area/maintenance/thirddeck/forestarboard) -"gen" = (/obj/structure/closet/crate/freezer,/obj/item/storage/pill_bottle/antitox,/obj/item/storage/pill_bottle/paracetamol,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"geq" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "merchant_shuttle_station_sensor"; master_tag = "merchant_shuttle_station"; pixel_x = -24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "merchant_shuttle_station_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"gew" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/plating,/area/maintenance/waterstore) -"geF" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"geL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 8; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftstarboard) -"geT" = (/obj/machinery/pager/cargo{dir = 8; name = "Call Cargoworkers button"; pixel_x = -20; pixel_y = 16},/obj/floor_decal/borderfloor{dir = 9},/obj/machinery/light{dir = 1},/obj/machinery/computer/modular/preset/supply_public,/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor/tiled,/area/space) -"geU" = (/obj/structure/closet/crate/secure/biohazard/alt,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gfe" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"gfo" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gfp" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gfq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner,/turf/simulated/floor/tiled/dark,/area/bridge) -"gfz" = (/obj/structure/closet/secure_closet/personal/patient,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"gfS" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"gfV" = (/obj/structure/sign/directions/med{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/space) -"ggb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/rack,/obj/item/storage/toolbox/mechanical{pixel_x = 3; pixel_y = 15},/obj/random/tool{pixel_x = -5; pixel_y = -9},/obj/random/tool{pixel_x = 5; pixel_y = -1},/obj/random/tech_supply{pixel_x = 10; pixel_y = -6},/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/space) -"ggf" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"ggj" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; display_name = "Starboard Dock C"; frequency = 1380; id_tag = "admin_shuttle_dock"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"ggm" = (/obj/structure/table/standard,/obj/item/storage/box/bodybags,/turf/simulated/floor/tiled/dark,/area/space) -"ggp" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "fuel2p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3port) -"ggq" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/space) -"ggH" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/structure/window/boron_reinforced{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "Engineering - Gravity Generator"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ggO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ggZ" = (/obj/structure/holoplant,/obj/floor_decal/corner/yellow/half,/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled,/area/quartermaster/office) -"gha" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/holocontrol) -"ghb" = (/obj/floor_decal/corner/black/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ghd" = (/obj/floor_decal/corner/beige/diagonal,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"ghg" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ghk" = (/obj/paint_stripe/blue,/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_titanium,/area/space) -"ghn" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gho" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/forestarboard) -"ghs" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"ght" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/space) -"ghv" = (/obj/machinery/shield_diffuser,/obj/machinery/door/blast/regular{dir = 4; id_tag = "disvent"; name = "Incinerator Vent"},/turf/simulated/floor/reinforced{map_airless = 1},/area/maintenance/incinerator) -"ghC" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/sign/warning/compressed_gas{dir = 1; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"ghE" = (/obj/structure/bed/sofa/r/teal,/turf/simulated/floor/tiled/white,/area/space) -"ghJ" = (/turf/simulated/wall/prepainted,/area/maintenance/thirddeck/foreport) -"ghO" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"ghT" = (/obj/item/device/flashlight/lamp/green,/obj/structure/table/woodentable_reinforced/walnut,/turf/simulated/floor/carpet,/area/space) -"ghU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng1"; name = "First Reactive Engine Access"; pixel_y = 21; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/full,/obj/machinery/light/small,/obj/machinery/atmospherics/valve/shutoff/fuel{dir = 8},/turf/simulated/floor/plating,/area/thruster/d3starboard) -"ghY" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ghZ" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"gih" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/artifact_analyser,/turf/simulated/floor/tiled/white/monotile,/area/space) -"gip" = (/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/item/folder/nt/rd,/obj/item/folder/nt/rd,/obj/item/folder/nt/rd,/obj/item/folder/nt/rd,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood/mahogany,/area/space) -"gir" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/space) -"git" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"gix" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"giC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/prepainted,/area/vacant/cargo) -"giL" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"giO" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"giR" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"giS" = (/turf/simulated/wall/r_wall/prepainted,/area/security/opscheck) -"giT" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/computer/air_control{dir = 8; input_tag = "toxins_petrov_in"; name = "Toxins Gas Monitor"; output_tag = "toxins_petrov_out"; sensor_name = "Toxins Test Chamber"; sensor_tag = "toxins_petrov_sensor"},/turf/simulated/floor/tiled/white,/area/space) -"giU" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"giZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/atmospherics/pipe/cap/visible{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"gjc" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 10},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1port) -"gjd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"gjj" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/green/bordercorner2{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"gjE" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/bluespace) -"gjJ" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"gjK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"gjP" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"gjQ" = (/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/wood,/area/space) -"gjT" = (/obj/structure/table/woodentable/ebony,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/wood/mahogany,/area/space) -"gjX" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"gkg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/light/spot{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"gki" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"gko" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "cChamber2pV"; name = "Chamber Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"gkq" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"gks" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "d3portnacelle"},/obj/machinery/atmospherics/valve/digital{id_tag = "RE3F"; name = "RE3 digital valve"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"gku" = (/obj/structure/iv_stand,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"gky" = (/obj/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"gkD" = (/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"gkG" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/button/blast_door{dir = 4; id_tag = "miners_restroom_sierra"; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gkX" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/bed/chair/office/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"gli" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"gll" = (/obj/machinery/vending/wallmed2{dir = 4; pixel_x = -23},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"glv" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "toxin_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; name = "Toxin Air Vent"; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/sparker{pixel_x = -21},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"glA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hydroponics) -"glU" = (/obj/floor_decal/techfloor,/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"glV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled,/area/space) -"glW" = (/obj/floor_decal/techfloor/orange,/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"gml" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gmn" = (/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "specops_dock_outer"; name = "Docking Port Airlock"},/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gms" = (/obj/machinery/disposal,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/disposalpipe/up{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gmz" = (/obj/machinery/barrier,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"gmF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"gmH" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) -"gmK" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"gmM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"gmQ" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gnd" = (/obj/machinery/light/small,/obj/structure/closet/emcloset/anchored,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"gnr" = (/obj/decal/cleanable/generic,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"gns" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/random/tool,/obj/machinery/button/blast_door{id_tag = "petrovcell1"; name = "Test Chamber Vent"; pixel_x = -26; pixel_y = -26},/obj/machinery/button/ignition{id_tag = "Isocell1"; pixel_x = -36; pixel_y = -25},/obj/machinery/camera/network/petrov{c_tag = "Petrov - Isolation Chambers - Cells"; dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"gnE" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"gnL" = (/obj/structure/table/standard,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/reagent_containers/dropper{pixel_y = -4},/obj/item/stock_parts/manipulator,/obj/item/stock_parts/scanning_module,/obj/item/device/paicard,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/console_screen,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/machinery/light{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/development) -"gnO" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"gnR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"gnW" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/floor_decal/corner/red/bordercee,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gnX" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"gop" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark,/obj/item/dice/d100,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"gor" = (/obj/machinery/door/airlock/medical{dir = 8; id_tag = "sierra_surgery1"; name = "Operation room 1"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/holosign/surgery{dir = 4; id_tag = "surgery1"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"gos" = (/obj/structure/table/steel,/obj/machinery/recharger,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/techfloor,/area/space) -"goA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"goD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/storage/primary) -"goG" = (/obj/floor_decal/corner/brown/mono,/obj/machinery/computer/modular/preset/cardslot/command_eng{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"goM" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"goN" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"gpb" = (/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"gpd" = (/obj/machinery/power/tracker,/obj/structure/cable/yellow,/obj/floor_decal/solarpanel,/turf/simulated/open,/area/solar/port) -"gpg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/bridge) -"gpi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"gpr" = (/obj/floor_decal/carpet/orange{dir = 1},/obj/floor_decal/carpet/orange{dir = 4},/obj/floor_decal/carpet/orange{dir = 5},/obj/structure/table/woodentable/ebony,/obj/item/device/flashlight/lamp/lava/yellow{pixel_x = 7; pixel_y = 12},/obj/item/crowbar/prybar,/turf/simulated/floor/carpet/orange,/area/space) -"gpv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"gpw" = (/obj/structure/table/steel,/obj/machinery/button/windowtint{id = "sec_equip_windows"; pixel_x = 7; pixel_y = 29},/obj/machinery/light_switch{pixel_x = -7; pixel_y = 29},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/closet/medical_wall/filled{pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gpx" = (/obj/structure/catwalk,/obj/structure/handrail,/turf/space,/area/space) -"gpy" = (/obj/machinery/requests_console{department = "Canteen"; departmentType = 4; pixel_x = -30},/obj/structure/table/marble,/obj/item/reagent_containers/food/condiment/barbecue{pixel_x = -3; pixel_y = 9},/obj/item/reagent_containers/food/condiment/ketchup,/obj/item/reagent_containers/food/condiment/mayo{pixel_x = 6; pixel_y = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"gpA" = (/obj/structure/railing/mapped,/obj/floor_decal/techfloor/orange/corner,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"gpE" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"gpN" = (/obj/structure/table/standard,/obj/item/storage/toolbox/mechanical,/obj/floor_decal/industrial/outline/yellow,/obj/random/tool,/obj/item/device/robotanalyzer,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"gpR" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gpS" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/brown/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"gpU" = (/obj/machinery/conveyor{dir = 4; id = "Mail"},/turf/simulated/floor/tiled/dark,/area/space) -"gpW" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"gqe" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"gql" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"gqm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"gqw" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gqH" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/safe_room/bridge) -"gqK" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gqL" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"gqM" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"gqO" = (/obj/machinery/atmospherics/omni/filter{tag_east = 2; tag_south = 3; tag_west = 1},/obj/machinery/camera/network/petrov{c_tag = "Petrov - Isolation Chambers - Atmospherics"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"gqS" = (/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/corner/paleblue/border,/obj/structure/bed/chair/padded/teal{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"gqT" = (/obj/structure/bed/chair/pew,/obj/floor_decal/spline/fancy/black/corner{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"gqV" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gqW" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"grk" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "auxair_inner"; name = "Auxiliary Air Storage Interior Access"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos/storage) -"grn" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/table/steel,/obj/item/storage/box/donut,/obj/item/device/taperecorder,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"grp" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"grs" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/item/device/gps,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"grt" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/door/blast/shutters{id_tag = "vir_isol"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/turf/simulated/floor/tiled/white/monotile,/area/space) -"grv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"grD" = (/obj/machinery/disposal,/obj/floor_decal/corner/blue/three_quarters,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"grE" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/storage) -"grF" = (/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/smartfridge/secure/virology{req_access = null},/obj/decal/cleanable/cobweb2,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white/monotile,/area/space) -"grI" = (/obj/floor_decal/corner/green{dir = 1},/obj/structure/table/standard,/obj/item/device/flashlight/lamp/lava/green,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"grL" = (/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/cola,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"grR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "null"; name = "Bridge Wardroom"; secured_wires = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"grY" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"grZ" = (/turf/simulated/wall/prepainted,/area/quartermaster/hangar) -"gse" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 8; id_tag = "cafe"; name = "Cafe Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/galley) -"gsf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"gsg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"gss" = (/obj/structure/closet/secure_closet/personal/patient,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gst" = (/obj/floor_decal/carpet/blue2,/turf/simulated/floor/carpet/blue2,/area/space) -"gsv" = (/obj/structure/bookcase/manuals/research_and_development,/obj/machinery/light{dir = 4},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 5},/turf/simulated/floor/carpet/purple,/area/space) -"gsw" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway - Medical"},/turf/simulated/floor/tiled,/area/space) -"gsz" = (/obj/structure/closet/crate/secure/phoron,/obj/item/stack/material/phoron/ten,/obj/item/stack/material/phoron/ten,/obj/item/stack/material/phoron/ten,/obj/floor_decal/spline/plain/yellow{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"gsH" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/space) -"gsM" = (/obj/structure/table/rack,/obj/item/device/scanner/mining,/obj/item/device/scanner/mining,/obj/item/device/scanner/mining,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"gsX" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"gte" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/space) -"gtq" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"gtt" = (/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = -24; pixel_y = 7; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gtv" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 4},/obj/floor_decal/corner/grey{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"gtz" = (/obj/machinery/door/airlock/hatch{frequency = 1379; id_tag = "engine_airlock_outer"; name = "Engine Airlock Exterior"},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"gtG" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/closet/crate/trashcart,/obj/random/firstaid,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gtI" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northright{dir = 2; name = "Leader's suit"; req_access = newlist()},/obj/item/clothing/mask/gas/half,/obj/item/rig/exploration/equipped,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"gtO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"gtP" = (/obj/machinery/seed_storage/garden{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"gua" = (/obj/structure/railing/mapped,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"guo" = (/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"guH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/bed/chair/rounded/blue{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"guN" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/access_button/airlock_interior{frequency = 1380; master_tag = "td_port"; name = "interior access button"; pixel_x = -32; pixel_y = -24; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"guV" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"gve" = (/obj/machinery/computer/modular/preset/medical{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/corner/blue/mono,/obj/floor_decal/spline/fancy/black/corner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"gvi" = (/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/space) -"gvy" = (/obj/machinery/constructable_frame/computerframe{dir = 4},/mob/living/simple_animal/hostile/scarybat,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"gvz" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -21},/turf/simulated/floor/tiled,/area/space) -"gvD" = (/obj/machinery/sleeper/survival_pod{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"gvE" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"gvI" = (/obj/structure/cryofeed{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gvL" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"gvQ" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"gvU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/rounded/beige,/turf/simulated/floor/carpet,/area/space) -"gwh" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/sign/poster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"gwp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"gwt" = (/obj/floor_decal/carpet/orange{dir = 1},/obj/floor_decal/carpet/orange{dir = 8},/obj/floor_decal/carpet/orange{dir = 9},/obj/structure/bed/padded,/obj/item/bedsheet/ce,/turf/simulated/floor/carpet/orange,/area/space) -"gwF" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"gwG" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Kitchen"; sort_type = "Kitchen"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"gwL" = (/obj/structure/handrail,/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/industrial/outline/red,/obj/structure/fuel_port{pixel_x = -32},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"gwZ" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/flashlight/lamp/lava/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gxi" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"gxm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"gxn" = (/obj/floor_decal/borderfloor{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"gxp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/tiled/white,/area/space) -"gxA" = (/obj/structure/bed/chair/office/comfy/blue,/obj/landmark/start{name = "Internal Affairs Agent"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/blue,/area/space) -"gxK" = (/obj/structure/bed/chair/padded/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"gxM" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"gxN" = (/obj/floor_decal/borderfloor,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"gxS" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"gyn" = (/obj/structure/closet/fridge,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/random/single/cola,/obj/random/single/cola,/obj/random/single/cola,/obj/random/single/cola,/obj/random/single/cola,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"gyq" = (/turf/simulated/open,/area/medical/sleeper) -"gyH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"gyP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"gyQ" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"gyU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gyY" = (/turf/simulated/wall/prepainted{can_open = 1},/area/maintenance/thirddeck/aftport) -"gze" = (/obj/machinery/vending/hydronutrients{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"gzu" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/grille,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id_tag = "engineroomvent"; name = "Engine Room Vent"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"gzA" = (/obj/item/clothing/suit/unathi/mantle,/obj/item/clothing/shoes/jackboots/unathi,/obj/item/device/flashlight/lantern,/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"gzF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"gzO" = (/obj/machinery/door/airlock/hatch{frequency = 1379; id_tag = "engine_airlock_inner"; name = "Engine Airlock Interior"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gzR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/hatch{autoset_access = 0; name = "Cockpit"; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/machinery/door/firedoor,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/exploration_shuttle/cockpit) -"gAi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"gAr" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/space) -"gAu" = (/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"gAv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"gAC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"gAD" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"gAI" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"gAJ" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/floor_decal/corner/purple/bordercorner,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"gAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gBi" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"gBk" = (/obj/structure/table/glass,/obj/item/material/ashtray/bronze,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"gBo" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"gBq" = (/obj/item/stack/material/steel,/obj/item/stack/material/steel,/obj/item/stack/material/rods,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"gBF" = (/obj/structure/railing/mapped,/obj/structure/cart{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"gBN" = (/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"gBT" = (/obj/structure/fitness/punchingbag,/obj/floor_decal/corner/black/full,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"gCb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) -"gCe" = (/obj/structure/bed/chair/padded/red,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"gCl" = (/obj/landmark{name = "carpspawn"},/turf/space,/area/space) -"gCz" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"gCD" = (/obj/structure/railing/mapped,/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gCG" = (/obj/decal/cleanable/greenglow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/vacant/mess) -"gCM" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_room) -"gCO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/structure/sign/xenobio_3{pixel_y = 32},/obj/machinery/door/airlock/research{frequency = 1379; id_tag = "xenohight_airlock_outer"; locked = 1; name = "Xenobiology Internal Airlock"},/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/entry) -"gDf" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/glass/civilian{name = "Bar"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gDl" = (/obj/floor_decal/corner/grey/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"gDo" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"gDr" = (/obj/wallframe_spawn/reinforced/hull,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{id_tag = "vir_blast_window"},/turf/simulated/floor/plating,/area/space) -"gDw" = (/obj/structure/table/rack,/obj/machinery/power/apc/super/critical{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/obj/item/inflatable_dispenser,/turf/simulated/floor/tiled/steel_grid,/area/space) -"gDD" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled,/area/space) -"gDH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"gDL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"gDT" = (/obj/machinery/door/airlock/highsecurity{autoset_access = 0; name = "Secure Tech Storage"; req_access = list("ACCESS_BRIDGE","ACCESS_TECH_STORAGE")},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gDZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"gEb" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/recharger,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"gEd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"gEf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"gEm" = (/obj/structure/bed/chair/office/teal,/obj/floor_decal/corner/beige{dir = 10},/obj/floor_decal/corner/yellow/border,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/button/blast_door{id_tag = "chemistry_lockdown"; name = "Chemistry Shutters"; pixel_x = -26; pixel_y = -24; req_access = list("ACCESS_MEDICAL")},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"gEx" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"gEz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"gEF" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 1; frequency = 1380; id_tag = "escape_pod_11_berth"; name = "escape pod eleven berth controller"; pixel_x = -32; pixel_y = -28; tag_door = "escape_pod_11_berth_hatch"},/obj/floor_decal/industrial/warning,/obj/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"gEO" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_7"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gET" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"gEV" = (/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 9},/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"gFa" = (/obj/structure/bed/chair/office/dark,/obj/floor_decal/techfloor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"gFe" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"gFg" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"gFh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 4},/obj/structure/hygiene/toilet{dir = 1},/obj/item/taperoll/bog{pixel_x = -12; pixel_y = -10},/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"gFi" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gFj" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"gFl" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/engineering/engine_room) -"gFs" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner{dir = 1},/turf/simulated/floor/tiled,/area/space) -"gFv" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/status_light{id_tag = "ReacEng2"; name = "Deck Four Port status indicator"; pixel_y = 32},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"gFM" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_7_hatch"; name = "Escape Pod Seven Hatch"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gFS" = (/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom/locked/ai_private{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"gFU" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"gFW" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/obj/machinery/button/blast_door{id_tag = "hop_road_shutters"; name = "Line Shutters Control"; pixel_x = -6; pixel_y = 27},/obj/machinery/button/blast_door{id_tag = "hop_shutters"; name = "Desk Shutters Control"; pixel_x = 6; pixel_y = 27},/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/blue/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gGd" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_smes) -"gGi" = (/obj/machinery/light{dir = 8},/obj/random/vendor{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"gGx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"gGy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"gGH" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 2},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/structure/sign/warning/airlock{color = "#ff9900"; name = "\improper WAY TO SPACE"; pixel_y = 26},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gGJ" = (/obj/wallframe_spawn/reinforced/polarized,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"gGM" = (/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/multitool{pixel_x = 3},/obj/item/device/kit/mech,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"gGO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gGX" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/lava/orange{pixel_x = -6; pixel_y = 13},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"gGZ" = (/obj/machinery/computer/modular/preset/civilian,/obj/floor_decal/corner/purple/half{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gHg" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/computer/air_control{dir = 1; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensor_name = "Tank"; sensor_tag = "n2o_sensor"},/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/corner/white{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"gHi" = (/obj/shuttle_landmark/ert/deck4,/turf/space,/area/space) -"gHl" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/obj/floor_decal/corner/blue/mono,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/spot{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"gHp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/hydrant{pixel_x = 28},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"gHq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics) -"gHs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"gHu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/prepainted,/area/vacant/infirmary) -"gHx" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass/command{dir = 4; id_tag = "portbridgedoor"; name = "Bridge"; secured_wires = 1},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "bridge_ent"; name = "Bridge Lockdown"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"gHC" = (/obj/floor_decal/corner/red,/obj/structure/table/standard,/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"gHE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/brig) -"gHI" = (/obj/structure/undies_wardrobe,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"gHL" = (/obj/decal/cleanable/remains,/obj/decal/cleanable/blood,/obj/structure/foamedmetal,/obj/item/handcuffs/cable/tape,/obj/item/handcuffs,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) -"gHN" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"gHP" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/aftport) -"gHQ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"gHX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Fore Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"gIe" = (/obj/structure/flora/pottedplant/mysterious,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"gIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"gIl" = (/obj/floor_decal/corner/black/full,/obj/structure/reagent_dispensers/water_cooler{dir = 4},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"gIn" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"gIx" = (/obj/machinery/fabricator,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"gIy" = (/obj/structure/table/rack,/obj/random/coin,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"gIz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gIM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gIN" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light_switch{dir = 1; pixel_y = -21},/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/office/ce) -"gIR" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -6; pixel_y = 13},/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"gIZ" = (/obj/structure/bed/sofa/m/red{dir = 10},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/carpet/magenta,/area/space) -"gJd" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{dir = 4; name = "Warehouse"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) -"gJl" = (/obj/machinery/shieldwallgen,/obj/structure/catwalk,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"gJm" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/outline/blue,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gJt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gJv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/blast_door{id_tag = "mine_warehouse"; name = "Storage Door Control"; pixel_x = 6; pixel_y = 24; req_access = list(list("ACCESS_MINING","ACCESS_XENOARCH","ACCESS_EL"))},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"gJw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/sign/warning/high_voltage{dir = 1; pixel_y = -32},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gJE" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"gJG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gJH" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"gJQ" = (/obj/floor_decal/techfloor,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gKr" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/floor_decal/corner/green/three_quarters{dir = 4},/obj/structure/window/reinforced,/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"gKy" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/constructable_frame/computerframe,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gKz" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"gKH" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/reagent_containers/spray/sterilizine,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"gKN" = (/obj/item/folder/nt/rd,/obj/structure/table/glass/boron,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"gKR" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/bed/chair/shuttle,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_9"; name = "escape pod nine controller"; pixel_x = -20; tag_door = "escape_pod_9_hatch"},/turf/simulated/floor/tiled/techfloor,/area/space) -"gKW" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/wood/ebony,/area/space) -"gKX" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"gLb" = (/obj/structure/closet/emcloset,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"gLc" = (/obj/structure/table/rack/dark,/obj/item/stack/material/glass/reinforced/fifty,/obj/item/stack/material/glass/reinforced/fifty,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 9},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"gLg" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"gLh" = (/obj/structure/table/woodentable/walnut,/obj/random/single/playing_cards,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/space) -"gLp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"gLu" = (/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/carpet/blue2,/area/space) -"gLB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"gLI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/corner/purple,/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/space) -"gLS" = (/obj/machinery/shipsensors,/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 1},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced,/area/guppy_hangar/start) -"gLV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftstarboard) -"gLZ" = (/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/cable{d1 = 32; d2 = 8; icon_state = "32-8"},/turf/simulated/open,/area/maintenance/seconddeck/forestarboard) -"gMa" = (/obj/structure/holoplant,/turf/simulated/floor/tiled/dark,/area/chapel/office) -"gMt" = (/obj/machinery/shieldwallgen,/obj/floor_decal/techfloor/orange{dir = 5},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"gMC" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"gMI" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"gMR" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/light/small,/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"gMW" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/floor_decal/industrial/traffic/corner,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/corner/black/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gMZ" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/reinforced,/area/vacant/monitoring) -"gNl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/borderfloorwhite,/obj/floor_decal/borderfloorwhite{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/maintenance/fourthdeck/aft) -"gNq" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"gNw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"gND" = (/obj/floor_decal/spline/plain/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"gNL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gNM" = (/obj/structure/bed/chair/padded/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"gNP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/chapel/main) -"gNW" = (/turf/simulated/wall/prepainted,/area/rnd/misc_lab) -"gOr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light/spot,/obj/structure/table/standard,/obj/item/storage/box/monkeycubes{pixel_x = 9},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gOv" = (/obj/floor_decal/corner/red/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"gOx" = (/obj/structure/hygiene/shower{dir = 4; pixel_x = -9},/obj/floor_decal/steeldecal/steel_decals9,/obj/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"gOA" = (/obj/structure/disposaloutlet,/obj/machinery/shield_diffuser,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/industrial/warning/cee{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gOH" = (/obj/floor_decal/corner/black/border{dir = 10},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gOK" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gOY" = (/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/reinforced,/area/vacant/monitoring) -"gPd" = (/obj/structure/table/rack,/obj/item/stack/material/steel/ten,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"gPg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/sign/directions/security{dir = 8; pixel_y = 24},/obj/structure/sign/directions/bridge{dir = 8; pixel_y = 31},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"gPh" = (/obj/random/closet,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"gPp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"gPw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/space) -"gPA" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/obj/structure/sign/warning/nosmoking_1{desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; pixel_y = 32},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"gPD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"gPE" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"gPH" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"gPJ" = (/obj/structure/sign/warning/nosmoking_1{pixel_x = 32; pixel_y = -37},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"gPL" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"gPM" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/meter,/turf/simulated/floor/plating,/area/space) -"gPP" = (/obj/structure/sign/warning/docking_area{dir = 8},/turf/simulated/wall/r_wall/hull,/area/space) -"gPR" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1port) -"gPU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/petrov{c_tag = "Petrov - Isolation Cell One"; dir = 4},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"gPV" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"gPZ" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"gQd" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "escape_pod_1_berth"; name = "escape pod one berth controller"; pixel_x = -20; pixel_y = 32; tag_door = "escape_pod_1_berth_hatch"},/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"gQl" = (/obj/structure/sign/warning/compressed_gas{dir = 8; pixel_x = 32},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/table/steel,/obj/item/wrench,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"gQn" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"gQr" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"gQz" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/glass/bolted/cycling{frequency = 1380; id_tag = "skipjack_shuttle_dock_airlock_outer"; name = "Docking Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gQA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"gQB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"gQF" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/laundry) -"gQG" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/obj/machinery/light/spot{dir = 1},/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"gQI" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/bed/sofa/r/blue{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"gQN" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"gQV" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gRa" = (/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner,/turf/simulated/floor/wood/maple,/area/space) -"gRb" = (/obj/machinery/computer/teleporter,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/structure/sign/poster{pixel_x = -32},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"gRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"gRi" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/obj/machinery/door/blast/shutters/open{id_tag = "sup_office"; name = "Supply Desk Shutters"},/turf/simulated/floor/plating,/area/quartermaster/office) -"gRj" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "sierra_surgery1"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"gRn" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"gRr" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel_grid,/area/space) -"gRs" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"gRw" = (/obj/floor_decal/techfloor,/obj/structure/table/rack{dir = 8},/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/space) -"gRz" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/window/boron_reinforced,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gRB" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gRO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/space) -"gRU" = (/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"gSc" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/handrail{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"gSd" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"gSe" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"gSf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gSk" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"gSm" = (/obj/structure/table/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small,/obj/machinery/recharger/wallcharger{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/space) -"gSp" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/paleblue/border,/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/space) -"gSw" = (/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/port) -"gSx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 1; frequency = 1380; id_tag = "centcom_shuttle_dock"; pixel_x = 32; pixel_y = -29; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/space) -"gSB" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/space) -"gSC" = (/obj/floor_decal/corner/paleblue/border{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"gSH" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/sauna_bench/middle,/turf/simulated/floor/wood/ebony,/area/space) -"gSJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/space) -"gSQ" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"gSU" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/brown/border{dir = 9},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/mining{c_tag = "Mining - EVA"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"gSV" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/random/firstaid,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/white/monotile,/area/maintenance/fourthdeck/aft) -"gTc" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"gTx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/space) -"gTA" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall/prepainted,/area/space) -"gTB" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"gTL" = (/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1; tag_west = 3},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"gTN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"gTP" = (/obj/catwalk_plated,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"gTT" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/bed/chair/comfy/purple{dir = 8},/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/rnd/office) -"gUf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"gUj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"gUl" = (/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/starboard) -"gUp" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"gUC" = (/obj/machinery/atm{pixel_y = 32},/obj/floor_decal/corner/blue/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"gUF" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 6},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"gUM" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small,/obj/structure/table/rack,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"gUO" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"gUS" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"gUT" = (/obj/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"gUV" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"gUX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/table/woodentable/walnut,/turf/simulated/floor/tiled,/area/space) -"gUY" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_y = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"gVa" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftport) -"gVb" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/equipstorage) -"gVj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"gVk" = (/obj/structure/bed/chair/armchair/brown{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/camera/network/command{c_tag = "Command - Captain's Office"; dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"gVl" = (/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/locker) -"gVn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"gVs" = (/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"gVz" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/table/woodentable/maple,/obj/item/reagent_containers/food/drinks/coffee,/obj/item/reagent_containers/pill/pod/cream{pixel_x = 8; pixel_y = 7},/turf/simulated/floor/wood/bamboo,/area/space) -"gVE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"gVS" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gVY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gWa" = (/obj/machinery/porta_turret{dir = 8},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"gWh" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"gWi" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"gWj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/ai_status_display{pixel_x = -32},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gWk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor,/area/space) -"gWu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/flora/pottedplant/tall,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Visitors"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"gWy" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"gWA" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{pixel_x = -1; pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gWF" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"gWK" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{id = "cafewindow"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"gWL" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "rescue_shuttle_dock_airlock_pump"; power_rating = 25000},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"gWQ" = (/obj/structure/window/reinforced,/obj/floor_decal/industrial/warning,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/space) -"gWR" = (/obj/structure/curtain/medical,/obj/structure/kitchenspike,/obj/structure/window/basic,/obj/floor_decal/spline/fancy/black{dir = 10},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"gWU" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"gWW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"gXf" = (/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"gXj" = (/obj/structure/cryofeed,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"gXo" = (/obj/structure/flora/seaweed/mid,/mob/living/simple_animal/aquatic/fish{name = "Marry"},/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"gXp" = (/obj/random/closet,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/forestarboard) -"gXv" = (/obj/structure/table/rack,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"gXw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"gXD" = (/obj/structure/fitness/punchingbag,/obj/floor_decal/corner/red/full,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"gXZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/sign/warning/pods/south{dir = 4; pixel_x = -32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"gYk" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/grey/border{dir = 1},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"gYr" = (/obj/machinery/button/windowtint{dir = 8; id = "ce_windows"; pixel_x = 24; pixel_y = 19},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 8; id_tag = "cedoor"; name = "Office Door Control"; pixel_x = 24; pixel_y = 6; req_access = list("ACCESS_CHIEF_ENGINEER")},/obj/machinery/button/blast_door{dir = 8; id_tag = "eng_lockdown"; name = "Emergency Lockdown Control"; pixel_x = 24; pixel_y = -7; req_access = list("ACCESS_ENGINEERING")},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"gYt" = (/obj/spider/spiderling/mundane/dormant,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"gYu" = (/obj/machinery/light/small,/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"gYx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/space) -"gYC" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"gYE" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"gYL" = (/obj/floor_decal/corner/purple/full,/obj/structure/flora/pottedplant/mysterious,/obj/machinery/light_switch{dir = 4; on = 1; pixel_x = -25},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"gYM" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/space) -"gYN" = (/obj/structure/closet/secure_closet/crew/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/folder/nt,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/locker) -"gYS" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/trash,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"gYU" = (/obj/structure/sign/warning/vent_port,/turf/simulated/wall/r_wall/hull,/area/maintenance/incinerator) -"gZb" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"gZf" = (/obj/structure/bed/padded,/obj/item/bedsheet/hos,/obj/landmark/start{name = "Head of Security"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/mahogany,/area/space) -"gZm" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"gZz" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white/monotile,/area/space) -"gZD" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"gZK" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"gZM" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "o24p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1port) -"gZU" = (/obj/floor_decal/corner/yellow/half,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) -"gZX" = (/obj/structure/table/marble,/obj/item/reagent_containers/food/snacks/mint,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"gZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"haa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/corner/green{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"hal" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/red{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"haq" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"har" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"has" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"haz" = (/obj/structure/bed/chair/wood/walnut{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/maple,/area/space) -"haA" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"haH" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"haJ" = (/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/space) -"haL" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating,/area/space) -"haP" = (/obj/structure/table/standard,/obj/item/deck/cards{pixel_x = 4; pixel_y = 8},/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"haV" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"haW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"hba" = (/obj/structure/reagent_dispensers/water_cooler,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/development) -"hbb" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"hbd" = (/obj/floor_decal/corner/black/bordercee{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hbi" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"hbv" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hbz" = (/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/chair/pew,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/space) -"hbD" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/message_server,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"hbG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"hbM" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/airlock) -"hbS" = (/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"hbT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/item/paper_bin{pixel_y = -4},/obj/item/pen{pixel_y = -4},/turf/simulated/floor/tiled/techfloor,/area/space) -"hcd" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/floor_decal/borderfloor{color = null; dir = 4},/obj/floor_decal/corner/blue/border{dir = 4},/obj/machinery/vitals_monitor,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"hci" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"hck" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "fuel3p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1starboard) -"hcr" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/table/woodentable,/obj/item/paper/workvisa,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"hcz" = (/obj/machinery/floodlight{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"hcF" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/structure/bed/chair/padded/yellow{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"hcG" = (/obj/structure/closet/emcloset/anchored,/turf/simulated/floor/tiled/techfloor,/area/bridge) -"hcP" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"hcQ" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/flora/pottedplant/stoutbush,/obj/floor_decal/carpet{dir = 8},/obj/floor_decal/carpet{dir = 1},/obj/floor_decal/carpet{dir = 9},/turf/simulated/floor/carpet,/area/space) -"hcS" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"hcT" = (/obj/machinery/conveyor{dir = 5; id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"hcZ" = (/obj/structure/undies_wardrobe,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/clothing/under/schoolgirl,/obj/item/clothing/head/kitty,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"hdb" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hdi" = (/obj/structure/sign/warning/airlock{dir = 1; pixel_y = -32},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lightgrey/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/structure/cable/green,/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Port Two"; dir = 4},/turf/simulated/floor/tiled,/area/space) -"hdp" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/button/blast_door{id_tag = "firingspace"; name = "Firing Range Shields"; pixel_y = 24; req_access = list("ACCESS_SEC_DOORS")},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hdq" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/bed/sofa/m/brown{dir = 10},/obj/floor_decal/carpet{dir = 4},/obj/floor_decal/carpet{dir = 1},/obj/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet,/area/space) -"hdr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/corner/black/half{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"hdI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hdJ" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/decal/cleanable/blood/drip,/obj/decal/cleanable/blood/splatter,/obj/structure/hygiene/toilet{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"hdN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hem" = (/obj/structure/bed/chair/padded/green{dir = 1},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"hes" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/borderfloorblack/corner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"heJ" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"heQ" = (/obj/machinery/light/small{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/floor_decal/industrial/outline/grey,/obj/item/clothing/mask/gas/aquabreather,/obj/item/clothing/mask/gas/aquabreather,/obj/item/clothing/mask/gas/aquabreather,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"heT" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"heV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"heX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hfc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/research) -"hfl" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "chapel_shutters_md"; name = "Mass Driver Shutters"; opacity = 0},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/chapel/main) -"hfm" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"hfu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = -32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"hfv" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/maintenance/waterstore) -"hfB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"hfF" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/techfloor{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"hfG" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/tele_pad,/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"hfH" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/obj/item/folder/nt,/obj/item/stack/nanopaste,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/development) -"hfK" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"hfO" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/steel_grid,/area/space) -"hfX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/stack/material/plastic/ten,/turf/simulated/floor/plating,/area/space) -"hgw" = (/obj/machinery/ai_status_display,/turf/simulated/wall/prepainted,/area/crew_quarters/sleep/bunk) -"hgz" = (/obj/machinery/light,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"hgB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"hgH" = (/obj/structure/closet/coffin,/obj/structure/railing/mapped,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hgJ" = (/obj/structure/table/steel_reinforced,/obj/item/device/synthesized_instrument/guitar,/turf/simulated/floor/tiled,/area/space) -"hgL" = (/obj/floor_decal/corner/black/border{dir = 10},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hgM" = (/obj/structure/morgue{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hgX" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/tiled,/area/space) -"hgZ" = (/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/centralport) -"hha" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/techfloor,/area/space) -"hhg" = (/obj/floor_decal/floordetail/edgedrain{dir = 4},/obj/floor_decal/corner/red{dir = 1},/obj/floor_decal/corner/paleblue{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/roller_bed,/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"hhl" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"hhq" = (/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"hhy" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{dir = 1; pixel_y = -21},/turf/simulated/floor/wood/ebony,/area/space) -"hhD" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"hhE" = (/turf/simulated/floor/carpet,/area/chapel/main) -"hhG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"hhI" = (/mob/living/carbon/slime,/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"hhN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/grey{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"hhO" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/ore_box,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"hhP" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/spot{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"hhW" = (/obj/machinery/computer/modular/preset/aislot/research{dir = 4},/obj/floor_decal/corner/research/mono,/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"hhZ" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/obj/structure/cable/cyan,/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"him" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng4_outer"; name = "First Deck Port Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1port) -"hio" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/atmoscontrol/laptop{monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); req_access = list("ACCESS_RESEARCH")},/obj/machinery/light/spot{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"hip" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"hiM" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"hiT" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"hiV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hjf" = (/obj/floor_decal/corner/yellow/half{dir = 1},/obj/structure/flora/pottedplant/floorleaf,/turf/simulated/floor/tiled,/area/space) -"hjg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"hjn" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hjo" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"hjx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"hjA" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 4; id_tag = "fusion_observation"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/vacant/prototype/control) -"hjC" = (/obj/floor_decal/corner/black/full,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 29},/obj/structure/bed/chair/office/comfy/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"hjI" = (/obj/floor_decal/corner/yellow/half{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) -"hjK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hjL" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hjP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"hjS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"hka" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"hkb" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/camera/all/command{c_tag = "AI Core - Port"; dir = 1},/obj/machinery/computer/modular/preset/engineering{dir = 1},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"hkg" = (/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/port) -"hko" = (/obj/machinery/vending/cigarette,/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hkq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"hkv" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"hkw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "bar_private_room_2"; name = "Private Room"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hkx" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Port One"},/turf/simulated/floor/tiled,/area/space) -"hkA" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"hkL" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hkN" = (/obj/floor_decal/corner/black/three_quarters{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"hkZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hla" = (/obj/decal/cleanable/blood,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/foreport) -"hlc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"hlo" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "PetrovShield"; name = "Blast Shutter Control"; pixel_x = 5; pixel_y = -3},/obj/machinery/button/blast_door{id_tag = "PetrovBiohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = -3},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"hlu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"hlz" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/space) -"hlC" = (/obj/structure/disposalpipe/segment,/obj/landmark{name = "lightsout"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"hlF" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/corner/green/half,/obj/machinery/vending/wallmed1{dir = 1; name = "Emergency NanoMed"; pixel_y = -29},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"hlL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/grey{dir = 9},/obj/structure/table/standard,/obj/item/storage/box/cups{pixel_x = 4; pixel_y = 11},/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/dark,/area/space) -"hlM" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "CO24p_out"; initialize_directions = 1; internal_pressure_bound = 1000; internal_pressure_bound_default = 1000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1port) -"hlO" = (/obj/floor_decal/industrial/warning/cee,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"hlT" = (/obj/structure/closet/secure_closet/guncabinet,/obj/item/barrier,/obj/item/storage/toolbox/mechanical,/obj/item/gun/energy/ionrifle/small,/obj/item/gun/energy/gun,/obj/item/clothing/suit/armor/captain,/obj/item/clothing/gloves/captain,/obj/item/clothing/head/caphat,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hmg" = (/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/wood/walnut,/area/space) -"hmE" = (/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/industrial/outline/grey,/obj/structure/table/steel_reinforced,/obj/item/ladder_mobile,/obj/item/ladder_mobile,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"hmN" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"hmP" = (/obj/wallframe_spawn/reinforced/polarized,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hmT" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"hmZ" = (/obj/structure/closet/crate/internals/fuel,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"hnk" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/table/standard,/obj/random/toolbox{pixel_y = 14},/obj/item/folder/yellow{pixel_x = -5; pixel_y = -1},/obj/item/screwdriver{pixel_x = 6; pixel_y = 11},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"hnq" = (/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"hnw" = (/obj/structure/bed/chair/comfy/captain{dir = 8},/obj/landmark/start{name = "Captain"},/obj/machinery/button/blast_door{id_tag = "bridge_windows"; name = "Bridge Window Blast Doors"; pixel_x = 36; pixel_y = -3},/obj/machinery/button/blast_door{id_tag = "bridge_ent"; name = "Bridge Entarence Blast Doors"; pixel_x = 36; pixel_y = 7},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"hnx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hnB" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/table/standard,/obj/random/tech_supply{pixel_y = 5},/obj/random/tech_supply{pixel_x = -6; pixel_y = -7},/obj/random/tech_supply{pixel_x = 7; pixel_y = 7},/obj/random/tool{pixel_x = 4; pixel_y = -4},/obj/random/tool{pixel_x = -3; pixel_y = 9},/obj/random/tank{pixel_x = -1; pixel_y = 7},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"hnL" = (/obj/shuttle_landmark/skipjack/deck4,/turf/space,/area/space) -"hnN" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"hnT" = (/obj/structure/table/woodentable_reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 6},/obj/machinery/button/windowtint{dir = 4; id = "сhief_steward_windows"; pixel_x = -24; pixel_y = -6; range = 2},/obj/item/device/flashlight/lamp{pixel_x = -5; pixel_y = 10},/turf/simulated/floor/wood,/area/space) -"hoa" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"hoi" = (/obj/structure/table/standard,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/item/gun/energy/laser/practice,/obj/structure/window/reinforced,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/space) -"hos" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"hou" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/sticky_pad/random,/obj/floor_decal/corner/yellow/half{dir = 1},/obj/item/pen,/obj/item/storage/box/cups{pixel_x = 4; pixel_y = 11},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"hoJ" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"hoN" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/random/maintenance,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"hoQ" = (/obj/structure/table/standard,/obj/item/deck/cards,/obj/item/storage/pill_bottle/dice,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/space) -"hpa" = (/obj/floor_decal/corner/purple/border{dir = 6},/obj/item/stool/padded,/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"hpb" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hpd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"hpm" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"hpF" = (/obj/item/storage/mirror{dir = 8; pixel_x = -1; pixel_y = -24},/obj/structure/hygiene/sink{pixel_y = -12},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/space) -"hpL" = (/obj/machinery/vending/snack{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/space) -"hpO" = (/obj/structure/table/standard,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/item/gun/energy/laser/practice,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"hpR" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"hpS" = (/obj/structure/flora/pottedplant/minitree{pixel_y = 6},/obj/floor_decal/spline/fancy/black{dir = 10},/obj/machinery/light/spot,/turf/simulated/floor/grass/cut,/area/space) -"hpT" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/space) -"hpV" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; injecting = 1; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d3starboard) -"hpX" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"hqa" = (/obj/paint/red,/obj/paint_stripe/white,/obj/structure/fuel_port,/turf/simulated/wall/titanium,/area/exploration_shuttle/power) -"hql" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"hqn" = (/obj/structure/janitorialcart,/obj/item/mop,/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"hqt" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/assembly/robotics) -"hqv" = (/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"hqB" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hqH" = (/obj/floor_decal/borderfloorblack{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"hqO" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/landmark/start{name = "Research Director"},/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/entry) -"hqY" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hrb" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/seconddeck/forestarboard) -"hrj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/chapel/office) -"hrr" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/floor_decal/spline/fancy/black,/obj/machinery/camera/network/command{c_tag = "Command - Bridge Port"; dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"hrz" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"hrB" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/turf/simulated/floor/reinforced,/area/space) -"hrO" = (/obj/structure/bed/sofa/l/black,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"hrT" = (/obj/machinery/access_button/airlock_interior{master_tag = "prototype_controller"; pixel_x = -23; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"hse" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"hsm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/space) -"hsn" = (/obj/machinery/optable{name = "Xenobiology Operating Table"},/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"hsq" = (/obj/machinery/light/small{dir = 8},/obj/item/taperoll/bog{pixel_x = -12; pixel_y = -10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/space) -"hsT" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/mining/brace{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"hsY" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/space) -"hsZ" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"htc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/tool{pixel_x = -5; pixel_y = -6},/obj/random/tool{pixel_x = 4; pixel_y = 4},/obj/random/tank{pixel_x = 8; pixel_y = -1},/obj/random/tech_supply{pixel_x = -10; pixel_y = 11},/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/space) -"htd" = (/obj/random/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"htl" = (/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/forestarboard) -"htn" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "guppy_shuttle_pump_out_external"},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"htx" = (/obj/floor_decal/corner/red/half{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"htB" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"htI" = (/obj/floor_decal/borderfloor{dir = 1},/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"htJ" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/decal/cleanable/greenglow,/turf/simulated/floor/wood/walnut,/area/space) -"htU" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/table/woodentable/maple,/obj/item/reagent_containers/food/drinks/glass2/coffeecup,/obj/item/reagent_containers/food/condiment/small/packet/coffee{pixel_x = 7; pixel_y = 5},/turf/simulated/floor/wood/bamboo,/area/space) -"htV" = (/obj/floor_decal/carpet/orange{dir = 4},/obj/structure/dogbed,/mob/living/simple_animal/passive/opossum/poppy,/turf/simulated/floor/carpet/orange,/area/space) -"htW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"htX" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"hui" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hux" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"huG" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"huK" = (/obj/floor_decal/borderfloor{dir = 8},/obj/structure/table/standard,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/item/device/camera,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/corner/black/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"huO" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/atmos_alert,/obj/item/stock_parts/circuitboard/powermonitor,/obj/item/stock_parts/circuitboard/stationalert,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"huY" = (/obj/structure/bed/padded,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"hvd" = (/obj/floor_decal/techfloor,/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"hvh" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light_construct/small,/obj/random/maintenance,/turf/simulated/floor/tiled/freezer,/area/space) -"hvk" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"hvn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"hvo" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/aftport) -"hvp" = (/obj/machinery/door/airlock/atmos,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hvt" = (/obj/structure/curtain/medical,/obj/floor_decal/borderfloorwhite{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"hvF" = (/obj/random/closet,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"hvO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"hvR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "escape_pod_5_pump"},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"hvT" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/computer/upload/ai,/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"hvU" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/meter,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hvZ" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/light_switch{pixel_x = 8; pixel_y = 24},/obj/machinery/button/holosign{id_tag = "sierra_surgery2"; pixel_y = 24},/obj/machinery/button/windowtint{id = "sierra_surgery2"; pixel_x = -8; pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hwe" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"hwm" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{dir = 4; name = "Maintenance Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hww" = (/obj/floor_decal/borderfloor,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"hwE" = (/obj/structure/grille,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hwI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/flasher{id_tag = "ai_core"; pixel_y = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"hwN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"hwP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"hwS" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"hwU" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/structure/bed/chair/padded/yellow{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"hwV" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"hwW" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"hwX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/grille,/turf/simulated/floor/airless,/area/space) -"hwZ" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"hxb" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/closet/crate,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"hxm" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"hxu" = (/obj/structure/closet/crate/bin,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -10; pixel_y = -21},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"hxy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/mauve/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/mauve/bordercorner2,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/space) -"hxD" = (/obj/machinery/door/window/brigdoor/eastright{id_tag = "iaaleft"; req_access = newlist()},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"hxU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"hxY" = (/obj/structure/noticeboard{pixel_y = 32},/obj/structure/table/woodentable_reinforced/ebony,/obj/floor_decal/carpet/blue{dir = 1},/obj/item/paper_bin,/obj/item/pen/multi,/obj/item/sticky_pad/random{pixel_x = -6; pixel_y = 9},/turf/simulated/floor/carpet/blue,/area/space) -"hya" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hyc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"hyf" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"hyg" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled/monotile,/area/space) -"hyj" = (/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/floor_decal/corner/black/bordercorner{dir = 8},/obj/floor_decal/corner/black/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"hyo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"hys" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hyu" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/paint/black,/obj/paint/black,/turf/simulated/wall/r_wall/prepainted,/area/space) -"hyz" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway - Aft"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"hyA" = (/obj/structure/table/rack,/obj/item/storage/firstaid/regular{pixel_y = 10},/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular{pixel_y = -10},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"hyC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/vending/snix{dir = 8},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"hyD" = (/obj/structure/bed/padded,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/bedsheet/brown,/turf/simulated/floor/carpet,/area/space) -"hyH" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/item/modular_computer/telescreen/preset/medical{pixel_x = -32},/obj/structure/handrail{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"hyL" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/plating,/area/space) -"hyP" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/bed/chair/armchair/black,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"hyS" = (/obj/machinery/door/firedoor{dir = 8},/obj/machinery/door/airlock/civilian{autoset_access = 0; dir = 4; name = "Research General Cabin"; req_access = list("ACCESS_RESEARCH")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"hyW" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"hzb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hzh" = (/obj/machinery/power/tracker,/obj/floor_decal/solarpanel,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/airless,/area/space) -"hzl" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/bed/sofa/l/brown{dir = 4},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 10},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"hzn" = (/obj/structure/sign/thera{pixel_y = 32},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"hzv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "solar_bridge_pump"},/obj/machinery/light/small,/obj/machinery/oxygen_pump{pixel_y = -32},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "solar_bridge_airlock"; pixel_x = 2; pixel_y = 24; req_access = list("ACCESS_EXTERNAL"); tag_airpump = "solar_bridge_pump"; tag_chamber_sensor = "solar_bridge_sensor"; tag_exterior_door = "solar_bridge_outer"; tag_interior_door = "solar_bridge_inner"},/obj/machinery/airlock_sensor{id_tag = "solar_bridge_sensor"; pixel_x = -12; pixel_y = 24},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hzN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/cyan,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"hzR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"hzW" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"hAc" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/space) -"hAe" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/space) -"hAt" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"hAu" = (/obj/floor_decal/industrial/traffic{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hAz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hAA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/blue/bordercorner2,/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Hallway Two"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"hAB" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"hAD" = (/obj/structure/ladder/up,/obj/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hAE" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/virology{id_tag = "virology_access_inner"; locked = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/white/monotile,/area/space) -"hAJ" = (/obj/floor_decal/borderfloorblack,/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/space) -"hAO" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"hAP" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"hAV" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"hAZ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/artifact_scanpad,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"hBd" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{name = "Internal Affairs Agent Dorm"; secured_wires = 1},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hBn" = (/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor/hole{dir = 1},/obj/machinery/flasher{id_tag = "security_pod_flash"; name = "Floor mounted flash"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hBo" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"hBq" = (/obj/machinery/door/airlock/hatch{frequency = 1379; id_tag = "engine_airlock_outer"; name = "Engine Airlock Exterior"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hBr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"hBs" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"hBu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"hBv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"hBx" = (/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"hBL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"hBS" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/space) -"hBZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"hCb" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/space) -"hCt" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/plating,/area/space) -"hCv" = (/obj/structure/bed/chair/padded/red{dir = 4},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hCw" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"hCF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"hCG" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"hCS" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"hCT" = (/obj/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hCU" = (/obj/structure/table/woodentable/mahogany,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"hCY" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"hDf" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"hDl" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hDn" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "misclab"; name = "Test Chamber Blast Doors"},/turf/simulated/floor/plating,/area/space) -"hDo" = (/obj/structure/hygiene/shower{dir = 1},/obj/structure/hygiene/drain/bath,/obj/machinery/door/window{dir = 1},/obj/structure/window/basic{dir = 4},/obj/structure/closet/walllocker{pixel_x = -28},/obj/random/soap,/obj/item/towel/fleece,/turf/simulated/floor/tiled/freezer,/area/space) -"hDr" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"hDt" = (/obj/floor_decal/industrial/outline/orange,/obj/structure/ship_munition/disperser_charge/mining,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"hDE" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"hDN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"hDS" = (/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood/walnut,/area/space) -"hDW" = (/obj/structure/closet/secure_closet/personal/patient,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"hEe" = (/obj/random/junk,/obj/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"hEt" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/structure/bed/chair/armchair/black{dir = 4},/obj/machinery/camera/network/command{c_tag = "Command - Internal Affairs Communications Relay"; dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"hEw" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/shipsensors,/turf/simulated/floor/reinforced{map_airless = 1},/area/bridge) -"hED" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -24},/obj/structure/table/standard,/obj/machinery/recharger,/obj/floor_decal/corner/lime/mono,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"hEE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"hEH" = (/obj/floor_decal/carpet{dir = 8},/turf/simulated/floor/carpet,/area/space) -"hEI" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"hEJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/shuttle/petrov/eva) -"hEQ" = (/obj/structure/railing/mapped,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"hFb" = (/obj/structure/sign/warning/hot_exhaust{dir = 1},/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"hFc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"hFe" = (/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"hFo" = (/obj/structure/table/rack/dark,/obj/item/storage/box/latexgloves,/obj/item/storage/box/nitrilegloves,/obj/item/storage/box/bloodpacks,/obj/item/storage/box/beakers,/obj/item/storage/box/masks,/obj/item/storage/box/syringes,/obj/item/storage/box/bodybags,/obj/item/storage/box/freezer{pixel_y = 13},/obj/item/storage/med_pouch/burn,/obj/item/storage/med_pouch/burn,/obj/item/storage/med_pouch/oxyloss,/obj/item/storage/med_pouch/oxyloss,/obj/item/storage/med_pouch/toxin,/obj/item/storage/med_pouch/toxin,/obj/item/storage/med_pouch/trauma,/obj/item/storage/med_pouch/trauma,/obj/item/roller_bed,/obj/item/roller_bed,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/auto_cpr,/obj/floor_decal/spline/plain/paleblue{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"hFu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"hFC" = (/obj/machinery/light/small{dir = 8},/obj/floor_decal/spline/plain/brown{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"hFK" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"hFN" = (/obj/structure/catwalk,/obj/random/hat,/turf/simulated/open,/area/space) -"hFS" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"hFU" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"hFV" = (/obj/structure/railing/mapped,/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/space) -"hFW" = (/obj/floor_decal/spline/plain/black,/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hGd" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"hGe" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"hGf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"hGh" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"hGj" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"hGr" = (/obj/structure/sign/directions/supply{dir = 4; pixel_y = 24},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/deck/fourth{pixel_y = 35},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"hGt" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hGy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"hGC" = (/obj/structure/closet/secure_closet/personal/empty,/obj/floor_decal/corner/green/border{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hGD" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"hGK" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/space,/area/space) -"hGM" = (/obj/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hGN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"hGR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/blast/regular{dir = 4; id_tag = "bsa_door2"; name = "Obstruction Field Disperser Blast Door"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"hGU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/machinery/camera/network/security{c_tag = "Security - Fore Hallway"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hHa" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/constructable_frame/machine_frame,/obj/decal/cleanable/blood/oil,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"hHd" = (/obj/structure/sign/warning/moving_parts{dir = 4; pixel_x = -32},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"hHm" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/lino,/area/space) -"hHp" = (/obj/machinery/light{dir = 4},/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/coffee{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"hHv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/research{id_tag = "researchdoor_interior"; name = "Research Division Access"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hHA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"hHC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/camera/network/fourth_deck{c_tag = "Escape Pods - Starboard"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"hHF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"hHI" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hHQ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"hHX" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"hHY" = (/obj/structure/table/glass,/obj/item/device/scanner/spectrometer,/obj/item/device/scanner/reagent,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloorwhite{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"hIf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"hIn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/engine_setup/coolant_canister,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"hIo" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Aft Starboard"; dir = 4},/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"hIq" = (/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"hIr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"hIs" = (/obj/machinery/door/blast/shutters{dir = 2; id_tag = "teleport3"; name = "Third Deck Teleporter Access Shutters"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"hIu" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/techfloor,/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"hIP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/railing/mapped{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/space) -"hIT" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder,/obj/item/folder,/obj/item/folder/nt,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hIX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"hJd" = (/obj/structure/flora/pottedplant/orientaltree,/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/camera/network/command{c_tag = "Command - Chief Medical Officer"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"hJk" = (/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/bridge) -"hJw" = (/obj/structure/lattice,/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"hJE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"hJM" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"hJT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hJV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 1},/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hKb" = (/obj/structure/railing/mapped,/obj/machinery/bodyscanner{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"hKd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"hKe" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"hKg" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"hKj" = (/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"hKk" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hKl" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/space) -"hKq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/corner/purple,/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/entry) -"hKx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"hKA" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "o24p_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1port) -"hKH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"hKK" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/center) -"hKN" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white,/area/space) -"hKO" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/space) -"hLe" = (/obj/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"hLf" = (/obj/structure/door_assembly,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hLv" = (/obj/floor_decal/spline/plain/black,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hLw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hLx" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"hLG" = (/obj/structure/table/glass,/obj/item/folder,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"hLJ" = (/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hLM" = (/obj/structure/table/standard,/obj/item/towel/random,/obj/item/towel/random,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"hLO" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/shuttle/petrov/eva) -"hLX" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hMg" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Robotics Backroom"; req_access = newlist()},/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"hMi" = (/obj/random/closet,/obj/random/maintenance,/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"hMp" = (/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"hMA" = (/obj/machinery/computer/modular/preset{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"hMC" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/obj/machinery/power/sensor{name = "Powernet Sensor - Shield Subgrid"; name_tag = "Shield Bypass"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/space) -"hMO" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hMV" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/space) -"hMX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"hNf" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/space) -"hNk" = (/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Starboard Two"; dir = 4},/turf/simulated/floor/tiled,/area/space) -"hNm" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"hNn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"hNp" = (/obj/structure/bed/chair/comfy/teal,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white,/area/space) -"hNs" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hNC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/door/blast/regular{dir = 4; id_tag = "d3portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"hNE" = (/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/airlock) -"hNN" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/white,/area/space) -"hNZ" = (/obj/structure/railing/mapped,/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/space) -"hOi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Main Warehouse"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"hOp" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"hOu" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1starboard) -"hOv" = (/turf/simulated/wall/prepainted,/area/maintenance/incinerator) -"hOz" = (/obj/structure/sign/poster{pixel_x = -32},/obj/structure/table,/obj/item/stack/material/wood/walnut{amount = 4},/turf/simulated/floor/plating,/area/space) -"hOL" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"hOR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "petrov_shuttle_airlock"; pixel_x = -24; pixel_y = 22},/obj/floor_decal/corner/purple,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/space) -"hOU" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/table/rack,/obj/item/wrench,/obj/item/clothing/mask/breath,/obj/item/tank/oxygen_emergency_extended,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"hOX" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hPc" = (/obj/machinery/suit_storage_unit/medical/alt,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"hPf" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"hPn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/floor_decal/corner/grey{dir = 10},/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"hPx" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hPy" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/bed/chair/padded/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"hPF" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/machinery/photocopier,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"hPN" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"hPP" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hPR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hPX" = (/obj/structure/catwalk,/turf/simulated/open,/area/maintenance/seconddeck/forestarboard) -"hQf" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"hQr" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"hQt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"hQy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"hQA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"hQO" = (/obj/structure/table/standard,/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/spray/sterilizine,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"hQX" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"hQZ" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light/small{dir = 4},/obj/machinery/alarm/monitor/isolation{alarm_id = "petrov3"; dir = 8; pixel_x = 24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"hRc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"hRh" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/structure/closet/emcloset/anchored,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hRu" = (/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/seconddeck/center) -"hRz" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/binary/pump{name = "Pump - waste to connector"},/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"hRQ" = (/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hRS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"hRT" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/ebony,/area/space) -"hRW" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"hRZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/pager/security{name = "Call Guards button"; pixel_x = -12; pixel_y = 22},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"hSc" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/hologram/holopad{pixel_x = -16; pixel_y = 16},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"hSf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/engineering/engine_monitoring) -"hSn" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "xenobotany_access_maintaince"; name = "Xenobotany Lab Access Console"; pixel_y = 24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled/techfloor,/area/space) -"hSq" = (/obj/machinery/door/airlock/vault/bolted{autoset_access = 0; id_tag = "medsafe_aft"; name = "Emergency Exit"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"hSu" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced,/area/space) -"hSw" = (/obj/machinery/computer/modular/preset/security{dir = 8},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"hSx" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/mirror{pixel_x = 26; pixel_y = 1},/turf/simulated/floor/tiled,/area/space) -"hSE" = (/obj/structure/table/standard,/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/alarm{pixel_y = 24},/obj/structure/flora/pottedplant/thinbush{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"hSU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated/white,/turf/simulated/floor/plating,/area/vacant/infirmary) -"hTf" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"hTi" = (/obj/floor_decal/techfloor/orange,/obj/structure/bed/chair/padded/blue{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"hTm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"hTt" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/red/half{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/button/alternate/door{dir = 1; id_tag = "bridge_hallway_doors_starboadr"; name = "Bridge Hallway Doors Starboard"; pixel_y = 10},/obj/machinery/button/blast_door{dir = 1; id_tag = "lobb_shutt"; name = "Lobby shutters control"; pixel_x = -4; pixel_y = -4},/obj/machinery/button/blast_door{dir = 1; id_tag = "lobb_hall_shutt"; name = "Hallway shutters control"; pixel_x = 6; pixel_y = -4},/turf/simulated/floor/tiled/techfloor,/area/space) -"hTu" = (/obj/structure/table/rack,/obj/item/stock_parts/circuitboard/bluespacerelay,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 4},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"hTA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"hTK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/space) -"hTN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"hTO" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/window/reinforced/tinted{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/button/alternate/door{dir = 4; id_tag = "med_crit_d1"; name = "Critical Wing Deck 1 Entrance"; pixel_x = -5; pixel_y = -4},/obj/machinery/button/alternate/door{dir = 4; id_tag = "MedbayInf"; name = "Infirmary Main Entrance"; pixel_x = -5; pixel_y = 6},/obj/machinery/button/alternate/door{dir = 4; id_tag = "med_crit_d2"; name = "Critical Wing Deck 2 Entrance"; pixel_x = 5; pixel_y = -4},/turf/simulated/floor/tiled/white,/area/space) -"hTP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"hTS" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"hTZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/space) -"hUq" = (/obj/structure/table/standard,/obj/floor_decal/corner/paleblue/diagonal,/obj/item/toy/figure/md,/turf/simulated/floor/tiled/white,/area/space) -"hUv" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/handrail{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hUB" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/ship/engines,/turf/simulated/floor/tiled/steel_grid,/area/space) -"hUE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/padded/red{dir = 4},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hUG" = (/obj/structure/bed/sofa/l/teal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"hUN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"hUQ" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"hUX" = (/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "toilet_eng_1"; name = "Toilet"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"hUZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/forestarboard) -"hVf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/light,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"hVg" = (/obj/machinery/computer/modular/preset/medical,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"hVh" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/machinery/vending/coffee{dir = 8},/obj/machinery/button/blast_door{dir = 1; id_tag = "qm_warehouse2"; name = "Warehouse Door Control"; pixel_y = -27; req_access = list("ACCESS_CARGO")},/turf/simulated/floor/tiled,/area/space) -"hVi" = (/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"hVo" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"hVy" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "cockpit_shutters"; name = "Protective Shutters"; opacity = 0},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/cockpit) -"hVE" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 40},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"hVF" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"hVK" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hVS" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/item/folder/nt,/obj/item/folder/nt,/obj/item/folder/white,/obj/item/folder/white,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"hVT" = (/obj/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"hWb" = (/obj/floor_decal/chapel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"hWe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "cedoor"; name = "Chief Engineer"; req_access = newlist(); secured_wires = 1; stripe_color = "#ffbf00"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/office/ce) -"hWh" = (/obj/machinery/door/firedoor,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"hWm" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"hWt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hWB" = (/turf/unsimulated/mask,/area/hallway/primary/fourthdeck/center) -"hWR" = (/obj/machinery/suit_storage_unit/mining,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"hWZ" = (/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"hXe" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"hXj" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos) -"hXn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/assembly/robotics) -"hXo" = (/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Captain"; secured_wires = 1},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"hXp" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/grey,/obj/random/masks,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hXy" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/spot,/obj/structure/sign/warning/airlock{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hXB" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/space) -"hXE" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hXG" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"hXP" = (/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 8; external_pressure_bound = 100; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"hXT" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"hXU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"hXZ" = (/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/plating,/area/engineering/fuelbay) -"hYf" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"hYl" = (/obj/decal/cleanable/dirt,/obj/structure/table/woodentable,/obj/item/tape_roll{pixel_x = 5; pixel_y = 6},/obj/item/reagent_containers/chem_disp_cartridge/coffee{pixel_x = -7; pixel_y = 3},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/beaglemug{pixel_x = 9; pixel_y = -5},/turf/simulated/floor/wood/walnut,/area/space) -"hYm" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"hYy" = (/obj/structure/bed/padded,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"hYz" = (/obj/machinery/seed_storage/random,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"hYB" = (/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"hYN" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"hYX" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1port) -"hZc" = (/obj/structure/closet/walllocker{pixel_y = 28},/obj/item/storage/candle_box/scented,/obj/structure/bed/sofa/l/lime,/turf/simulated/floor/carpet/blue2,/area/space) -"hZf" = (/obj/floor_decal/corner/black/mono,/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"hZn" = (/turf/simulated/wall/prepainted,/area/vacant/cargo) -"hZo" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hZp" = (/turf/simulated/wall/prepainted,/area/hallway/primary/firstdeck/aft) -"hZy" = (/obj/machinery/vending/cigarette,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"hZF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"hZG" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"hZK" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/purple/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"hZL" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"hZN" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"hZQ" = (/obj/structure/bookcase/manuals,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"hZR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"iah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"ian" = (/obj/structure/table/rack,/obj/item/device/radio,/obj/item/device/flashlight,/obj/item/crowbar/red,/obj/item/device/megaphone,/obj/floor_decal/industrial/outline/grey,/obj/item/device/binoculars,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"ias" = (/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"iau" = (/obj/structure/largecrate,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"iaQ" = (/obj/machinery/vending/sovietsoda{dir = 1},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"iaT" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/multi_tile/glass/civilian{dir = 8; name = "Hallway"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/center) -"iaX" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"ibi" = (/obj/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/mess) -"ibt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood/maple,/area/space) -"ibv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"ibw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"iby" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/bordercorner,/obj/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ibC" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/plating,/area/space) -"ibE" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"ibF" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"ibG" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/corner/red/bordercee,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ibJ" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ibQ" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "outercheckwindow"; name = "Outer Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/security/opscheck) -"ibS" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"ibW" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"ich" = (/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/b_green/bordercorner2{dir = 5},/obj/structure/bed/chair/shuttle/green{dir = 8},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"ick" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"icv" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/starboard) -"icw" = (/obj/machinery/smartfridge/foods,/obj/machinery/door/blast/shutters{dir = 8; id_tag = "cafe"; name = "Cafe Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"icG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"icI" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"icR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"icT" = (/obj/structure/closet/walllocker{pixel_y = -28},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/corner/purple/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"icW" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"idc" = (/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"idj" = (/obj/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"idk" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/machinery/vending/cigarette{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"idp" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"idq" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"idr" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"idu" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"idw" = (/obj/structure/flora/pottedplant/flower,/obj/floor_decal/carpet/green{dir = 8},/obj/floor_decal/carpet/green{dir = 1},/obj/floor_decal/carpet/green{dir = 9},/turf/simulated/floor/carpet/green,/area/space) -"idA" = (/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"idB" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"idD" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/medical{name = "Auxiliary Medical Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/equipstorage) -"idH" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"idI" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/obj/floor_decal/corner/black/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"idK" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"idQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Fore Hallway Aft"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"idY" = (/obj/structure/table/rack/wooden,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"iej" = (/obj/machinery/atmospherics/unary/tank/air,/obj/floor_decal/industrial/outline/orange,/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"iel" = (/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/camera/network/command{c_tag = "Telecommunications - Control Room"; network = list("Command","Engineering")},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"iep" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ier" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/photocopier,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"ies" = (/obj/structure/closet/emcloset,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"ieu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"iew" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/glass/bolted/cycling{frequency = 1380; id_tag = "merchant_shuttle_station_inner"; name = "Docking Port Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ieD" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ieG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"ieJ" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"ieR" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"ife" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/light/spot,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/corner/grey/three_quarters,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/space) -"ifh" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"ifq" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"ift" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"ifv" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_7"; name = "escape pod seven controller"; pixel_x = -20; tag_door = "escape_pod_7_hatch"},/obj/structure/bed/chair/shuttle{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"ify" = (/obj/floor_decal/corner/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"ifH" = (/obj/machinery/power/terminal,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/cell/high{pixel_x = 1},/obj/item/cell/high{pixel_x = 6; pixel_y = 10},/obj/item/cell/high{pixel_x = -8; pixel_y = 10},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"ifL" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/light/led/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/reagent_containers/glass/beaker/large{pixel_y = 6},/obj/machinery/reagentgrinder/juicer{pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/space) -"igs" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/window/northleft{dir = 8; id_tag = "bo_windows"; name = "Security Sergeant's Desk"; req_access = newlist()},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/paint_stripe/red,/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_sergeant_shutters"; name = "Warden Desk"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"igx" = (/obj/machinery/status_display,/turf/simulated/wall/prepainted,/area/space) -"igy" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"igz" = (/obj/floor_decal/techfloor,/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"igB" = (/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/forestarboard) -"igE" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"igF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"igH" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"igN" = (/obj/structure/bed/chair/rounded/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"igT" = (/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"igU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"igY" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/bed/sofa/r/brown,/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red{dir = 5},/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Canteen - Lounge"; dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"ihc" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ihh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"ihl" = (/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/structure/window/boron_reinforced,/obj/structure/window/boron_reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ihs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/space) -"ihx" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_room) -"ihy" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/bikehorn,/obj/item/storage/candle_box,/obj/item/device/toner,/obj/item/device/taperecorder,/obj/structure/closet/crate,/obj/item/laserframe,/obj/machinery/light,/obj/floor_decal/spline/plain/purple{dir = 1},/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ihA" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"ihM" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"ihU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/space) -"ihX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"iia" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/floor_decal/borderfloorwhite{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"iib" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"iid" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random_multi/single_item/space_rabbit,/turf/simulated/floor/airless,/area/space) -"iif" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/space) -"iij" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"iim" = (/obj/structure/closet/walllocker{pixel_y = 28},/obj/item/stack/material/plasteel/ten,/obj/item/stack/material/steel/fifty,/obj/item/stack/material/steel/fifty,/obj/item/stack/material/rods/fifty,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"iir" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters/open{id_tag = "med_to_maint"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iiu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{id_tag = "observation_shielding"; name = "Observation Shield"},/turf/simulated/floor/plating,/area/space) -"iix" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"iiG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"iiS" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"iiX" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"iiZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ijh" = (/obj/structure/table/rack,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ijo" = (/obj/structure/cart{dir = 4},/obj/structure/sign/warning/nosmoking_burned{pixel_x = -26},/obj/floor_decal/spline/plain/yellow{dir = 4},/obj/decal/cleanable/cobweb,/obj/decal/cleanable/ash,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ijv" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/green/border{dir = 10},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor/tiled,/area/space) -"ijx" = (/obj/machinery/optable,/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ijE" = (/obj/structure/table/steel_reinforced,/obj/item/reagent_containers/chem_disp_cartridge/tea,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; name = "metal tea cup"; pixel_x = 10; pixel_y = 6},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ijM" = (/obj/machinery/shield_diffuser,/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ijN" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/industrial/warning{dir = 9},/obj/structure/table/standard,/obj/machinery/reagent_temperature,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ijO" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway - Actors"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"ijP" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/office) -"ika" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ikb" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"ike" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "AI Core Access"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/turret_protected/ai) -"ikg" = (/obj/machinery/door/window/westleft{dir = 2; name = "Chemistry Refrigerator"},/obj/machinery/smartfridge/secure/medbay{req_access = list(list("ACCESS_CHEMISTRY","ACCESS_MEDICAL_EQUIP"))},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"iko" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_6_berth"; name = "escape pod six berth controller"; pixel_x = -32; pixel_y = 21; tag_door = "escape_pod_6_berth_hatch"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"ikr" = (/obj/machinery/door/airlock/glass/mining{name = "Shuttle Fuel Bay Interior"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"ikx" = (/obj/floor_decal/borderfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Hallway One"},/turf/simulated/floor/tiled,/area/space) -"ikB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"ikC" = (/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"ikH" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/bed/chair/shuttle,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_10"; name = "escape pod ten controller"; pixel_x = -20; tag_door = "escape_pod_10_hatch"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ikK" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"ikN" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/structure/sign/warning/vacuum{pixel_y = 32},/turf/simulated/floor/reinforced,/area/maintenance/incinerator) -"ile" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/barrier,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"ilr" = (/obj/structure/table/woodentable/mahogany,/obj/item/storage/candle_box,/turf/simulated/floor/wood/walnut,/area/chapel/main) -"ils" = (/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/modular/preset/civilian,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"ilt" = (/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"ilz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"ilB" = (/obj/machinery/door/blast/regular{id_tag = "petrovcell3"; name = "Test Chamber Blast Doors"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"ilO" = (/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"ilR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"ilV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"imi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"imm" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"imn" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"imr" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"imx" = (/obj/catwalk_plated/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/space) -"imA" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "calypso_shuttle_pump_out_internal"},/obj/floor_decal/industrial/warning/full,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"imE" = (/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"imH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"imJ" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"imM" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/space) -"imR" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/wallframe_spawn/reinforced/hull,/turf/simulated/floor/plating,/area/bridge) -"ina" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"inb" = (/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/obj/decal/cleanable/filth,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"inh" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated/dark,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/safe_room/bridge) -"inl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"inI" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"inO" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_2_pump"},/obj/floor_decal/borderfloor/corner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"inQ" = (/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"inS" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"inU" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_1_pump"},/obj/floor_decal/borderfloor/corner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ioc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ioi" = (/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1starboard) -"iok" = (/obj/structure/noticeboard{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ioI" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"ioU" = (/obj/machinery/papershredder,/obj/floor_decal/techfloor{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ipa" = (/obj/structure/bed/sofa/r/black,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Lounge - Library"},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"ipg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"ipj" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ipo" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ipp" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"ipu" = (/obj/machinery/camera/network/research{c_tag = "Research - Misc. Test Chamber"; network = list("Research","Miscellaneous Reseach")},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"ipR" = (/obj/paint_stripe/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"ipU" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"ipX" = (/obj/machinery/atmospherics/unary/heater{dir = 4},/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ipZ" = (/obj/machinery/door/airlock/glass/command{autoset_access = 0; dir = 4; name = "Primary Docking Port Control"; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iqa" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"iqb" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"iqc" = (/obj/machinery/door/airlock/research{name = "Equipment Storage"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"iqg" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/bed/sauna_bench/middle/north,/turf/simulated/floor/wood/ebony,/area/space) -"iqj" = (/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 5},/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/lava/purple{pixel_x = -8; pixel_y = 5},/obj/item/storage/secure/safe{pixel_x = 32},/turf/simulated/floor/carpet/purple,/area/space) -"iql" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"iqx" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/access_button/airlock_exterior{master_tag = "solar_bridge_port_airlock"; pixel_x = -26; pixel_y = -24},/turf/simulated/floor,/area/space) -"iqy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"iqA" = (/obj/structure/table/rack/dark,/obj/item/stack/material/ocp/ten,/obj/item/stack/material/ocp/ten,/obj/item/stack/material/plasteel/fifty,/obj/structure/railing/mapped,/obj/floor_decal/spline/plain/black,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"iqH" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iqL" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"iqM" = (/obj/structure/table/rack,/obj/item/device/flashlight,/obj/item/device/radio,/obj/item/crowbar,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/space) -"irc" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/padded/blue{dir = 8},/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"irx" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/orange,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"irA" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"irD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"irE" = (/obj/structure/table/glass,/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"irG" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"irS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng4_inner"; name = "First Deck Port Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1port) -"irV" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/glass,/obj/structure/fireaxecabinet{dir = 4; pixel_y = 30},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"irZ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/space) -"isi" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"isq" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/corner,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"isv" = (/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"isx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"isA" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"isH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"isJ" = (/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"isN" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"isX" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"isY" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/bed/sofa/m/brown,/obj/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/space) -"isZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "observation_shielding"; name = "Observation Shield"},/turf/simulated/floor/plating,/area/space) -"iti" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/handrail{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"itj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"itm" = (/obj/floor_decal/ntlogo,/turf/simulated/floor/tiled,/area/space) -"itA" = (/obj/item/stack/tile/floor{pixel_x = -7; pixel_y = -12},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"itC" = (/obj/structure/bed/chair/office/green,/turf/simulated/floor/plating,/area/space) -"itJ" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"itQ" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "xenobioaqua"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"iud" = (/obj/floor_decal/corner/research/mono,/obj/machinery/computer/robotics{dir = 4},/obj/machinery/light/spot{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"iue" = (/obj/floor_decal/borderfloorwhite,/obj/floor_decal/corner/lime/border,/obj/structure/curtain/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"iul" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"ius" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated/white,/turf/simulated/floor/plating,/area/vacant/infirmary) -"iuu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"iuv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iuB" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"iuK" = (/obj/structure/bed/chair/office/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"iuW" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "cChamber4pV"; name = "Chamber Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"iuZ" = (/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/structure/curtain/open/bed,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"ivb" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ivd" = (/obj/machinery/door/blast/regular{id_tag = "d4portnacelle"},/obj/machinery/atmospherics/valve/digital{id_tag = "RE4F"; name = "RE4 digital valve"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"ivl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"ivu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/warning/radioactive{dir = 4; pixel_x = -32},/obj/machinery/button/blast_door{desc = "A remote control-switch for engine core."; dir = 4; id_tag = "gravgen-antirad-shielding"; name = "Gravitational Generator Radiation Shielding Control"; pixel_x = -21; pixel_y = 10},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/techfloor{dir = 9},/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ivv" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "guppy_shuttle_pump_out_external"},/obj/machinery/airlock_sensor/airlock_exterior{frequency = 1331; id_tag = "guppy_shuttle_exterior_sensor"; master_tag = "guppy_shuttle"; pixel_x = 25; pixel_y = -24},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"ivw" = (/obj/structure/closet/secure_closet/chemical,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"ivz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"ivC" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ivD" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"ivJ" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "briefing_windows"},/turf/simulated/floor/plating,/area/space) -"ivL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"ivM" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"ivP" = (/obj/machinery/photocopier,/obj/floor_decal/corner/yellow/half{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"ivT" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Warden"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"ivW" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"iwf" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/b_green/border,/obj/machinery/cell_charger,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/space) -"iwh" = (/obj/machinery/reagentgrinder,/obj/item/reagent_containers/glass/beaker/large,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"iwi" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"iwk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"iwz" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"iwE" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"iwY" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 4},/obj/structure/bed/padded,/obj/item/bedsheet/orange,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"iwZ" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/landmark{name = "JoinLateCryo"},/obj/machinery/computer/cryopod{pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/space) -"ixb" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/table/standard,/obj/random/tool,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ixd" = (/obj/floor_decal/industrial/outline/red,/obj/structure/ship_munition/disperser_charge/fire,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"ixk" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/sign/directions/supply{dir = 4; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"ixu" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen{pixel_x = -1},/obj/item/folder/red,/obj/floor_decal/borderfloor{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/corner/black/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"ixA" = (/obj/floor_decal/corner/green/border{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ixK" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/closet/firecloset,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/security/brig) -"ixM" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/red/bordercorner,/turf/simulated/floor/tiled,/area/space) -"ixQ" = (/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"ixU" = (/obj/wallframe_spawn/reinforced/polarized/full{id = "bridge_windows"},/obj/structure/cable/green,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "bridge_ent"; name = "Bridge Lockdown"},/turf/simulated/floor/plating,/area/bridge) -"iyb" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{id_tag = "xenobio1"; name = "Containment Blast Doors"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"iyd" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; target_pressure = 200},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/space) -"iyi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/decal/cleanable/dirt,/obj/machinery/power/terminal,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Substation - Second Deck"},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"iyk" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/blue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iyn" = (/obj/machinery/light_switch{dir = 8; pixel_x = 21},/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/item/stool/wood,/turf/simulated/floor/wood/walnut,/area/space) -"iyp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/cooker/fryer,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"iyv" = (/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/space) -"iyx" = (/obj/structure/ladder,/obj/structure/railing/mapped{dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/maintenance/seconddeck/foreport) -"iyA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/research{dir = 4; name = "RND - Servers"; secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iyB" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"iyC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"iyF" = (/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/generic{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"iyG" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"iyO" = (/obj/machinery/disposal,/obj/item/mop,/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"iyZ" = (/obj/machinery/papershredder,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"izf" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/computer/ship/navigation{dir = 8},/turf/simulated/floor/tiled,/area/space) -"izh" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"izi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"izj" = (/obj/machinery/vending/cola{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"izk" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/conveyor{dir = 4; id = "Mail"},/turf/simulated/floor/tiled/dark,/area/space) -"izl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"izp" = (/obj/machinery/honey_extractor,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/machinery/light/spot,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/monotile,/area/space) -"izs" = (/obj/machinery/computer/air_control{dir = 1; input_tag = "waste_in"; name = "Waste Tank Control"; output_tag = "waste_out"; sensor_name = "Waste Tank"; sensor_tag = "waste_sensor"},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"izt" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/wood/yew,/area/space) -"izv" = (/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/fluid_mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"izz" = (/obj/floor_decal/borderfloor,/obj/structure/sign/directions/security{pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/infirmary{pixel_x = 32; pixel_y = -31},/obj/structure/sign/directions/science{pixel_x = 32; pixel_y = -38},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Aft Stairwell"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"izE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"izW" = (/obj/structure/bed/sofa/l/red{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"iAj" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"iAm" = (/obj/structure/catwalk,/obj/structure/sign/warning/hot_exhaust{dir = 4; pixel_x = -32},/turf/simulated/open,/area/space) -"iAt" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/space) -"iAv" = (/obj/machinery/door/firedoor,/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"iAD" = (/obj/wallframe_spawn/reinforced/polarized/full{id = "infimary_staging"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_crit1"; name = "Infirmary Staging Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/medical/sleeper) -"iAP" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/obj/structure/closet/medical_wall/filled{pixel_x = 32},/obj/random/firstaid,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"iAQ" = (/obj/structure/filingcabinet/chestdrawer,/obj/floor_decal/industrial/outline/yellow,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/turf/simulated/floor/tiled/white/monotile,/area/space) -"iAT" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/open,/area/maintenance/seconddeck/aftstarboard) -"iAW" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/bed/chair/padded/yellow{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iBa" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/corner/green/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"iBd" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"iBl" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 8},/obj/structure/table/standard,/obj/item/storage/firstaid/regular{pixel_y = 7},/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/quartermaster/office) -"iBt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"iBu" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"iBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"iBH" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"iBI" = (/obj/floor_decal/industrial/warning,/obj/machinery/camera/network/command{c_tag = "Command - Vault"; dir = 8},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"iBJ" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/space) -"iBN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"iBO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"iBT" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/purple{dir = 1},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/space) -"iBZ" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/woodentable/maple,/obj/item/reagent_containers/food/condiment/small/packet/sugar{pixel_x = 8; pixel_y = 3},/obj/item/reagent_containers/food/condiment/small/packet/sugar{pixel_x = 8; pixel_y = -1},/obj/item/reagent_containers/food/condiment/small/packet/sugar{pixel_x = 8; pixel_y = -5},/obj/item/reagent_containers/food/drinks/pitcher{pixel_x = -3; pixel_y = 5},/obj/machinery/reagent_temperature{pixel_x = -3},/turf/simulated/floor/wood/bamboo,/area/space) -"iCa" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/space) -"iCf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"iCg" = (/turf/simulated/wall/r_wall/prepainted,/area/vacant/cargo) -"iCj" = (/obj/shuttle_landmark/ninja/deck1,/turf/space,/area/space) -"iCD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"iCF" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/development) -"iCK" = (/obj/floor_decal/steeldecal/steel_decals_central7,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"iCS" = (/obj/decal/cleanable/dirt,/obj/structure/synthesized_instrument/synthesizer/piano,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"iDb" = (/obj/machinery/computer/modular/preset/medical{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"iDf" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lightgrey/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/structure/sign/botany{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"iDj" = (/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/space) -"iDl" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"iDo" = (/obj/machinery/atmospherics/valve/shutoff/fuel{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/engineering/fuelbay) -"iDr" = (/obj/structure/noticeboard{pixel_y = 32},/obj/structure/table/standard,/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/item/stamp/cargo{name = "supply rubber stamp"},/obj/floor_decal/corner/yellow/half{dir = 1},/obj/item/device/eftpos{pixel_x = -7; pixel_y = 11},/turf/simulated/floor/tiled,/area/quartermaster/office) -"iDB" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"iDE" = (/obj/structure/window/basic,/obj/machinery/door/window{autoset_access = 0; dir = 4},/obj/structure/curtain/open/privacy,/obj/item/stool/padded,/obj/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"iDK" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/black/bordercorner{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/floor_decal/corner/grey/border{dir = 5},/obj/machinery/vending/lavatory{dir = 1},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"iDP" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"iDU" = (/obj/structure/mattress,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftstarboard) -"iEb" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/ship_munition/disperser_charge/explosive,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"iEl" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/space) -"iEm" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"iEq" = (/obj/floor_decal/industrial/outline/red,/obj/structure/ship_munition/disperser_charge/fire,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"iEt" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/computer/air_control{input_tag = "CO22p_in"; name = "Propellent Supply Control"; output_tag = "CO22p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngCO22"},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"iEv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"iEy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"iEB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"iEJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"iEL" = (/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/turf/simulated/floor/reinforced,/area/space) -"iEY" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/white,/area/space) -"iFe" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"iFo" = (/obj/floor_decal/techfloor/orange{dir = 10},/obj/machinery/sleeper/survival_pod{dir = 1},/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"iFx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"iFD" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/vending/soda{dir = 8},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/space) -"iFF" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/space) -"iFH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"iFP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"iGb" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/table/rack{dir = 8},/obj/random/maintenance,/obj/random/gloves,/turf/simulated/floor/tiled/techfloor,/area/space) -"iGf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"iGg" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled,/area/space) -"iGi" = (/obj/machinery/pointdefense_control{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"iGl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"iGm" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"iGp" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"iGv" = (/obj/structure/closet/crate/critter,/obj/item/device/scanner/health,/obj/item/device/scanner/gas,/obj/item/device/scanner/mining,/obj/item/autopsy_scanner,/obj/item/device/scanner/plant,/obj/item/device/scanner/price,/obj/item/device/scanner/xenobio,/obj/item/device/t_scanner,/obj/item/device/gps,/obj/item/device/gps,/obj/floor_decal/spline/plain/purple{dir = 9},/obj/machinery/camera/network/supply{c_tag = "Supply Office - Warehouse - Shutters"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"iGy" = (/obj/machinery/door/airlock/research{dir = 4; name = "RND - Servers"; secured_wires = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iGA" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iGE" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"iGS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/center) -"iGV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"iGY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"iGZ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iHc" = (/obj/floor_decal/borderfloorblack,/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"iHg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"iHh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iHn" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/wall/r_wall/prepainted,/area/maintenance/incinerator) -"iHt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"iHw" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"iHy" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"iHA" = (/obj/structure/hygiene/shower{pixel_y = 15},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"iHF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/railing/mapped{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"iHT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"iHU" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/paint_stripe/red,/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized{id = "forensicswindow"},/turf/simulated/floor/plating,/area/space) -"iIe" = (/obj/floor_decal/corner/black/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"iIk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"iIm" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"iIp" = (/obj/item/stack/tile/floor{pixel_x = 3; pixel_y = 4},/obj/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"iIr" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"iIz" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "xenobio1"; name = "Containment Blast Doors"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/reinforced,/area/space) -"iIA" = (/obj/structure/bed/padded,/obj/item/bedsheet/red,/obj/structure/curtain/open/bed,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/landmark/start{name = "Internal Affairs Agent"},/obj/item/storage/secure/safe{pixel_y = 32},/turf/simulated/floor/wood/walnut,/area/space) -"iIC" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"iIE" = (/obj/structure/railing/mapped,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iIF" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"iIJ" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"iIK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"iJh" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"iJi" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"iJp" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"iJr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/reinforced,/area/space) -"iJE" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/papershredder,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"iJH" = (/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"iJK" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"iJL" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled/monotile,/area/space) -"iJM" = (/obj/floor_decal/corner/red/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"iJQ" = (/obj/decal/cleanable/blood/drip,/obj/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/foreport) -"iJU" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"iKb" = (/obj/structure/flora/seaweed/glow,/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish,/turf/simulated/floor/beach/sand,/area/space) -"iKf" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/robotics,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"iKi" = (/obj/structure/catwalk,/obj/structure/sign/warning/moving_parts{dir = 8; pixel_x = 34},/obj/structure/railing/mapped,/obj/machinery/conveyor_switch/oneway{id = "charon_cargo_in"; name = "charon external conveyor switch"; pixel_x = 10; pixel_y = 15},/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"iKj" = (/turf/simulated/floor/grass/cut,/area/space) -"iKp" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"iKs" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"iKt" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/floor_decal/borderfloorwhite{dir = 10},/obj/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"iKu" = (/obj/machinery/door/window/brigdoor/westleft{id_tag = "iaaright"; req_access = newlist()},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"iKw" = (/obj/floor_decal/industrial/warning/full,/obj/machinery/airlock_sensor/airlock_exterior{frequency = 1331; id_tag = "calypso_shuttle_exterior_sensor"; master_tag = "calypso_shuttle"; pixel_x = -2; pixel_y = 27; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "calypso_shuttle_pump_out_external"},/obj/structure/catwalk,/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"iKy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"iKC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"iKK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"iKQ" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/fabricator,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Hard Storage"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"iKU" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "d2portnacelle"},/obj/machinery/atmospherics/valve/digital{id_tag = "RE2F"; name = "RE2F digital valve"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"iLd" = (/obj/floor_decal/industrial/warning,/obj/structure/closet/crate/secure/biohazard,/turf/simulated/floor/tiled/steel_grid,/area/space) -"iLh" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/junkfood,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iLG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"iLJ" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"iLM" = (/obj/structure/dispenser/oxygen,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"iLO" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"iMa" = (/turf/simulated/wall/prepainted{can_open = 1},/area/maintenance/firstdeck/foreport) -"iMf" = (/obj/structure/railing/mapped,/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"iMg" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/aftport) -"iMh" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "ai_starboard_inner"; name = "Engineering External Access"},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"iMi" = (/obj/floor_decal/industrial/traffic,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"iMo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/button/ignition{id_tag = "Isocell3"; pixel_x = -6; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/space) -"iMs" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"iMu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/vending/cigarette,/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled,/area/security/brig) -"iMx" = (/obj/floor_decal/borderfloor/corner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"iMy" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iMB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"iMF" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/glass,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"iMM" = (/obj/machinery/door/airlock/security{autoset_access = 0; name = "Escape Pod Cell"; req_access = list("ACCESS_BRIG")},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iMO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iMS" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"iMY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled,/area/space) -"iNb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -5},/turf/simulated/floor/carpet/red,/area/space) -"iNd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iNg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"iNj" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"iNo" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"iNp" = (/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/access_button/airlock_exterior{master_tag = "engine_airlock"; name = "Cycle to Engineering"; pixel_x = -24; pixel_y = 24},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"iNv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/powercell,/obj/machinery/cell_charger,/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/spline/plain/purple{dir = 5},/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"iNw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"iNG" = (/obj/shuttle_landmark/supply/station,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"iNH" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"iNN" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/space) -"iNW" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1port) -"iOb" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"iOc" = (/obj/structure/table/steel,/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/cell_charger,/obj/item/cell/high,/obj/random/powercell,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"iOj" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/sign/warning/vacuum{dir = 8},/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"iOl" = (/obj/structure/closet/crate/secure/biohazard{req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER"))},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iOt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"iOu" = (/obj/machinery/atmospherics/unary/tank{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"iOw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"iOx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"iOy" = (/obj/structure/table/standard,/obj/item/book/manual/ripley_build_and_repair,/obj/item/book/manual/robotics_cyborgs,/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/space) -"iOE" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"iOH" = (/obj/structure/lattice,/obj/structure/disposalpipe/down,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"iOJ" = (/obj/item/bodybag,/obj/structure/table/standard,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/item/storage/box/autoinjectors,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"iOP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/space) -"iPd" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"iPj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iPk" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/module/power_control,/obj/item/module/power_control,/obj/item/module/power_control,/obj/item/airlock_electronics,/obj/item/airlock_electronics,/obj/item/airlock_electronics,/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"iPl" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/auxpower) -"iPp" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"iPs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iPw" = (/obj/machinery/newscaster/security_unit{pixel_x = 26; pixel_y = 2},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/blue2,/area/space) -"iPB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"iPQ" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iPW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/button/alternate/door/bolts{id_tag = "shower2"; name = "Lock"; pixel_y = 21},/turf/simulated/floor/tiled/freezer,/area/space) -"iPZ" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "iaaleft"},/obj/structure/filingcabinet{pixel_x = 5},/obj/structure/filingcabinet{pixel_x = -6},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "iaadoorleft"; name = "Office Door Control"; pixel_x = -5; pixel_y = 24; req_access = list("ACCESS_IAA")},/obj/machinery/button/windowtint{id = "iaaleft"; pixel_x = 5; pixel_y = 24},/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 5},/turf/simulated/floor/carpet/blue,/area/space) -"iQc" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "sd_port_pump"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"iQd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lightgrey/bordercorner2,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"iQe" = (/obj/floor_decal/techfloor/orange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"iQh" = (/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/obj/item/book/manual/nt_regs,/obj/structure/table/glass/boron,/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"iQl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iQn" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"iQp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Break Room"},/turf/simulated/floor/tiled/monotile,/area/space) -"iQy" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/oxygen_pump{pixel_y = -32},/obj/structure/closet/hydrant{pixel_x = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iQz" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet/blue2,/area/space) -"iQB" = (/turf/simulated/wall/r_wall/hull,/area/turret_protected/ai_upload) -"iQF" = (/obj/floor_decal/spline/fancy/black/corner{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"iQG" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iQH" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/space) -"iQR" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/iv_stand,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"iQS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass/civilian{dir = 4; name = "Bartenders'"},/obj/machinery/door/firedoor,/obj/floor_decal/spline/fancy/black,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/curtain/open/shower/security{name = "bar curtain"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"iQY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/techfloor,/area/space) -"iRb" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/space) -"iRg" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/hallway/primary/seconddeck/fore) -"iRm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"iRr" = (/obj/structure/closet/crate/bin,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/freezer,/area/space) -"iRu" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"iRA" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"iRD" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/corner/green/border,/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"iRF" = (/obj/floor_decal/corner/black/three_quarters,/obj/structure/table/steel_reinforced,/obj/item/device/taperecorder,/obj/item/device/tape,/obj/item/device/tape,/obj/item/device/tape,/turf/simulated/floor/tiled/dark,/area/space) -"iRI" = (/obj/machinery/power/breakerbox{RCon_tag = "Shield Substation Bypass"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"iRR" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/curtain/bed{pixel_y = 32},/obj/item/reagent_containers/food/drinks/bottle/premiumvodka{pixel_x = -6; pixel_y = 4},/obj/item/reagent_containers/food/drinks/glass2/shot{pixel_x = 7; pixel_y = 9},/turf/simulated/floor/wood/mahogany,/area/space) -"iSd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/random/obstruction,/turf/simulated/floor/plating,/area/space) -"iSe" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"iSn" = (/obj/machinery/crusher_base{icon_state = "middle"},/turf/simulated/floor/plating,/area/space) -"iSy" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"iSK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"iSR" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/obj/floor_decal/corner/purple/half{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"iSW" = (/obj/structure/lattice,/obj/structure/handrail{dir = 1},/obj/structure/catwalk,/turf/simulated/open,/area/space) -"iSY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/spot,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"iSZ" = (/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"iTa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/sofa/r/red{dir = 8},/obj/machinery/light,/turf/simulated/floor/carpet/magenta,/area/space) -"iTh" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/thruster/d1port) -"iTl" = (/obj/floor_decal/corner/blue{dir = 5},/obj/floor_decal/corner/black/border{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"iTp" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/hole{dir = 8},/obj/machinery/shieldgen,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"iTq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iTv" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iTy" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"iTz" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/steel_grid,/area/space) -"iTD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"iTH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"iTM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/mining{dir = 8; name = "Hangar Bay"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"iTQ" = (/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/space) -"iTX" = (/obj/structure/bed/chair/padded/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"iUf" = (/obj/structure/closet/secure_closet/medical1,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/medbay{c_tag = "Equipment - First Aid"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"iUm" = (/obj/machinery/light/small,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 1; pixel_y = -21},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"iUA" = (/obj/structure/table/rack,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/floor_decal/corner/green/border{dir = 9},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"iUC" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"iUN" = (/obj/floor_decal/corner/green/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"iUO" = (/obj/machinery/status_display{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/filingcabinet,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/space) -"iVd" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"iVe" = (/obj/machinery/chem_master,/obj/floor_decal/corner/beige/three_quarters{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"iVg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green,/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized/full{id = "mental_health_windows"},/turf/simulated/floor/plating,/area/space) -"iVs" = (/obj/machinery/door/airlock/engineering{name = "SMES Maintenance"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular/open{dir = 8; id_tag = "eng_lockdown_emg3"; name = "Emergency Exit"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"iVt" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"iVA" = (/obj/floor_decal/corner/black/three_quarters{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"iVJ" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) -"iVK" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"iVQ" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"iVR" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"iVV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"iVZ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/wallframe_spawn/reinforced/polarized/full{id = "rd_windows"},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/rd) -"iWe" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"iWf" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall/prepainted,/area/quartermaster/expedition/storage) -"iWp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"iWs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"iWt" = (/obj/structure/table/woodentable/mahogany,/obj/item/storage/bible/bible,/obj/item/storage/bible/bible,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"iWB" = (/obj/machinery/body_scanconsole{dir = 8},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white/monotile,/area/space) -"iWD" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"iWF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"iWG" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_5_hatch"; name = "Escape Pod Five Hatch"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"iWK" = (/obj/machinery/computer/modular/preset/civilian,/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"iWM" = (/obj/structure/holoplant,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway - Mantenance"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"iWX" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"iXp" = (/obj/structure/bed/chair/padded/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"iXz" = (/obj/structure/flora/seaweed,/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish/grump,/obj/machinery/light{dir = 4},/turf/simulated/floor/beach/sand,/area/space) -"iXA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"iXM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/walnut,/area/space) -"iXS" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/oxygen_pump{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "xenobotany_access"; name = "Xenobotany Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"iYa" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped,/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"iYp" = (/turf/simulated/wall/r_wall/hull,/area/bridge) -"iYx" = (/obj/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"iYy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"iYD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"iYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"iYI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"iYR" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/wood{icon_state = "wood_broken5"},/area/space) -"iYT" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"iYZ" = (/obj/machinery/computer/fusion/fuel_control{dir = 4; initial_id_tag = "aux_fusion_plant"; req_access = list("ACCESS_ENGINE_EQUIP")},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"iZc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"iZg" = (/obj/structure/catwalk,/obj/structure/ladder/up,/turf/simulated/floor/airless,/area/space) -"iZs" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"iZu" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/item/device/scanner/price,/obj/item/device/eftpos{eftpos_name = "Warden's EFTPOS scanner"},/obj/item/device/radio/off,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"iZx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"iZZ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"jac" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"jal" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "hos_windows"},/turf/simulated/floor/plating,/area/space) -"jan" = (/obj/structure/railing/mapped{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"jaq" = (/obj/machinery/papershredder,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"jar" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jav" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor/orange,/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"jay" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jaJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"jaO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/prepainted,/area/space) -"jaU" = (/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/space) -"jaZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"jbe" = (/obj/machinery/door/airlock/glass/civilian{name = "Primary Tool Storage"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"jbr" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"jbw" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/door/blast/regular{dir = 2; id_tag = "d2portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"jbH" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"jbJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"jbK" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/floodlight{dir = 8},/obj/structure/sign/emergonly{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jbN" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet,/area/space) -"jbO" = (/obj/catwalk_plated/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"jbQ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"jce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"jcg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"jcn" = (/obj/machinery/photocopier,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 30},/turf/simulated/floor/carpet/blue2,/area/space) -"jcy" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/table/steel,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jcz" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance,/obj/random/trash,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"jcA" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/cable,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jcE" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/random/vendor,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"jcJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/space) -"jcL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/pew,/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood,/area/space) -"jcM" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jcU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{frequency = 1379; id_tag = "xenohight_airlock_inner"; locked = 1; name = "Xenobiology External Airlock"},/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/entry) -"jdc" = (/obj/structure/closet/fridge,/obj/structure/window/basic{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"jdd" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 10},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/space) -"jdg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/bluegrid,/area/space) -"jdm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"jdy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"jdC" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/flora/pottedplant/decorative,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jdD" = (/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/borderfloorblack/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"jdW" = (/obj/floor_decal/industrial/warning,/obj/structure/railing/mapped,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jdX" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"jdY" = (/obj/machinery/door/airlock/multi_tile/research{dir = 8; frequency = 1379; id_tag = "xenolow_airlock_inner"; locked = 1; name = "Xenobiology Internal Airlock"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"jes" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/brown/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"jev" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jey" = (/obj/structure/table/rack{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"jeH" = (/obj/structure/bed/sofa/l/black{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"jeK" = (/obj/structure/morgue{dir = 2},/obj/floor_decal/industrial/outline/blue,/obj/structure/closet/walllocker{pixel_y = 28},/obj/machinery/camera/network/medbay{c_tag = "Medbay - Morgue - Cadavers"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"jeV" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jeX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"jfc" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass/medical{name = "Patient Ward"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jfg" = (/obj/item/stool,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"jfh" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"jfi" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"jfm" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"jfo" = (/obj/structure/table/reinforced,/obj/item/clothing/mask/gas/half,/obj/item/clothing/mask/gas/half,/obj/item/clothing/mask/gas/half,/obj/item/clothing/mask/gas/half,/obj/item/tape/research,/obj/floor_decal/industrial/outline/yellow,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jfq" = (/obj/structure/table/standard,/obj/item/paper{pixel_x = 4; pixel_y = 5},/obj/item/folder{pixel_x = -5; pixel_y = -6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"jfu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/space) -"jfv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jfy" = (/obj/structure/closet/l3closet/security,/obj/machinery/light{dir = 8},/obj/item/clothing/suit/bio_suit/security,/obj/item/clothing/head/bio_hood/security,/obj/item/clothing/mask/gas/half,/obj/item/tank/oxygen_emergency_extended,/turf/simulated/floor/tiled/techfloor,/area/space) -"jfF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/space) -"jfH" = (/obj/structure/hygiene/shower{dir = 8; pixel_x = 9},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"jfR" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/vacant/cargo) -"jfS" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/obj/machinery/flasher{dir = 1; id_tag = "ai_core"; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"jfY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/borderfloor{dir = 9},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/black/border{dir = 9},/obj/structure/filingcabinet/wallcabinet{pixel_x = -30},/turf/simulated/floor/tiled/dark,/area/space) -"jga" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"jgb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"jgL" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"jgM" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"jhb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jhc" = (/obj/shuttle_landmark/merc/deck4,/turf/space,/area/space) -"jhd" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"jhh" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"jhl" = (/obj/machinery/radio_beacon,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"jhm" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{id = "сhief_steward_windows"},/turf/simulated/floor/plating,/area/space) -"jhq" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"jhr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"jhy" = (/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/portable_atmospherics/canister/empty,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jhB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"jhF" = (/obj/machinery/papershredder,/obj/machinery/newscaster{pixel_x = -28},/obj/floor_decal/carpet/blue{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"jhJ" = (/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"jhN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"jhQ" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/structure/table/steel_reinforced,/obj/item/storage/firstaid/radiation{pixel_y = 9},/obj/item/storage/firstaid/trauma{pixel_y = 2},/obj/item/storage/firstaid/adv{pixel_y = -6},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"jhS" = (/obj/structure/table/standard,/obj/item/storage/box/monkeycubes{pixel_y = 10},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jhY" = (/obj/structure/table/steel_reinforced,/obj/item/storage/secure/briefcase/nukedisk,/obj/prefab/hand_teleporter,/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/corner/grey{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/space) -"jil" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"jit" = (/obj/floor_decal/corner/black/full,/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"jiv" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"jiA" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"jiD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"jiE" = (/obj/item/ladder_mobile,/turf/simulated/floor/tiled/white,/area/maintenance/firstdeck/aftstarboard) -"jiI" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"jiQ" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "bridgesafe_back"; name = "Emergency Exit door-control"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"jiT" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jiU" = (/obj/structure/table/standard,/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/item/paper_bin,/obj/item/pen/multi,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"jiV" = (/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"jjh" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/steel_grid,/area/space) -"jjj" = (/turf/simulated/floor/greengrid{map_airless = 1},/area/engineering/engine_room) -"jjn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"jjo" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/machinery/sparker{id_tag = "engines"; pixel_x = -24},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"jjp" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "solar_bridge_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/space) -"jjB" = (/obj/machinery/door/airlock/research{name = "Toxins Lab"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"jjF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"jjH" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"jjJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"jjV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/tele_beacon,/obj/floor_decal/corner/purple/border,/obj/machinery/button/alternate/door{desc = "A remote control-switch for the cargo doors."; dir = 1; id_tag = "researchdoor_interior"; name = "Research Door Control"; pixel_x = 6; pixel_y = -24; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{dir = 1; id_tag = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -6; pixel_y = -24; req_access = list("ACCESS_RESEARCH")},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jkc" = (/obj/structure/bed/chair/office/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"jkg" = (/obj/structure/table/woodentable,/obj/item/book/manual/detective,/obj/item/device/camera,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"jkq" = (/obj/machinery/door/airlock/hatch/maintenance{name = "First Deck Starboard Nacelle"; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1starboard) -"jkr" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/mopbucket,/obj/item/mop,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"jky" = (/obj/structure/closet/radiation,/turf/simulated/floor/plating,/area/space) -"jkC" = (/obj/machinery/door/blast/regular{id_tag = "sensor_shutters"},/turf/simulated/floor/reinforced,/area/space) -"jkH" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/item/cell/high,/turf/simulated/floor/tiled,/area/space) -"jkL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_pub_hall"; name = "Infirmary Entry Shutters"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"jkN" = (/obj/structure/table/woodentable_reinforced/mahogany/walnut,/obj/floor_decal/spline/fancy/black,/obj/item/spirit_board,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"jkR" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"jkS" = (/obj/structure/handrail,/turf/simulated/floor/reinforced,/area/space) -"jkU" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"jll" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"jlp" = (/obj/machinery/recharge_station,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/brown/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/brown/bordercorner2,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jlt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"jlK" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/obj/machinery/button/blast_door{dir = 8; id_tag = "disvent"; name = "Incinerator Vent Control"; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"jlU" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/sofa/l/blue{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jmb" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"jmc" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; master_tag = "specops_dock"; pixel_x = -24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "specops_dock_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"jme" = (/obj/structure/bed/chair/pew/mahogany{dir = 1; icon_state = "chair_pewchapel_middle_over"},/obj/decal/cleanable/dirt,/obj/item/towel/random,/obj/structure/bed/chair/pew/left/mahogany,/turf/simulated/floor/wood/walnut,/area/space) -"jmm" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/random/machine/jukebox_custom,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"jms" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"jmt" = (/obj/machinery/computer/modular/preset/supply_public,/obj/floor_decal/corner/purple/half{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jmu" = (/obj/structure/bed/chair/office/comfy/teal,/obj/floor_decal/corner/blue/diagonal,/obj/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"jmx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jmz" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"jmE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/medical{dir = 4; id_tag = "mental_health_door"; name = "Mental Health"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jmI" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/office/ce) -"jmN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"jmP" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee,/obj/machinery/airlock_sensor{id_tag = "fd_starboard_sensor"; master_tag = "fd_starboard"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jmW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jny" = (/obj/item/storage/secure/safe{pixel_x = 32},/obj/floor_decal/corner/yellow/mono,/obj/structure/table/rack,/obj/item/rig/ce/equipped,/obj/item/clothing/mask/gas/half,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/eastright{dir = 1; name = "suit storage"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/office/ce) -"jnD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"jnG" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 9},/obj/machinery/computer/air_control{dir = 1; name = "Nacelle Chamber Monitoring"; sensor_name = "Chamber"; sensor_tag = "ReacEng1"},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"jnJ" = (/obj/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"jnK" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/item/flora/pottedplantsmall/leaf{pixel_x = 6},/turf/simulated/floor/carpet/blue2,/area/space) -"jnY" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/machinery/barrier,/turf/simulated/floor/plating,/area/space) -"joa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/space) -"jol" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"joo" = (/obj/random/closet,/obj/random/coin,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"jor" = (/obj/structure/bed/sofa/r/brown{dir = 8},/obj/floor_decal/carpet{dir = 4},/turf/simulated/floor/carpet,/area/space) -"jou" = (/obj/structure/hygiene/toilet{dir = 4},/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"joA" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"joT" = (/obj/structure/flora/pottedplant/minitree,/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"jpb" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jpo" = (/obj/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/engineering{c_tag = "Engineering - Energy Storage - First Deck"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/auxpower) -"jpD" = (/obj/structure/bed/chair/padded/green,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"jpF" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/wall/r_wall/hull,/area/space) -"jpS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/terminal,/obj/floor_decal/industrial/warning,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/auxpower) -"jpT" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge) -"jqb" = (/obj/structure/bookcase,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/item/book/manual/anomaly_testing,/obj/item/book/manual/excavation,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"jqf" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"jqk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"jqv" = (/obj/structure/table/rack,/obj/random/firstaid,/obj/random/firstaid,/obj/random/firstaid,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"jqG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"jqI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"jqP" = (/obj/machinery/button/blast_door{id_tag = "cafe"; name = "Cafe Shutters"; pixel_x = 26; req_access = list("ACCESS_KITCHEN")},/obj/floor_decal/corner/grey/bordercorner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"jqX" = (/obj/floor_decal/corner/red,/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/vending/cola{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jrw" = (/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1331; id_tag = "calypso_shuttle_inner"; name = "Charon External Access"; req_access = list(list("ACCESS_EXPEDITION_SHUTTLE"))},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"jrx" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"jry" = (/obj/floor_decal/spline/fancy/black{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/simulated/floor/wood/walnut,/area/space) -"jrz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red,/obj/machinery/door_timer/cell_2{pixel_x = 32},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jrD" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"jrF" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/floodlight{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jrK" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "guppy_shuttle_pump"},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"jrL" = (/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"jrQ" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"jrX" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"jsb" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/floor_decal/corner/grey/full,/obj/item/device/flashlight/lamp/green{pixel_x = 8; pixel_y = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"jse" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"jsg" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"jsk" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jsl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"jsn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"jsq" = (/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"jsr" = (/obj/structure/bed/chair/rounded/blue{dir = 4},/obj/landmark/start{name = "Internal Affairs Agent"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jss" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"jsz" = (/obj/structure/bed/chair/office/yellow,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"jsD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/reagent_containers/dropper,/obj/item/stack/material/steel,/turf/simulated/floor/plating,/area/space) -"jsG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"jsH" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"jsP" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "cedoor"; name = "Chief Engineer Dorm"; req_access = newlist(); secured_wires = 1; stripe_color = "#ffbf00"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jsR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jsU" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"jsV" = (/obj/structure/mattress,/obj/random/drinkbottle,/obj/random/snack,/obj/random/snack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) -"jsW" = (/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"jsY" = (/turf/simulated/wall/prepainted,/area/crew_quarters/gym) -"jtg" = (/obj/fluid_mapped,/obj/item/clothing/under/shorts/grey,/obj/random/trash,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/item/soap,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"jtu" = (/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/bamboo{name = "stairs"},/area/space) -"jtx" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/hole/right{dir = 4},/obj/machinery/shieldgen,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"jtD" = (/obj/machinery/door/airlock/maintenance{name = "Sensors Maintenance"; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "bridge_ent"; name = "Bridge Lockdown"},/turf/simulated/floor/tiled/techfloor/grid,/area/bridge) -"jtL" = (/obj/floor_decal/corner/black/border{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jtY" = (/obj/structure/table/steel_reinforced,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Substation - Bridge Deck"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"juk" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jul" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/critical{name = "south bump"; pixel_y = -21},/turf/simulated/floor/plating,/area/space) -"jun" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"juu" = (/obj/structure/bed/chair/padded/blue{dir = 4},/obj/floor_decal/corner/blue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"juH" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/cockpit) -"juR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"juZ" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass/civilian{name = "Cryogenic Storage"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"jvi" = (/obj/machinery/hologram/holopad{pixel_x = -16},/obj/floor_decal/corner/red,/obj/machinery/button/blast_door{dir = 8; id_tag = "security_permabrig_fitst_cell_shutters"; name = "1st Cell Shutters"; pixel_x = 21; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/flasher{dir = 8; id_tag = "security_first_cell_flash"; pixel_x = 22; pixel_y = -9; req_access = list("ACCESS_SECURITY")},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jvv" = (/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/foreport) -"jvA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet/magenta,/area/space) -"jvK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/computer/air_control/supermatter_core{dir = 8; input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; pressure_setting = 100; sensor_name = "Engine Core"; sensor_tag = "engine_sensor"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"jvL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jvP" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"jwe" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "fd_starboard_outer"; name = "First Deck Port Airlock"},/obj/machinery/access_button/airlock_exterior{dir = 1; master_tag = "fd_starboard"; name = "exterior access button"; pixel_x = 24; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"jwh" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"jwl" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jwp" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/structure/cable{d1 = 32; d2 = 8; icon_state = "32-8"},/obj/structure/lattice,/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"jws" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"jwx" = (/obj/floor_decal/industrial/outline/blue,/obj/machinery/body_scanconsole{dir = 1},/obj/machinery/button/alternate/door{dir = 8; id_tag = "MedbayInf"; name = "Treatment Center Exit"; pixel_x = 23; pixel_y = 24},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"jwM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/vault/bolted{autoset_access = 0; id_tag = "bridgesafe_back"; name = "Emergency Exit"},/obj/item/airlock_brace{req_access = list("ACCESS_BRIDGE")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/bridge) -"jwN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Incinerator"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/incinerator) -"jwX" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jwZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"jxi" = (/obj/item/stool/padded,/obj/floor_decal/corner/black/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"jxp" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/status_light{id_tag = "ReacEng4"; name = "Deck One Port status indicator"; pixel_y = 32},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"jxw" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"jxz" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"jxI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/spot,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jxR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jxW" = (/obj/machinery/vending/hydronutrients{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"jxY" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"jyb" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/medical{id_tag = "med_crit_d2"; name = "Critical Wing"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/shutters/open{id_tag = "med_crit2"; name = "Infirmary Staging Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jyh" = (/obj/random/obstruction,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"jyp" = (/obj/fluid_mapped,/obj/random/trash,/obj/random/soap,/mob/living/simple_animal/aquatic/fish,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"jyr" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/sign/poster{pixel_y = -32},/obj/machinery/photocopier,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"jyD" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"jyG" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/structure/table/steel,/obj/item/storage/box/donut,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 28},/turf/simulated/floor/tiled/techfloor,/area/space) -"jyO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Hallway Starboard"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"jyU" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/red{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jyV" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/office) -"jyW" = (/obj/structure/table/steel,/obj/machinery/alarm{pixel_y = 24},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/item/clothing/gloves/insulated,/obj/item/device/multitool{pixel_x = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"jyX" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"jze" = (/obj/structure/disposalpipe/junction/mirrored{dir = 4},/obj/floor_decal/steeldecal/steel_decals6,/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/red/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jzf" = (/obj/floor_decal/chapel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"jzm" = (/turf/simulated/wall/r_wall/prepainted,/area/quartermaster/expedition/storage) -"jzv" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/turf/simulated/wall/ocp_wall,/area/space) -"jzA" = (/obj/machinery/atmospherics/binary/pump,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"jzJ" = (/obj/structure/bed,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"jzL" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/space) -"jzN" = (/obj/floor_decal/industrial/warning/corner,/obj/structure/bed/chair/armchair/beige{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"jzR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jAd" = (/turf/simulated/floor/airless,/area/space) -"jAm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"jAr" = (/obj/structure/closet/emcloset,/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"jAx" = (/obj/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/pew/mahogany,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"jAF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/orange,/area/space) -"jAH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jAJ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/obj/structure/railing/mapped{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"jAU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; name = "Comissary"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"jAV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jAW" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/computer/cryopod{pixel_y = 24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"jAY" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"jBb" = (/turf/unsimulated/mask,/area/hallway/primary/thirddeck/center) -"jBc" = (/obj/machinery/light/spot{dir = 1},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/folder/nt,/obj/item/pen,/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/obj/floor_decal/corner/purple/three_quarters{dir = 1},/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"jBi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/bed/chair/rounded/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"jBp" = (/obj/floor_decal/industrial/traffic{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jBt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jBz" = (/turf/simulated/wall/prepainted,/area/maintenance/substation/fourthdeck) -"jBE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"jBO" = (/obj/structure/sign/warning/high_voltage{dir = 8},/turf/simulated/wall/r_wall/prepainted,/area/maintenance/substation/seconddeck) -"jBQ" = (/obj/machinery/bluespacerelay,/obj/machinery/light{dir = 4},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"jBS" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/space) -"jBT" = (/obj/floor_decal/spline/fancy/black,/obj/floor_decal/corner/red/border,/obj/machinery/light/led/small,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark,/area/space) -"jBX" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/machinery/meter,/obj/floor_decal/techfloor{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"jBY" = (/obj/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jCd" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jCo" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"jCp" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"jCr" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "toxins_petrov_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jCA" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1379; heat_proof = 1; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"jCQ" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"jCZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jDc" = (/obj/floor_decal/corner/grey/full,/obj/machinery/papershredder,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"jDf" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"jDi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jDj" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techfloor,/area/space) -"jDk" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"jDq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jDr" = (/obj/structure/table/standard,/obj/item/storage/box/checkers/chess,/obj/item/storage/box/checkers,/obj/item/storage/box/checkers/chess/red,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"jDs" = (/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/corner/black/border{dir = 4},/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/space) -"jDv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jDJ" = (/obj/machinery/artifact_scanpad,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white,/area/space) -"jDO" = (/obj/machinery/door/airlock/research{name = "Cockpit"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"jDS" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jDW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"jEc" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"jEd" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"jEh" = (/obj/floor_decal/corner_techfloor_grid,/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"jEl" = (/obj/structure/table/standard,/obj/machinery/cell_charger{pixel_x = -5; pixel_y = 8},/obj/machinery/light/spot,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"jEo" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Supply"},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jEq" = (/obj/structure/lattice,/turf/simulated/wall/r_wall/prepainted,/area/bridge) -"jEt" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/largecrate,/obj/random/junk,/turf/simulated/floor/plating,/area/space) -"jED" = (/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jEE" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"jEI" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"jEJ" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"jEL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"jFo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/engineering/engine_monitoring) -"jFp" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jFr" = (/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/wood/maple,/area/space) -"jFv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"jFy" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/space) -"jFF" = (/obj/structure/railing/mapped,/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/space) -"jFG" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jFH" = (/obj/machinery/door/airlock/civilian{autoset_access = 0; dir = 4; name = "Long Term Toilet"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/freezer,/area/space) -"jFK" = (/obj/structure/bed/chair/padded/red{dir = 4},/obj/floor_decal/corner/red/half{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"jFL" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jGi" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/nt,/obj/item/folder/nt,/obj/item/folder/red,/obj/item/folder/yellow,/obj/item/folder,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"jGr" = (/obj/floor_decal/techfloor/orange,/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"jGz" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"jGA" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/power/sensor{name = "Powernet Sensor - Fusion Generator"; name_tag = "Fusion Generator"},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"jGD" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "lounge_windows"},/turf/simulated/floor/plating,/area/space) -"jGP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"jGV" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"jGW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"jGY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"jGZ" = (/obj/decal/cleanable/dirt,/obj/structure/table/woodentable,/obj/item/dice/d10,/obj/item/dice/d4,/obj/item/dice/d8,/turf/simulated/floor/tiled/dark,/area/space) -"jHd" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"jHe" = (/obj/machinery/computer/fusion/core_control{dir = 4; initial_id_tag = "aux_fusion_plant"; req_access = list("ACCESS_ENGINE_EQUIP")},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"jHh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/decal/graffiti_bam{desc = "Something scribbled on the wall. It reads: 'HoS xyecoc' "},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jHi" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"jHq" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"jHu" = (/obj/machinery/ntnet_relay,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"jHB" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "cockpit_shutters"; name = "Protective Shutters"; opacity = 0},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/cockpit) -"jHC" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/cart{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"jHG" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/corner/green/bordercorner2{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"jHH" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"jHX" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/grey/border{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jHY" = (/obj/structure/ladder,/obj/structure/cable{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"jIa" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/obj/structure/shuttle/engine/heater{dir = 4; pixel_x = -32},/turf/simulated/floor/plating,/area/space) -"jIl" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"jIs" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"jIv" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/random/soap,/obj/item/storage/box/lights/led_neon,/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"jIA" = (/obj/structure/closet/crate,/obj/random/firstaid,/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"jIF" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"jIH" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/security/brig) -"jIQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"jIR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"jJa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jJh" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"jJm" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/space) -"jJw" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"jJA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"jJY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/status_display{pixel_y = 32},/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"jKa" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/mining{name = "Port Auxiliary Storage"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/item/airlock_brace{req_access = list("ACCESS_QUARTERMASTER")},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"jKd" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"jKg" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/generic,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"jKh" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"jKs" = (/obj/structure/flora/ausbushes/ywflowers,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"jKE" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"jKH" = (/obj/structure/closet/cabinet,/obj/item/clothing/shoes/dressheels,/obj/item/clothing/shoes/dressheels,/obj/item/clothing/shoes/dressheels,/obj/item/clothing/shoes/dressheels,/obj/item/clothing/under/dress,/obj/item/clothing/under/dress,/obj/item/clothing/under/dress,/obj/item/clothing/under/dress,/obj/item/clothing/gloves/color/evening,/obj/item/clothing/gloves/color/evening,/obj/item/clothing/gloves/color/evening,/obj/item/clothing/gloves/color/evening,/turf/simulated/floor/tiled/dark,/area/space) -"jKJ" = (/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted{can_open = 1},/area/maintenance/firstdeck/foreport) -"jKL" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"jKQ" = (/obj/structure/table/marble,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/item/book/manual/chef_recipes{pixel_x = 6; pixel_y = -1},/obj/item/sticky_pad/random{pixel_x = -8; pixel_y = 11},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"jKU" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood/yew,/area/space) -"jKV" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jLc" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"jLf" = (/obj/machinery/computer/modular/preset/dock{dir = 4},/obj/floor_decal/corner/blue/mono,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"jLm" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/brown/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"jLr" = (/obj/structure/bed/chair/padded/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"jLt" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/fuelbay) -"jLA" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jLB" = (/obj/wallframe_spawn/reinforced/polarized{id = "rbtk_office"},/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/space) -"jLI" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"jLK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"jLN" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"jLV" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"jMh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/maintenance{autoset_access = 0; dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/center) -"jMp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Internal Affairs Agent"; secured_wires = 1},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jME" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"jMM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"jMY" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/r_wall/hull,/area/vacant/cargo) -"jMZ" = (/obj/machinery/papershredder,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"jNk" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/medical{name = "Critical Wing"},/obj/machinery/door/blast/shutters/open{id_tag = "med_crit2"; name = "Infirmary Staging Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jNm" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet{dir = 8},/obj/machinery/conveyor{dir = 8; id = "packageSort1"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jNq" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"jNv" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/tank{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "fuel1p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3starboard) -"jNE" = (/obj/structure/table/standard,/obj/floor_decal/corner/yellow/half,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/stack/material/glass/ten,/obj/item/stack/material/aluminium/ten,/obj/item/stack/material/plastic/ten,/obj/item/stack/material/steel/ten,/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/office) -"jNK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/civilian{name = "Kitchen Cold Storage"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"jOa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 5},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"jOh" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"jOi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"jOq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"jOC" = (/obj/structure/bed/chair/pew/left,/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/wood,/area/space) -"jOL" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"jON" = (/obj/machinery/light/led/small,/obj/floor_decal/corner/red/border,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark,/area/space) -"jOT" = (/obj/machinery/door/airlock/external/bolted{frequency = 1380; id_tag = "escape_pod_2_hatch"; name = "Escape Pod Two Hatch"},/obj/machinery/shield_diffuser,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jOU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"jOZ" = (/obj/structure/table/standard,/obj/item/paper_bin{pixel_x = 6},/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"jPd" = (/obj/structure/flora/pottedplant/crystal,/turf/simulated/floor/tiled,/area/rnd/locker) -"jPe" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/turf/simulated/floor/tiled/steel_grid,/area/space) -"jPh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"jPk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"jPr" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jPs" = (/obj/structure/bed/chair/office/comfy/black{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"jPx" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/traffic/corner{color = "#a2819e"; detail_color = "#a2819e"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"jPB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/item/toy/figure/ninja{desc = "A \"Space Life\" brand Exploration Team action figure."; name = "Exploration Team Hero action figure"; pixel_x = -6},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/table/steel,/obj/item/storage/firstaid/light{pixel_x = 6; pixel_y = 2},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"jPN" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"jPS" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/red/half{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/button/alternate/door{id_tag = "bridge_hallway_doors_port"; name = "Bridge Hallway Doors Port"; pixel_y = -6},/obj/machinery/button/blast_door{id_tag = "lobb_shutt"; name = "Lobby shutters control"; pixel_x = -4; pixel_y = 8},/obj/machinery/button/blast_door{id_tag = "lobb_hall_shutt"; name = "Hallway shutters control"; pixel_x = 6; pixel_y = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"jPZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jQa" = (/obj/structure/table/steel,/obj/item/soap,/obj/item/soap,/obj/item/soap,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"jQk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/assembly/robotics) -"jQo" = (/obj/structure/filingcabinet/chestdrawer,/obj/floor_decal/corner/blue/three_quarters{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"jQx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"jQy" = (/obj/machinery/power/port_gen/pacman{sheets = 25},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"jQz" = (/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"jQS" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"jQU" = (/obj/structure/table/rack{dir = 8},/obj/random/maintenance/solgov,/obj/random/maintenance/solgov,/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"jQX" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"jQY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"jRa" = (/obj/floor_decal/corner/grey/diagonal,/obj/machinery/computer/modular/preset/civilian/professional{dir = 4},/obj/item/wrench{color = "#a2819e"; name = "spanner 10"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/button/windowtint{dir = 1; id_tag = "rbtk_office"; pixel_x = 2; pixel_y = -21},/obj/machinery/button/alternate/door{dir = 1; id_tag = "rbtk_door"; pixel_x = -8; pixel_y = -22},/turf/simulated/floor/tiled,/area/space) -"jRh" = (/obj/machinery/crusher_base{icon_state = "leftcap"},/turf/simulated/floor/plating,/area/space) -"jRt" = (/obj/structure/table/woodentable/maple,/obj/floor_decal/carpet/purple{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"jRw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/standard,/obj/item/device/scanner/reagent,/obj/machinery/light{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"jRJ" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"jRK" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/green/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/decal/cleanable/cobweb{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"jRN" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/space) -"jSg" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"jSh" = (/obj/structure/table/rack,/obj/item/stack/material/tritium{amount = 50},/obj/item/stack/material/deuterium/fifty,/obj/item/stack/material/deuterium/fifty,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"jSi" = (/obj/floor_decal/borderfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/machinery/conveyor_switch/oneway{id = "compactor"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"jSj" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jSl" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/space) -"jSm" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"jSn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jSB" = (/obj/structure/bed/chair/wood/walnut,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"jSD" = (/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"jSE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"jSF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"jSI" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"jSM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"jSR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jSW" = (/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1port) -"jSZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"jTc" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/mining{dir = 8; name = "Hangar Bay"; req_access = newlist()},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jTg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"jTn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/space) -"jTo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"jTr" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/tiled,/area/space) -"jTw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jTy" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"jTC" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/structure/curtain/medical,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jTE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{name = "Gym"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"jTJ" = (/obj/item/stool/padded,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"jTL" = (/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/port) -"jTN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"jTO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/button/alternate/door/bolts{dir = 1; id_tag = "bsa_safe_room"; name = "Lock"; pixel_x = -6; pixel_y = -21},/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{dir = 4; pixel_y = 30},/turf/simulated/floor/tiled/freezer,/area/space) -"jUc" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/storage/box/glasses,/turf/simulated/floor/tiled,/area/space) -"jUf" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"jUp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"jUt" = (/obj/machinery/conveyor{dir = 8; id = "bsa"},/obj/machinery/disperser/back{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jUv" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/security/brig) -"jUA" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"jUG" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"jUL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/civilian{id_tag = "shower1"; name = "First Private Shower"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"jUZ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"jVc" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen{pixel_x = -1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jVe" = (/obj/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jVf" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"jVh" = (/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jVl" = (/obj/floor_decal/corner/black/border{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jVn" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/structure/cable/yellow,/obj/structure/bed/chair/shuttle/blue,/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"jVo" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"jVv" = (/obj/structure/table/standard,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/obj/item/device/geiger,/obj/item/device/scanner/health,/obj/item/device/scanner/gas,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"jVy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"jVC" = (/obj/structure/table/rack,/obj/item/shield/riot,/obj/item/shield/riot,/obj/item/shield/riot,/obj/item/shield/riot/metal,/obj/item/shield/riot/metal,/obj/item/shield/riot/metal,/obj/floor_decal/industrial/outline/grey,/obj/machinery/recharger/wallcharger{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/space) -"jVE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/requests_console{department = "Security"; departmentType = 1; name = "Security RC"; pixel_x = -32},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"jVH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"jVJ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"jVO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"jVP" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/pew/mahogany,/turf/simulated/floor/wood/walnut,/area/space) -"jVS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"jVT" = (/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/aftport) -"jVV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jVZ" = (/obj/floor_decal/spline/plain/black,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jWb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jWe" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/tank/air,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"jWg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"jWo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/corner/purple,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"jWq" = (/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 10},/turf/simulated/floor/carpet/purple,/area/space) -"jWr" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"jWt" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hydroponics) -"jWw" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jWE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/space) -"jWL" = (/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/aftstarboard) -"jWM" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/space) -"jWO" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/computer/modular/preset/civilian{dir = 1},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"jWW" = (/obj/floor_decal/techfloor{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"jXb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = 16},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"jXi" = (/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_wall/hull,/area/hallway/primary/fourthdeck/center) -"jXl" = (/obj/structure/closet/secure_closet{name = "Secure Morgue Locker"; req_access = list("ACCESS_MEDICAL")},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"jXo" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"jXs" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"jXA" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/petrov{c_tag = "Petrov - Isolation Cell Two"; dir = 4},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"jXC" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"jXE" = (/obj/floor_decal/corner/blue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"jXF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"jXK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"jXN" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"jYc" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/space) -"jYh" = (/obj/structure/table/woodentable_reinforced,/obj/structure/flora/pottedplant/stoutbush{pixel_y = 10},/turf/simulated/floor/wood,/area/space) -"jYi" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"jYm" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"jYs" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/door/airlock/hatch{id_tag = "engine_access_hatch"; locked = 1; req_access = newlist()},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/blast/regular{dir = 4; id_tag = "SupermatterDoor"; name = "Supermatter Access Blast Door"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"jYu" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"jYx" = (/obj/structure/sign/warning/engineering_access{dir = 4; pixel_x = -32},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"jYB" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"jYJ" = (/obj/machinery/light/spot,/obj/floor_decal/corner/red/mono,/obj/machinery/status_display{pixel_y = -32},/obj/machinery/computer/station_alert/security{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"jYP" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"jYQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"jYV" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medical Smoke Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"jZa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"jZk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"jZl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"jZq" = (/obj/structure/sign/warning/high_voltage{dir = 8; pixel_x = 32},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"jZr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/bridge) -"jZI" = (/obj/structure/sign/warning/radioactive{dir = 4; pixel_x = -32},/obj/structure/catwalk,/turf/space,/area/space) -"jZO" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"jZR" = (/obj/structure/noticeboard{dir = 4; pixel_x = -32},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/computer/modular/preset/engineering{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"jZW" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Auxiliary Access"; dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"jZY" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"jZZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kad" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"kae" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/door/blast/shutters{dir = 2; id_tag = "eva_shutters"; name = "EVA Shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kaf" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/structure/table/standard,/obj/item/device/integrated_circuit_printer,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"kaz" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"kaB" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/floodlight,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"kaG" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"kaH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood/walnut,/area/space) -"kaL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"kaP" = (/obj/machinery/door/firedoor,/obj/machinery/meter,/obj/wallframe_spawn/reinforced_phoron/hull,/obj/machinery/atmospherics/pipe/manifold4w/hidden/black,/turf/simulated/floor/plating,/area/engineering/engine_room) -"kaS" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"kaU" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kaX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kbd" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id_tag = "xenobio3_vent"; name = "Chamber Vent"},/turf/simulated/floor/reinforced,/area/space) -"kbe" = (/obj/structure/bed/chair/rounded/blue{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kbm" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/grass/cut,/area/space) -"kbn" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"kbq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kbt" = (/obj/structure/bed/chair/comfy/teal,/obj/floor_decal/industrial/outline/blue,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/space) -"kby" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/space) -"kbM" = (/obj/structure/disposalpipe/down{dir = 2},/obj/structure/lattice,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/fuel{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/turf/simulated/open,/area/maintenance/firstdeck/aftport) -"kbR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/power/apc/high/critical{dir = 8; name = "south bump"; pixel_x = -25},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kbW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{dir = 4; id_tag = "eng2_inner"; name = "Third Deck Port Nacelle Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d3port) -"kcf" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/computer/air_control{dir = 1; input_tag = "o24p_in"; name = "Oxygen Supply Control"; output_tag = "o24p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngOxygen4"},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"kch" = (/turf/simulated/wall/prepainted,/area/crew_quarters/commissary) -"kcj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kcn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"kcp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"kcx" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/item/clothing/head/festive,/obj/item/clothing/head/festive,/obj/item/clothing/head/festive,/obj/item/clothing/head/festive,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood/ebony,/area/space) -"kcA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"kcF" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/obj/random/firstaid,/turf/simulated/floor/plating,/area/space) -"kcK" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftport) -"kcR" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/boombox{pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/small/lager{pixel_x = -4; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"kcS" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"kda" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"kdg" = (/obj/machinery/atmospherics/valve/open,/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"kdh" = (/obj/structure/bookcase/manuals/research_and_development,/obj/item/book/manual/psionics,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"kdk" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/space) -"kdm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kdq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kdr" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/papershredder,/obj/machinery/light/spot{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"kdv" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/forestarboard) -"kdy" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kdA" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/development) -"kdF" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/railing/mapped{dir = 8},/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"kdO" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"kdQ" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kdR" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kdS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"keb" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"kej" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/flora/ausbushes/reedbush,/turf/simulated/floor/grass/cut,/area/space) -"kek" = (/obj/machinery/door/airlock/highsecurity{autoset_access = 0; name = "Unused Chamber"; req_access = list("ACCESS_SEC_DOORS")},/obj/structure/barricade,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"kem" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access"; req_access = newlist()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kes" = (/obj/machinery/floodlight{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/airlock) -"ket" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"keA" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/closet/medical_wall/filled{pixel_x = 32},/obj/random/firstaid,/obj/random/firstaid,/obj/random/medical,/obj/random/drinkbottle,/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/obj/item/bodybag/rescue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"keJ" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/bridge) -"keN" = (/turf/simulated/wall/prepainted,/area/quartermaster/office) -"keP" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/rack,/obj/item/storage/box/lights/mixed,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"keQ" = (/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine thruster blast doors."; dir = 1; id_tag = "ThrusterVents"; name = "Thruster Blast Door control"; pixel_y = -21; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/omni/filter{tag_east = 2; tag_north = 1; tag_west = 6},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/grey,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"keS" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/bed/chair/rounded/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"keU" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kfc" = (/obj/machinery/vending/dinnerware{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"kfm" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"kfs" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"kfu" = (/obj/random/obstruction,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"kfA" = (/turf/simulated/wall/r_wall/prepainted,/area/vacant/prototype/control) -"kfH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"kga" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green,/obj/machinery/power/apc/high/critical{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kgb" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 5; pixel_y = 16},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"kgc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"kgj" = (/obj/machinery/light{dir = 8},/obj/structure/displaycase{req_access = list("ACCESS_CAPTAIN")},/obj/item/gun/projectile/revolver/medium/captain,/turf/simulated/floor/wood/walnut,/area/space) -"kgk" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"kgs" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"kgu" = (/obj/structure/railing/mapped,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"kgy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"kgB" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/space) -"kgE" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftstarboard) -"kgG" = (/obj/machinery/light/spot,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"kgI" = (/obj/structure/table/reinforced,/obj/machinery/reagent_temperature,/obj/item/reagent_containers/spray/cleaner{pixel_x = 7; pixel_y = 8},/obj/floor_decal/corner/beige{dir = 5},/obj/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"kgN" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1starboard) -"kgX" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"kha" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass/civilian{name = "Holodeck"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/holocontrol) -"khc" = (/obj/floor_decal/techfloor{dir = 6},/obj/machinery/atmospherics/valve/digital{dir = 8; name = "External connector to thrusters"},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"khd" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"khm" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/bed/sofa/l/brown{dir = 8},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Bar - Chief Steward"; dir = 8},/turf/simulated/floor/wood/yew,/area/space) -"khu" = (/obj/machinery/button/crematorium{pixel_x = 24; pixel_y = 10},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/space) -"khA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"khC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/computer/air_control{name = "Nacelle Chamber Monitoring"; sensor_name = "Chamber"; sensor_tag = "ReacEng4"},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"khG" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"khP" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/space) -"khQ" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kib" = (/obj/floor_decal/corner/red/diagonal,/obj/decal/cleanable/vomit,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"kid" = (/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/space) -"kin" = (/obj/floor_decal/corner/green/three_quarters,/obj/machinery/vending/hydronutrients{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"kiw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "xenolow_airlock"; name = "Xenobiology Access Console"; pixel_x = -24; req_access = list("ACCESS_XENOBIO")},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"kiD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kiH" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"kiK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"kiS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/dark,/area/space) -"kiU" = (/mob/living/simple_animal/hostile/scarybat,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"kiZ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"kjc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"kjg" = (/obj/structure/bed,/obj/item/bedsheet/yellow,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"kjo" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/storage/secure/safe{pixel_y = 28},/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kjp" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kjw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/research{dir = 4; name = "Miscellaneous Laboratory"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"kjC" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "petrov_shuttle_dock_pump"},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"kjL" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"kjX" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/handrail,/turf/simulated/floor/airless,/area/space) -"kkg" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"kkq" = (/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/seconddeck/center) -"kkr" = (/obj/structure/lattice,/turf/simulated/open,/area/space) -"kks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"kkx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/table/standard,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"kkC" = (/obj/structure/lattice,/turf/simulated/wall/r_wall/hull,/area/bridge) -"kkG" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kkI" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"kkJ" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_1"},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/forestarboard) -"kkL" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{id_tag = "vir_isol"},/turf/simulated/floor/plating,/area/space) -"kkN" = (/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"kkO" = (/obj/decal/cleanable/blood,/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) -"klp" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/closet/cabinet,/obj/random/drinkbottle,/obj/random/mre/dessert,/obj/random/single/lighter,/turf/simulated/floor/wood/walnut,/area/space) -"klq" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"klu" = (/obj/machinery/portable_atmospherics/powered/pump,/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/space) -"kly" = (/obj/floor_decal/borderfloor{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"klB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"klK" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"klM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"klO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"klQ" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"klZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/space) -"kmc" = (/obj/machinery/atmospherics/pipe/cap/visible{dir = 8},/turf/simulated/floor/plating,/area/space) -"kmn" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kmy" = (/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"kmE" = (/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"kmH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"kmI" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"kmK" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"kmO" = (/obj/floor_decal/industrial/hatch/red,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"kmV" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"kmZ" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"knb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"knd" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"kno" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/alarm{pixel_y = 24},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/disposalpipe/up{dir = 8},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/space) -"knr" = (/obj/structure/bookcase/manuals/medical,/obj/floor_decal/carpet/purple{dir = 4},/turf/simulated/floor/carpet/purple,/area/space) -"knv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"knz" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"knC" = (/obj/structure/table/woodentable/walnut,/obj/item/device/camera{pixel_x = 5; pixel_y = 9},/obj/item/device/camera_film{pixel_x = -6; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"knD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"knI" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"knP" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"knQ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/vacant/cargo) -"knS" = (/obj/machinery/door/airlock/command{name = "Internal Affairs Agent"; secured_wires = 1},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"knX" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"koe" = (/obj/machinery/shieldgen,/obj/floor_decal/industrial/outline/grey,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kog" = (/obj/machinery/door/airlock/hatch{id_tag = "prototype_access_hatch"; locked = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"koh" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"kok" = (/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"koo" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"kot" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/chapel/main) -"kov" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"koy" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/space) -"koE" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/paleblue/border{dir = 10},/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/turf/simulated/floor/tiled/dark,/area/space) -"koH" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/space) -"koI" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/bordercorner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/corner/green/bordercorner,/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"koW" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/tiled,/area/space) -"koZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "hangar_hallway_doors"; name = "Visitors"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"kpb" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/green/border,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"kph" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/recharger,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/table/steel,/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"kpk" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/toolcloset/excavation,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"kpt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"kpz" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"kpM" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"kpO" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/space) -"kpP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) -"kpR" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"kpV" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"kqh" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"kqn" = (/obj/machinery/door/window/southright{dir = 1; name = "Test Chamber"},/obj/machinery/door/window/southright{name = "Test Chamber"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"kqt" = (/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 6},/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/lava/cyan{pixel_x = 4; pixel_y = 9},/obj/item/storage/secure/safe{pixel_x = 32},/turf/simulated/floor/carpet/blue3,/area/space) -"kqy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"kqA" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/sign/xenoflora{pixel_x = -32},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"kqE" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"kqQ" = (/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"kqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"kqY" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 1; target_pressure = 15000; unlocked = 1},/turf/simulated/wall/r_wall/prepainted,/area/engineering/atmos) -"kre" = (/obj/structure/sign/poster{pixel_x = -32},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"krm" = (/obj/floor_decal/corner/black{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) -"krn" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"kro" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"kru" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/floor_decal/techfloor{dir = 5},/obj/machinery/light{dir = 1},/obj/structure/closet/shipping_wall/filled{pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"krA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"krI" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"krK" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"krN" = (/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"krT" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "sd_port_outer"; name = "Second Deck Port Airlock"},/obj/machinery/access_button/airlock_exterior{master_tag = "sd_port"; name = "exterior access button"; pixel_x = 24; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"krZ" = (/obj/floor_decal/techfloor{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"ksk" = (/obj/machinery/camera/network/second_deck{c_tag = "Chapel - Entry"; dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"kso" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/floor_decal/borderfloorwhite{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"ksp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ksr" = (/obj/machinery/vending/tool/adherent{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"ksu" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/reinforced,/area/space) -"ksv" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "pathfinder_office"},/turf/simulated/floor/plating,/area/space) -"ksw" = (/obj/machinery/door/airlock/research{name = "Storage and Power"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ksC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "med_morg"; name = "Infirmary Emergency Quarantine Shutters"; opacity = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"ksE" = (/obj/machinery/vending/snack,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"ksI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/rnd/entry) -"ksM" = (/obj/machinery/computer/ship/helm{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"kte" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/sign/deck/second{dir = 4; pixel_x = -32; pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset/anchored,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"ktq" = (/obj/floor_decal/techfloor,/obj/structure/closet/crate/plastic,/obj/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ktr" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ktt" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 9},/obj/machinery/light/small,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"ktE" = (/obj/floor_decal/spline/fancy/black{dir = 1},/obj/floor_decal/carpet/blue2{dir = 1},/turf/simulated/floor/carpet/blue2,/area/space) -"ktQ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lightgrey/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lightgrey/bordercorner2,/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"ktT" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/space) -"kut" = (/obj/machinery/atmospherics/pipe/zpipe/up/cyan{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/airless,/area/space) -"kuu" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"kuy" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/structure/sign/warning/pods/south{dir = 1; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"kuI" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kuJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"kuK" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/command{dir = 4; id_tag = "bridge_hallway_doors_port"; name = "Bridge Access"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"kuQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external/bolted/cycling{autoset_access = 0; id_tag = "petrov_shuttle_dock_inner"; name = "Docking Port Airlock"; req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS"))},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"kuV" = (/obj/floor_decal/corner/brown/mono,/obj/machinery/computer/modular/preset/supply_public{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"kuY" = (/obj/machinery/atmospherics/tvalve/digital{dir = 1; id_tag = "fuelmode"},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"kvc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/borderfloorblack{dir = 6},/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/modular/preset/security{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"kvk" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/lime/bordercorner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"kvm" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"kvu" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"kvv" = (/obj/machinery/computer/ship/sensors,/obj/item/modular_computer/telescreen/preset/generic{pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"kvz" = (/obj/machinery/light/led/small{dir = 1},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/jukebox/custom_tape/old,/turf/simulated/floor/tiled/dark,/area/space) -"kvF" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/corner/green/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/decal/cleanable/dirt,/obj/machinery/button/blast_door{dir = 1; id_tag = "vir_isol"; name = "Virology isolator"; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) -"kvH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"kvL" = (/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - North"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kvN" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/techfloor{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"kvW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/red,/area/space) -"kwa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"kwc" = (/obj/machinery/photocopier/faxmachine{department = "Exploration Leader"},/obj/structure/table/reinforced,/obj/machinery/light,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/mauve/border{dir = 10},/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor/tiled,/area/space) -"kwf" = (/obj/structure/table/steel,/obj/item/board,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"kwm" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"kwt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"kwG" = (/obj/structure/flora/ausbushes/brflowers,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"kwZ" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"kxg" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"kxh" = (/obj/structure/table/steel,/obj/item/storage/box/bodybags,/obj/machinery/light,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"kxi" = (/obj/floor_decal/industrial/warning/fulltile,/obj/structure/ladder/up,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"kxv" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"kxy" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"kxB" = (/obj/machinery/computer/modular/preset/civilian/professional,/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/carpet/purple{dir = 1},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"kxC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/table/woodentable_reinforced/mahogany,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/item/material/ashtray/bronze{pixel_x = -6; pixel_y = 11},/turf/simulated/floor/carpet/magenta,/area/space) -"kxG" = (/obj/structure/filingcabinet/wallcabinet{pixel_x = 28},/obj/item/folder/nt,/obj/item/folder/nt,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"kxH" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kxI" = (/obj/machinery/computer/modular/preset/civilian{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"kxQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"kxZ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"kya" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"kyc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"kye" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"kyf" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"kyh" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"kyj" = (/obj/structure/sign/directions/bridge{pixel_x = 32; pixel_y = -13},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kyp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; name = "Comissary"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"kyt" = (/obj/structure/bed/chair/office/comfy/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/landmark/start{name = "Research Director"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"kyw" = (/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"kyx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kyz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/tele_beacon,/turf/simulated/floor/tiled,/area/space) -"kyB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/bot/cleanbot{name = "Crewman"; will_patrol = 1},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"kyC" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"kyH" = (/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/device/multitool/multimeter,/obj/item/device/multitool/multimeter,/obj/item/device/multitool/multimeter,/turf/simulated/floor/tiled/steel_grid,/area/space) -"kyI" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/vacant/cargo) -"kyL" = (/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"kyT" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/techfloor{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"kzg" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/space) -"kzm" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"kzn" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"kzx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"kzH" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/closet/medical_wall/filled{pixel_y = 24},/obj/structure/table/standard,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"kzJ" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kzL" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"kzR" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"kzX" = (/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"kzZ" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"kAa" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/table/steel_reinforced,/obj/item/storage/box/donkpocket_mixed{pixel_y = 5},/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"kAg" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"kAi" = (/obj/floor_decal/techfloor{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/padded/blue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"kAo" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/hand_labeler{pixel_x = -2; pixel_y = -3},/turf/simulated/floor/tiled/dark,/area/space) -"kAq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kAy" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/bed/chair/comfy/blue,/turf/simulated/floor/tiled,/area/space) -"kAE" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/corner/purple{pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"kAJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"kAK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/plating,/area/bridge/hallway) -"kAL" = (/obj/floor_decal/corner/purple/half{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"kAQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/railing/mapped{dir = 8},/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"kAZ" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/window/brigdoor/northright{autoset_access = 0; dir = 4; name = "Test Chamber"; req_access = list("ACCESS_TOXINS")},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "misclab"; name = "Test Chamber Blast Doors"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"kBc" = (/turf/simulated/wall/r_wall/hull,/area/vacant/bar) -"kBe" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor,/obj/floor_decal/corner/white{dir = 8},/obj/floor_decal/corner/paleblue,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/fireaxecabinet{pixel_y = -32},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"kBk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"kBm" = (/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"kBr" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Shield Subgrid"; name_tag = "Shield Subgrid"},/obj/structure/cable/cyan,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Shield Generator"; dir = 4},/turf/simulated/floor/plating,/area/space) -"kBs" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/space) -"kBt" = (/obj/machinery/light/spot{dir = 1},/obj/structure/sign/emergonly{dir = 8; pixel_x = 32},/obj/structure/bed/chair/padded/teal{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"kBu" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"kBw" = (/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kBD" = (/obj/structure/sign/warning/fire{dir = 8; pixel_x = 32},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"kBW" = (/obj/machinery/door/blast/regular{dir = 8; id_tag = "armory_lethal"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kBZ" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/camera/network/command{c_tag = "Command - Bridge Starboard"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"kCh" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"kCj" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/plating,/area/space) -"kCy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"kCz" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/rdserver,/obj/item/stock_parts/circuitboard/protolathe,/obj/item/stock_parts/circuitboard/destructive_analyzer,/obj/item/stock_parts/circuitboard/rdconsole,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"kCE" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kCI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"kCN" = (/obj/structure/bed/sofa/r/black{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"kCS" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kCT" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"kCZ" = (/obj/structure/bed/chair/padded/green,/turf/simulated/floor/tiled,/area/space) -"kDb" = (/obj/structure/table/woodentable,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/stock_parts/circuitboard/autolathe,/obj/decal/cleanable/dirt,/obj/random/maintenance,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"kDh" = (/obj/structure/filingcabinet,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/floor_decal/industrial/outline/blue,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"kDj" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/outline/red,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kDn" = (/obj/machinery/porta_turret{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"kDz" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"kDC" = (/obj/structure/sign/warning/vent_port{dir = 4; pixel_x = -32},/obj/structure/catwalk,/turf/space,/area/space) -"kDM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"kDO" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 12},/obj/item/storage/box/cups{pixel_x = -11; pixel_y = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"kDQ" = (/obj/machinery/media/music_writer{pixel_y = 28},/turf/simulated/floor/wood/walnut,/area/space) -"kDS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/sparker{id_tag = "engines-4"; pixel_x = -24},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"kEe" = (/obj/structure/bed/chair/shuttle{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kEk" = (/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"kEx" = (/obj/floor_decal/corner/purple/three_quarters,/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"kEB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/fore) -"kEC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"kEE" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/techfloor,/area/space) -"kEJ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kFn" = (/obj/structure/bed/chair/padded/green{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/holocontrol) -"kFs" = (/obj/floor_decal/corner/green{dir = 1},/obj/item/storage/box/mousetraps,/obj/machinery/camera/network/second_deck{c_tag = "Janitor"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"kFB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kFC" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/corner/paleblue{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"kFE" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/space) -"kFJ" = (/obj/machinery/light/spot{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"kFL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"kFQ" = (/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/obj/engine_setup/pump_max,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"kFV" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/item/tank/oxygen,/turf/simulated/floor/plating,/area/vacant/cargo) -"kFW" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"kGk" = (/obj/machinery/atmospherics/unary/tank/air,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"kGl" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kGw" = (/obj/machinery/optable,/obj/machinery/light,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"kGy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 2; id_tag = "xenobio4_vent"; name = "Chamber Vent"},/turf/simulated/floor/reinforced,/area/space) -"kGC" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 1},/obj/machinery/power/rad_collector,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"kGD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"kGG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"kGH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"kGL" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"kGM" = (/obj/structure/table/rack/dark,/obj/item/stack/material/plastic/fifty,/obj/item/stack/material/plastic/fifty,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"kGN" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"kGT" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"kGU" = (/obj/structure/catwalk,/obj/random/junk,/obj/item/roller_bed{pixel_y = 16},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"kHd" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"kHe" = (/obj/machinery/computer/air_control{input_tag = "toxin_in"; name = "Test Chamber Gas Monitor"; output_tag = "toxin_out"; sensor_name = "Toxin Chamber"; sensor_tag = "toxinchamber_sensor"},/turf/simulated/floor/tiled/techfloor,/area/space) -"kHk" = (/obj/machinery/computer/HolodeckControl{dir = 8; linkedholodeck_area = /area/holodeck/alphadeck; programs_list_id = "SierraMainPrograms"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/holocontrol) -"kHm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"kHr" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"kHz" = (/obj/floor_decal/corner/black/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kHF" = (/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"kHK" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"kHQ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"kHT" = (/obj/machinery/door/airlock/science{name = "Exploration Leader"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"kHX" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"kHY" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"kHZ" = (/obj/machinery/atmospherics/omni/filter{tag_east = 2; tag_south = 5; tag_west = 1},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"kIk" = (/turf/simulated/wall/prepainted,/area/maintenance/waterstore) -"kIl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/space) -"kIm" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kIn" = (/obj/machinery/shield_diffuser,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kIp" = (/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/space) -"kIq" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/r_wall/hull,/area/maintenance/incinerator) -"kIx" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Bridge Air Storage to Bridge Supply"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/space) -"kIy" = (/obj/machinery/suit_storage_unit/engineering/alt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kIz" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/floor_decal/corner/purple/border{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"kIR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"kIT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"kJg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Cistern"; req_access = newlist()},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"kJw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"kJA" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/office) -"kJC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"kJI" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"kJJ" = (/obj/structure/table/steel,/obj/item/storage/belt/utility/full,/obj/item/flame/lighter/zippo,/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"kJO" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/item/stool/padded,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"kJP" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/borgupload,/obj/item/stock_parts/circuitboard/aiupload,/obj/machinery/camera/network/engineering{c_tag = "Tech Storage - Secure"},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"kJV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"kJW" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor/orange,/obj/machinery/conveyor{dir = 4; id = "compactor"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kJX" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "td_port"},/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"kJY" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/structure/bed/chair/pew,/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"kKl" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"kKs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"kKt" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"kKv" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/decal/cleanable/dirt,/obj/structure/sign/directions/medical{pixel_y = -21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"kKz" = (/obj/structure/cryofeed,/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"kKC" = (/obj/floor_decal/corner/blue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"kKF" = (/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"kKI" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal,/turf/simulated/floor/wood/walnut,/area/space) -"kKL" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; injecting = 1; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d3port) -"kKP" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"kKR" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/aftport) -"kKT" = (/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"kKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/silver{autoset_access = 0; name = "Resource Storage"; req_access = list("ACCESS_CENT_GENERAL"); secured_wires = 1},/turf/simulated/floor/plating,/area/space) -"kLd" = (/obj/structure/bed/chair/comfy/purple{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"kLe" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"kLl" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/light{dir = 8},/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 10},/obj/floor_decal/carpet/purple{dir = 9},/obj/item/storage/photo_album{pixel_y = -1},/obj/item/device/camera{pixel_y = 9},/turf/simulated/floor/carpet/purple,/area/space) -"kLn" = (/obj/machinery/jukebox/custom_tape/old,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"kLp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/space) -"kLx" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor/hole/right{dir = 1},/obj/machinery/shieldgen,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"kLB" = (/obj/structure/railing/mapped{dir = 4},/obj/random/firstaid,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/storage/tech) -"kLD" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Aft Stairwell"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"kLF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/space) -"kLM" = (/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"kLQ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/b_green/border{dir = 1},/obj/structure/bed/chair/shuttle/green,/turf/simulated/floor/tiled,/area/space) -"kLS" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 3500},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"kLV" = (/obj/machinery/suit_storage_unit/explorer,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"kLY" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) -"kMb" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"kMd" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kMf" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/random/cash,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/cockpit) -"kMn" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"kMu" = (/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/item/device/camera,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"kMA" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/door/blast/regular{dir = 2; id_tag = "armory"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kMJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"kMK" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/bed/chair/wood/walnut{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"kMO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 8},/obj/floor_decal/corner/grey/bordercorner,/obj/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"kMP" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/industrial/outline/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"kMT" = (/obj/machinery/power/solar_control{id = "auxsolarstarboard"; name = "Starboard Solar Control"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"kMW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/structure/lattice,/turf/space,/area/space) -"kMY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"kNi" = (/obj/structure/disposalpipe/tagger/partial{dir = 8; name = "Sorting Office"; sort_tag = "Sorting Office"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining{name = "Delivery Office"; req_access = newlist()},/turf/simulated/floor/tiled/monotile,/area/space) -"kNr" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/railing/mapped{dir = 8},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/borderfloor/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kNv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"kNw" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret{dir = 8},/obj/machinery/airlock_sensor{id_tag = "ai_core_sensor"; pixel_x = 24},/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/space) -"kNJ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/unary/tank/air{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kNL" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kNR" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{dir = 2; id_tag = "lounge_windows"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"kNS" = (/obj/machinery/computer/ship/sensors{dir = 1},/obj/machinery/power/apc/hyper{dir = 8; name = "east bump"; pixel_x = -24; req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_GUPPY"))},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/button/blast_door{active = "guppy_shield_left"; dir = 1; id_tag = "guppy_shield_left"; name = "Left Window Shield Control"; pixel_x = -6; pixel_y = -20; req_access = list("ACCESS_GUPPY")},/obj/machinery/button/blast_door{airflow_od = -6; dir = 1; id_tag = "guppy_shield"; name = "Window Shield Control"; pixel_x = 6; pixel_y = -20; req_access = list("ACCESS_GUPPY")},/obj/machinery/button/blast_door{dir = 1; id_tag = "guppy_hatch"; name = "Rear Hatch Control"; pixel_y = -32; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"kNU" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"kNV" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/space) -"kOi" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/office) -"kOo" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"kOt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/padded/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"kOu" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/space) -"kOy" = (/obj/machinery/computer/cryopod{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"kOz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kOA" = (/obj/floor_decal/borderfloorwhite{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"kOF" = (/obj/item/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kOJ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 5},/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Commissary"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"kPc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"kPk" = (/obj/paint_stripe/red,/turf/simulated/wall/r_wall/hull,/area/space) -"kPn" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/ocp_wall,/area/space) -"kPq" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"kPB" = (/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"kPK" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/red/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kPL" = (/obj/structure/bed/sofa/r/brown{dir = 1},/obj/machinery/light,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood,/area/space) -"kPV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"kPX" = (/obj/floor_decal/corner/paleblue,/obj/decal/cleanable/dirt,/obj/item/camera_assembly,/turf/simulated/floor/tiled/white,/area/space) -"kQa" = (/obj/machinery/door/airlock/glass/command{name = "Flight Control Tower"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"kQd" = (/obj/structure/rubble,/obj/decal/cleanable/dirt,/obj/random/junk,/obj/decal/cleanable/filth,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"kQg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"kQl" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/space) -"kQq" = (/obj/structure/disposalpipe/up{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"kQx" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kQA" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"kQE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/command{name = "E.V.A."; req_access = newlist(); secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kQF" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"kQH" = (/obj/structure/curtain/bed,/turf/simulated/floor/wood/mahogany,/area/space) -"kQK" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"kQN" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/modular/preset/civilian,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"kQP" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/foreport) -"kQU" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kQW" = (/obj/item/stack/material/steel,/turf/simulated/floor/plating,/area/space) -"kQX" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/machinery/button/windowtint{id = "briefing_windows"; pixel_y = 22; range = 12},/turf/simulated/floor/tiled/dark,/area/space) -"kRb" = (/obj/structure/table/steel,/obj/random/snack,/obj/item/reagent_containers/food/drinks/teapot{pixel_x = 4; pixel_y = 16},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; name = "metal tea cup"; pixel_x = 10; pixel_y = 6},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"kRl" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/techfloor{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"kRm" = (/obj/floor_decal/borderfloor,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"kRJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/woodentable_reinforced/mahogany,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/item/device/flashlight/lamp/lava/purple{pixel_x = -4; pixel_y = 14},/turf/simulated/floor/carpet/green,/area/space) -"kRK" = (/obj/machinery/constructable_frame/machine_frame,/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"kRL" = (/obj/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/space) -"kRS" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/table/steel,/obj/item/folder/yellow,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"kRW" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/wallframe_spawn/reinforced/polarized{id = "sec_equip_windows"},/turf/simulated/floor/plating,/area/space) -"kSk" = (/obj/floor_decal/borderfloorblack,/obj/machinery/camera/network/command{c_tag = "Command - Conference Room"; dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"kSr" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/random/maintenance,/obj/machinery/door/window/westleft{name = "Commissary rack"; req_access = newlist()},/obj/machinery/light{dir = 4},/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/random/single/cola,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"kSs" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "security_permabrig_lobby_shutters"},/obj/paint_stripe/red,/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/turf/simulated/floor/plating,/area/space) -"kSu" = (/obj/structure/bed/chair/pew/left,/turf/simulated/floor/grass/cut,/area/space) -"kSw" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/drinkbottle,/obj/random/maintenance,/obj/random/maintenance,/obj/random/single/playing_cards,/obj/machinery/button/blast_door{id_tag = "comissary_shutters"; name = "Counter Shutters"; pixel_y = 24; req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY"))},/obj/machinery/requests_console{department = "Commissary"; departmentType = 6; name = "Commissary Requests Console"; pixel_x = -32; req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY"))},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"kSG" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"kSS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"kSW" = (/obj/structure/railing/mapped,/obj/structure/closet/crate/trashcart,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"kTb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"kTd" = (/obj/floor_decal/techfloor{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"kTe" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"kTh" = (/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/firstdeck/center) -"kTi" = (/obj/structure/railing/mapped,/obj/structure/table/rack{dir = 8},/obj/random/maintenance,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/space) -"kTn" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/space) -"kTu" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"kTD" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/fourthdeck/center) -"kTG" = (/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"kTQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"kTS" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled/techfloor,/area/space) -"kTV" = (/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"kTW" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{dir = 1; pixel_y = -21},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kUj" = (/obj/structure/table/marble,/obj/item/material/kitchen/rollingpin,/obj/floor_decal/corner/red/diagonal,/obj/machinery/light_construct,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"kUs" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 8; initial_id_tag = "aux_fusion_plant"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced,/area/vacant/prototype/engine) -"kUy" = (/turf/simulated/floor/tiled/techmaint,/area/space) -"kUD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"kUF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kUV" = (/obj/floor_decal/chapel,/obj/structure/bed/chair/pew/left/mahogany,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"kUW" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/plating,/area/space) -"kVf" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"kVg" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/bed/chair/armchair/purple{dir = 8},/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/tiled,/area/space) -"kVi" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"kVD" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"kVG" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kVJ" = (/obj/engine_setup/smes,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"kVY" = (/obj/machinery/door/airlock/research{name = "Suit Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/eva) -"kVZ" = (/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"kWb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"kWd" = (/obj/machinery/suit_storage_unit/medical,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"kWm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/blue,/turf/simulated/floor/reinforced,/area/space) -"kWo" = (/obj/machinery/flasher{id_tag = "security_first_cell_flash"; name = "Floor mounted flash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kWq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"kWA" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/space) -"kWB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/space) -"kWC" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/space) -"kWG" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"kWI" = (/obj/machinery/power/shield_generator,/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan,/obj/machinery/light/small,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/space) -"kWT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"kXa" = (/obj/item/target,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"kXd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/catwalk,/obj/machinery/button/blast_door{id_tag = "firingspace"; name = "Firing Range Shields"; pixel_y = 24; req_access = list("ACCESS_SEC_DOORS")},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"kXu" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"kXz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"kXA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/engineering{name = "Equipment"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"kXI" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"kXK" = (/obj/machinery/computer/modular/preset/engineering{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"kXO" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"kXS" = (/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"kXW" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"kYd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"kYg" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"kYh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"kYo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"kYs" = (/obj/machinery/vending/coffee{dir = 1},/obj/floor_decal/corner/lime/mono,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"kYu" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kYw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/power/sensor{name = "Powernet Sensor - Second Deck Subgrid"; name_tag = "Second Deck Subgrid"},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"kYz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"kYE" = (/obj/structure/table/standard,/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"kYH" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"kYW" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"kZg" = (/obj/structure/bed/sofa/m/black{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"kZn" = (/obj/machinery/air_sensor{id_tag = "o2_sensor"},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) -"kZq" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/requests_console{department = "Engineering"; name = "Engineering RC"; pixel_x = 32},/obj/machinery/camera/network/engineering{c_tag = "Engineering - Lobby"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"kZr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/freezer,/area/space) -"kZw" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "solar_starboard_pump"},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"kZC" = (/obj/machinery/atmospherics/valve/digital{dir = 1; name = "Emergency Cooling Bypass valve"},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/industrial/outline/red,/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"kZG" = (/obj/structure/bed/chair/office/comfy/teal,/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"kZI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"kZK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"lac" = (/obj/paint_stripe/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"lad" = (/obj/structure/table/standard,/obj/item/clothing/mask/gas/aquabreather,/obj/item/clothing/mask/gas/aquabreather,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lau" = (/obj/structure/bed/chair/padded/blue,/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"laz" = (/obj/item/stool/padded,/obj/floor_decal/corner/yellow/half{dir = 4},/turf/simulated/floor/tiled,/area/space) -"laG" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"laP" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_8_berth_hatch"; name = "Escape Pod Eeigh"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"laV" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"lbg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"lby" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"lbF" = (/obj/floor_decal/techfloor,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/cell/high{pixel_x = 1},/obj/item/cell/high{pixel_x = -8; pixel_y = 10},/obj/item/cell/high{pixel_x = 6; pixel_y = 10},/obj/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lbK" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobioaqua"; name = "Containment Blast Doors"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/space) -"lbL" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/red{pixel_x = 7; pixel_y = 11},/obj/structure/sign/poster/nyc/know_the_enemy{pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"lbY" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge) -"lbZ" = (/obj/machinery/power/apc/hyper{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/radiation,/turf/simulated/floor/plating,/area/space) -"lci" = (/obj/structure/cryofeed{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"lcn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"lcv" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"lcB" = (/obj/machinery/light/small{dir = 1},/obj/random/obstruction,/turf/simulated/floor/plating,/area/space) -"lcF" = (/obj/structure/disposalpipe/down{dir = 1},/obj/structure/lattice,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/fuel{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/structure/cable{d1 = 32; icon_state = "32-1"},/turf/simulated/open,/area/maintenance/thirddeck/aftport) -"lda" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"ldg" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/door/blast/regular{dir = 2; id_tag = "d1portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"ldn" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/multi_tile/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"lds" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"ldz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ldC" = (/obj/structure/table/steel,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"ldI" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"ldP" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/door/blast/shutters{dir = 4; id_tag = "hangar_atmos_storage"; name = "Storage Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ldQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/comfy/red{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"ldT" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"ldV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"ldY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/padded/red{dir = 4},/obj/floor_decal/corner/red{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lea" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"leb" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Exterior Vent"},/turf/simulated/wall/titanium,/area/space) -"lek" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"lel" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"lem" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"lex" = (/obj/machinery/libraryscanner,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"lez" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/obj/floor_decal/corner/blue{dir = 6},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_morg"; name = "Mogrue Exit Lockdown"; pixel_x = 20; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_crit2"; name = "Critical Wing 2 Lockdown"; pixel_x = 28; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_crit1"; name = "Critical Wing 1 Lockdown"; pixel_x = 36; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{color = "#ff5500"; dir = 8; id_tag = "med_quar_lock"; name = "QUARANTINE FULL LOCKDOWN"; pixel_x = 43; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_to_maint"; name = "Infirmary to Maintenance Lockdown"; pixel_x = 20; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_pat_ward"; name = "Infirmary Patient Ward Lockdown"; pixel_x = 20; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_main_reg"; name = "Infirmary Main Entrance Lockdown"; pixel_x = 28; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_pub_hall"; name = "Infirmary Public Hallway Lockdown"; pixel_x = 36; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"leB" = (/obj/structure/hygiene/toilet{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/material/kitchen/utensil/fork/plastic{name = "prisoners fork"; pixel_x = 10},/turf/simulated/floor/tiled/freezer,/area/space) -"leD" = (/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/computer/arcade/orion_trail,/obj/machinery/firealarm{pixel_y = 24},/obj/decal/cleanable/cobweb,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"leE" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/space) -"leG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/aft) -"leL" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/storage/mirror{pixel_x = 24; pixel_y = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/space) -"leM" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"leO" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_8_hatch"; name = "Escape Pod Eight Hatch"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"leU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"leW" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"lfg" = (/obj/machinery/nuclearbomb/station{name = "ship self-destruct terminal"},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"lfh" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor,/obj/item/material/bell,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "bar<-cafe"; name = "Bar Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lfm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"lfs" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"lfB" = (/obj/machinery/computer/modular/preset/dock{dir = 8},/obj/floor_decal/corner/yellow/half,/turf/simulated/floor/tiled,/area/space) -"lfD" = (/obj/shuttle_landmark/specops/out,/turf/space,/area/space) -"lfF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_x = -32; pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"lfG" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/obj/structure/sign/warning/nosmoking_1{dir = 1; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"lfH" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lfN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"lfO" = (/obj/structure/table/steel,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/item/book/manual/engineering_hacking,/obj/item/book/manual/engineering_guide,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lfP" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"lfV" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) -"lfW" = (/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"lgm" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance,/obj/random/medical,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"lgo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"lgy" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"lgz" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "toxin_lab_access"; name = "Toxin Lab Access Console"; pixel_y = -20; req_access = list("ACCESS_TOX_STORAGE")},/turf/simulated/floor/tiled/techfloor,/area/space) -"lgB" = (/obj/structure/fuel_port{pixel_y = 32},/obj/structure/girder/displaced,/turf/simulated/floor/plating,/area/space) -"lgE" = (/obj/structure/window/reinforced,/obj/structure/table/standard,/obj/item/device/integrated_circuit_printer,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"lgH" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"lgN" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"lgS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"lgW" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1443; id = "air_in"; use_power = 1},/obj/machinery/sparker{id_tag = "Incinerator"; pixel_y = -20},/turf/simulated/floor/reinforced,/area/maintenance/incinerator) -"lhc" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"lhg" = (/obj/floor_decal/corner/green/bordercee,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lhv" = (/turf/simulated/wall/r_wall/prepainted,/area/assembly/chargebay) -"lhF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"lhU" = (/obj/decal/cleanable/greenglow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/space) -"lhY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lif" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"lih" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/space) -"lim" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"lis" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{dir = 4; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"liy" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/table/rack,/obj/item/stack/material/steel{amount = 30},/obj/item/stack/material/steel{amount = 30},/obj/item/stack/material/steel/fifty,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"liA" = (/obj/structure/hygiene/sink/kitchen{dir = 4; pixel_x = -20},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"liJ" = (/turf/simulated/wall/r_wall/hull,/area/chapel/main) -"liK" = (/obj/floor_decal/corner/yellow/three_quarters,/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/item/folder/yellow{pixel_x = -2; pixel_y = -3},/obj/item/folder/yellow{pixel_x = -2; pixel_y = -3},/obj/item/folder/yellow{pixel_x = -2; pixel_y = -3},/obj/item/folder/yellow{pixel_x = -2; pixel_y = -3},/obj/machinery/button/blast_door{dir = 1; id_tag = "qm_office"; name = "QM Shutter Control"; pixel_x = 2; pixel_y = -24; req_access = list("ACCESS_CARGO")},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 1; id_tag = "qmdoor-supply"; name = "supply door control"; pixel_x = -9; pixel_y = -24; req_access = list("ACCESS_QUARTERMASTER")},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"liR" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"liW" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"liY" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"ljf" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_8_berth"; name = "escape pod eight berth controller"; pixel_x = -32; pixel_y = 21; tag_door = "escape_pod_8_berth_hatch"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"ljg" = (/obj/machinery/cryopod/robot{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"ljm" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/structure/bed/sofa/m/brown{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"ljn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"ljA" = (/obj/structure/bed/sofa/l/teal{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"ljC" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"ljL" = (/obj/machinery/computer/cryopod{pixel_y = 24},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ljR" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3starboard) -"ljV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"lkg" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"lkl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"lko" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/foreport) -"lkt" = (/obj/floor_decal/corner/green/half,/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"lkA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/access_button/airlock_interior{frequency = 1380; master_tag = "nuke_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -32; pixel_y = -24; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/tiled,/area/space) -"lkB" = (/obj/machinery/power/apc/high{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"lkC" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"lkG" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/handrail{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"lkM" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; initial_id_tag = "aux_fusion_plant"},/turf/simulated/floor/reinforced,/area/vacant/prototype/engine) -"lla" = (/obj/machinery/light,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/corner/red/bordercorner2,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/security/brig) -"llb" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder/juicer,/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"lld" = (/obj/structure/closet/emcloset,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"llm" = (/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "cafe_private_room"; name = "Unlock"; pixel_x = 24; pixel_y = 7; req_access = list("ACCESS_BAR")},/obj/structure/bed/chair/rounded/brown{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 6},/obj/floor_decal/carpet/blue{dir = 5},/turf/simulated/floor/carpet/blue,/area/space) -"lln" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"llq" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"llr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/sign/warning/high_voltage{dir = 8; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lls" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"llw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"llx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"llM" = (/obj/floor_decal/techfloor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"llO" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"llP" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/handrail,/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"llT" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/tiled,/area/space) -"llX" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"lmb" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"lmg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"lmj" = (/obj/machinery/stasis_cage,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lmE" = (/obj/machinery/status_light{alert_temperature = 340; id_tag = "BSDrive"; name = "Bluespace Drive status indicator"; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/space) -"lmM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"lmQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 1},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"lmT" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"lnc" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/structure/bed/sofa/l/brown{dir = 4},/turf/simulated/floor/wood/yew,/area/space) -"lnd" = (/obj/structure/shuttle/engine/propulsion{dir = 1},/obj/structure/shuttle/engine/heater{dir = 1; pixel_y = -32},/turf/simulated/floor/airless,/area/space) -"lnj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/space) -"lnp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"lnu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lny" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"lnC" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"lnE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"lnL" = (/obj/floor_decal/corner/purple/full,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"lnN" = (/obj/machinery/door/airlock/vault/bolted{name = "AI Core Backup Access"},/obj/machinery/door/blast/regular{dir = 4; id_tag = "AICore"; name = "AI Core Security Shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/turret_protected/ai) -"lnO" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 4},/obj/structure/bed/padded,/obj/item/bedsheet/brown,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"lnR" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/assembly/robotics) -"lob" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lod" = (/obj/structure/bed/sofa/r/black{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/carpet/blue,/area/space) -"loi" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"lok" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"lou" = (/obj/machinery/photocopier,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"loz" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"loC" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white/monotile,/area/space) -"loO" = (/turf/simulated/wall/r_wall/prepainted,/area/tcommsat/computer) -"loY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/window{autoset_access = 0; dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"lpg" = (/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"lpk" = (/turf/simulated/floor/reinforced,/area/maintenance/incinerator) -"lpB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"lpG" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 15000},/obj/machinery/button/ignition{dir = 1; id_tag = "engines-3"; pixel_y = -34},/obj/machinery/button/blast_door{dir = 1; id_tag = "cChamber3pV"; name = "First Deck Starboard Chamber Vent"; pixel_x = 8; pixel_y = -24},/obj/machinery/button/blast_door{dir = 1; id_tag = "d3portnacelle"; name = "Combustion Chamber Blast Door Control"; pixel_x = -8; pixel_y = -24},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"lpI" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"lpQ" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/blue,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"lpT" = (/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"lpY" = (/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"lpZ" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/explorer/medic,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"lqa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"lqj" = (/obj/machinery/computer/guestpass{pixel_y = 29},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"lqu" = (/obj/machinery/cryopod{dir = 1},/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Cryogenics"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lqA" = (/obj/fluid_mapped,/turf/simulated/floor/reinforced,/area/maintenance/waterstore) -"lqB" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"lqC" = (/obj/structure/bed,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"lqE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "hangar_hallway_doors"; name = "Visitors"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"lqH" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lqX" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/structure/window/boron_reinforced{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lra" = (/obj/structure/railing/mapped{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"lrf" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/blue,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/space) -"lrl" = (/obj/machinery/light/spot,/obj/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"lrn" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"lru" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/light/led/small{dir = 1},/obj/structure/shotgun_rack{pixel_y = 29},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/table/steel_reinforced,/obj/machinery/chemical_dispenser/bar_alc/full{pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/space) -"lrw" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"lrC" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/light_switch{dir = 1; pixel_x = -9; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"lrH" = (/obj/floor_decal/corner/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/space) -"lrL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/space) -"lrR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"lrU" = (/obj/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "firing_range_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "firing_range"; pixel_x = 20; pixel_y = 4; req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL"))},/obj/machinery/airlock_sensor{id_tag = "firing_range_sensor"; master_tag = "firing_range"; pixel_x = 24; pixel_y = -8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"lrV" = (/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"lrY" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"lsd" = (/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"lsj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "xenohight_airlock"; name = "Xenobiology Access Console"; pixel_y = 22; req_access = list("ACCESS_XENOBIO")},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/entry) -"lsk" = (/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2,/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"lsC" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lsE" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/critical{dir = 1; name = "north bump"; pixel_y = 21},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/auxpower) -"lsL" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/tele_pad,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lsM" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"lsV" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"ltl" = (/obj/floor_decal/borderfloor/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"ltp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ltr" = (/turf/simulated/wall/r_wall/prepainted,/area/vacant/prototype/engine) -"lts" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"ltu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled,/area/security/brig) -"lty" = (/obj/floor_decal/techfloor{dir = 6},/obj/random/closet,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"ltH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) -"ltO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ltP" = (/obj/machinery/recharge_station,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled,/area/security/brig) -"ltU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/hygiene/sink{pixel_y = -12},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"lub" = (/obj/structure/bed/chair/padded/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"luc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"lun" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"luo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"lur" = (/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "centcom_shuttle_dock_outer"; name = "Docking Port Airlock"},/obj/machinery/shield_diffuser,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"luJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/snow,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/freezer,/area/space) -"luL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/space) -"luO" = (/obj/structure/bed/chair/wood/maple{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/office) -"luT" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"luU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"luY" = (/obj/structure/cable/cyan,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/b_green/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/b_green/bordercorner2{dir = 6},/obj/structure/bed/chair/shuttle/green{dir = 1},/turf/simulated/floor/tiled,/area/space) -"lvf" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/tele_beacon,/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"lvi" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"lvm" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lvn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/sign/warning/lethal_turrets{pixel_y = 32},/obj/structure/table/rack,/obj/item/clothing/suit/space,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/fishbowl,/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lvs" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/plating,/area/space) -"lvu" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"lvv" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 1},/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"lvy" = (/obj/structure/bed/chair/rounded/blue{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lvB" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"lvD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lvI" = (/obj/structure/bed/sofa/r/beige,/obj/floor_decal/spline/fancy/black{dir = 5},/turf/simulated/floor/wood/ebony,/area/space) -"lvN" = (/obj/structure/table/standard,/obj/item/auto_cpr,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"lwd" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/cryopod/robot{pixel_x = 31},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"lwg" = (/obj/machinery/button/blast_door{id_tag = "eng_lockdown_emg1"; name = "Main Enterence Control"; pixel_y = 28; req_access = list("ACCESS_ENGINEERING")},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lwj" = (/obj/paint_stripe/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"lwm" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/item/stock_parts/circuitboard/batteryrack,/obj/item/stock_parts/circuitboard/batteryrack,/obj/item/stock_parts/circuitboard/smes,/obj/item/stock_parts/smes_coil,/obj/item/stock_parts/smes_coil,/obj/item/stock_parts/smes_coil/super_capacity,/obj/item/stock_parts/smes_coil/super_capacity,/obj/item/stock_parts/smes_coil/super_io,/obj/item/stock_parts/smes_coil/super_io,/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"lwn" = (/obj/machinery/atmospherics/unary/heater,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"lwp" = (/obj/structure/table/steel,/obj/item/storage/bible,/obj/item/circular_saw,/obj/item/scalpel/basic,/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"lwt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"lwu" = (/obj/structure/closet/crate,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/lightreplacer,/obj/item/storage/box/lights/mixed,/obj/item/storage/box/glowsticks,/obj/item/tape_roll,/obj/item/stock_parts/smes_coil/weak,/obj/item/storage/box/lights/led_neon,/obj/floor_decal/spline/plain/purple{dir = 1},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"lwD" = (/obj/floor_decal/techfloor/corner,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"lwJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"lwK" = (/obj/structure/sign/warning/airlock{dir = 1; pixel_y = -32},/obj/machinery/recharge_station,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lwU" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"lwY" = (/obj/shuttle_landmark/escape_pod/start/pod10,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"lxb" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"lxd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Forensics"},/turf/simulated/floor/tiled/monotile,/area/space) -"lxg" = (/obj/structure/bed/chair/office/teal{dir = 8},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"lxi" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/cyan,/turf/simulated/open,/area/space) -"lxj" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lxl" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"lxq" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 4; id_tag = "prototype_exhaust"},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"lxz" = (/obj/machinery/chem_master,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/infirmary) -"lxK" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"lxQ" = (/obj/machinery/computer/station_alert/security,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"lxY" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 2; id_tag = "xenobio1_vent"; name = "Chamber Vent"},/turf/simulated/floor/reinforced,/area/space) -"lxZ" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/standard,/obj/random/tech_supply{pixel_y = -6},/obj/random/tech_supply{pixel_x = -6; pixel_y = 7},/obj/random/tech_supply{pixel_x = 8; pixel_y = -6},/obj/random/tool{pixel_x = 10; pixel_y = 5},/obj/random/tool{pixel_x = -3; pixel_y = -2},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"lyk" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/bed/sofa/r/brown{dir = 8},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/wood/yew,/area/space) -"lyr" = (/obj/machinery/telecomms/server/presets/supply,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"lyw" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_9_berth_hatch"; name = "Escape Pod Nine"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"lyE" = (/obj/floor_decal/industrial/warning,/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"lyK" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"lyO" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/storage/medical_lolli_jar{pixel_x = 3; pixel_y = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"lyR" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Fore Starboard Access"; dir = 8},/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"lyS" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"lyU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lyY" = (/obj/structure/table/steel_reinforced,/obj/item/hand_labeler,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/machinery/camera/network/command{c_tag = "Command - Captain's Quarters"; dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"lzj" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lzk" = (/obj/machinery/door/window/brigdoor/westleft{dir = 1},/obj/machinery/door/window/brigdoor/westright{autoset_access = 0; dir = 2},/obj/machinery/door/blast/shutters/open{id_tag = "security_permabrig_lobby_shutters"},/obj/paint_stripe/red,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"lzz" = (/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"lzC" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lzD" = (/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = -16},/turf/simulated/floor/wood/walnut,/area/space) -"lzG" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lzH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/civilian{dir = 4; name = "Canister Storage"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lzL" = (/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/structure/bed/sofa/r/brown{dir = 4},/turf/simulated/floor/wood/yew,/area/space) -"lzO" = (/obj/structure/closet/secure_closet/crew/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/white/monotile,/area/maintenance/fourthdeck/aft) -"lzS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"lzW" = (/obj/floor_decal/corner/green{dir = 1},/obj/item/stool/padded/red,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"lAe" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lAk" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/camera/network/command{c_tag = "Command - Port Hallway Entry"; dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"lAs" = (/obj/structure/table/steel,/obj/item/reagent_containers/spray/pepper,/obj/item/reagent_containers/spray/pepper,/obj/item/device/radio/electropack,/obj/item/device/assembly/signaler,/obj/item/screwdriver,/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/corner/red/bordercorner,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"lAv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/techfloor/orange,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"lAy" = (/obj/machinery/button/blast_door{dir = 1; id_tag = "library_space_lower"; name = "Space Shields"; pixel_x = -24; pixel_y = -21},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/rounded/beige{dir = 1},/turf/simulated/floor/carpet,/area/space) -"lAE" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/port) -"lAM" = (/obj/random/drinkbottle,/obj/structure/closet/medical_wall/filled{pixel_y = -24},/obj/floor_decal/corner/black/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"lAS" = (/obj/machinery/atmospherics/unary/tank/air,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - East"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"lAT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"lAU" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"lAZ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"lBc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"lBq" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"lBs" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"lBy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 8},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"lBz" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/floor_decal/corner/green{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"lBJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lBS" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/bed/sofa/m/brown{dir = 8},/turf/simulated/floor/tiled,/area/space) -"lBW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"lCb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"lCc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"lCk" = (/obj/machinery/door/window/brigdoor/southright{dir = 4; id = "Cell 1"; name = "Cell one"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "security_permabrig_fitst_cell_shutters"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"lCm" = (/obj/floor_decal/corner/red{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"lCn" = (/obj/machinery/vending/cola{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lCC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lCH" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"lCJ" = (/obj/floor_decal/industrial/warning,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"lCK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"lCN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"lCR" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 15000},/obj/machinery/button/ignition{id_tag = "engines-4"; pixel_y = 34},/obj/machinery/button/blast_door{id_tag = "d4portnacelle"; name = "Combustion Chamber Blast Door Control"; pixel_x = -8; pixel_y = 24},/obj/machinery/button/blast_door{id_tag = "cChamber4pV"; name = "First Deck Port Chamber Vent"; pixel_x = 8; pixel_y = 24},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"lCS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"lCT" = (/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"lCV" = (/obj/random/junk,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"lCZ" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"lDe" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood/walnut,/area/space) -"lDl" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; id = "n2o_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) -"lDK" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"lDM" = (/obj/floor_decal/industrial/outline/blue,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"lDQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/structure/table/rack,/obj/item/stack/material/plasteel{amount = 20},/obj/item/stack/material/plasteel{amount = 20},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"lDR" = (/obj/machinery/ai_status_display,/obj/paint/black,/turf/simulated/wall/r_wall/prepainted,/area/space) -"lDS" = (/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"lDU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/machinery/button/blast_door{id_tag = "petrovcell2"; name = "Test Chamber Vent"; pixel_x = -26; pixel_y = -26},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"lDW" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/floor_decal/corner/green{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/cart{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"lDX" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"lDZ" = (/obj/machinery/door/airlock/research{name = "Isolation Chambers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"lEe" = (/obj/floor_decal/corner/purple/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"lEq" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/floor_decal/borderfloorwhite{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"lEz" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"lEA" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/space) -"lEK" = (/obj/structure/morgue{dir = 1},/obj/floor_decal/industrial/outline/blue,/obj/structure/closet/walllocker{pixel_y = -28},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"lEP" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"lEQ" = (/obj/random/obstruction,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lEY" = (/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"lEZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"lFa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lFe" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/item/trash/sosjerky,/turf/simulated/floor/wood/walnut,/area/space) -"lFg" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"lFi" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"lFj" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"},/turf/simulated/floor/tiled/white,/area/rnd/office) -"lFk" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"lFn" = (/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"lFA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"lFH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"lFI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"lFT" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lime/bordercorner2{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/cola{dir = 1},/turf/simulated/floor/tiled,/area/space) -"lFW" = (/obj/structure/table/rack/wooden,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"lFZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"lGb" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"lGd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/space) -"lGh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"lGm" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"lGq" = (/obj/catwalk_plated/white,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/infirmary) -"lGr" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 3500},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"lGA" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{dir = 8; name = "Cryo Storage"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lGG" = (/obj/floor_decal/corner/black/three_quarters,/obj/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner2,/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"lGJ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"lGO" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/security/opscheck) -"lGQ" = (/obj/machinery/floodlight{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"lGY" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"lGZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"lHf" = (/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"lHj" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa3"; name = "Containment Blast Doors"},/turf/simulated/floor/reinforced,/area/space) -"lHs" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"lHt" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lHM" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"lHU" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"lHV" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/corner/green/bordercorner2{dir = 10},/obj/floor_decal/corner/green/bordercorner2{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"lIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"lIf" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 8},/obj/structure/bed/padded,/obj/item/bedsheet/red,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"lIk" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/table/glass,/obj/item/reagent_containers/spray/sterilizine,/obj/item/reagent_containers/spray/luminol,/obj/floor_decal/borderfloorwhite{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"lIv" = (/obj/machinery/computer/rdconsole/robotics{dir = 1},/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"lIy" = (/obj/structure/table/steel,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"lIQ" = (/obj/machinery/shipsensors,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced,/area/space) -"lIY" = (/obj/item/bedsheet/green,/obj/structure/bed/padded,/turf/simulated/floor/wood/walnut,/area/vacant/cargo) -"lJb" = (/obj/structure/filingcabinet/wallcabinet{pixel_x = 30},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/black/border{dir = 5},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"lJi" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"lJm" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/space,/area/space) -"lJo" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"lJp" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "escape_pod_4_pump"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lJq" = (/obj/machinery/atmospherics/unary/tank{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"lJv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"lJx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"lJD" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"lJF" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"lJJ" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/corner/blue/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"lJL" = (/obj/machinery/mech_recharger,/mob/living/exosuit/premade/light/exploration,/turf/simulated/floor/tiled/techfloor,/area/space) -"lJN" = (/obj/machinery/door/blast/shutters/open{id_tag = "med_crit2"; name = "Infirmary Staging Shutters"},/obj/wallframe_spawn/reinforced/polarized/full{id = "infimary_staging"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/space) -"lJY" = (/obj/machinery/floodlight{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"lKi" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"lKo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"lKq" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/open,/area/space) -"lKv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"lKy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"lKz" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"lKC" = (/obj/structure/table/gamblingtable,/obj/item/deck/cards,/turf/simulated/floor/carpet,/area/space) -"lKH" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftstarboard) -"lKL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"lKQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"lKS" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/machinery/atm{pixel_y = -28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"lKZ" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/flame/lighter/zippo,/obj/item/clothing/mask/smokable/cigarette/cigar/havana,/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 6},/obj/floor_decal/carpet/purple{dir = 5},/turf/simulated/floor/carpet/purple,/area/space) -"lLc" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 4; id_tag = "comissary_shutters"; name = "Commissary Shutters"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"lLf" = (/obj/structure/bed/chair/pew,/turf/simulated/floor/grass/cut,/area/space) -"lLh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"lLr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"lLu" = (/obj/floor_decal/corner/yellow/half{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"lLv" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/item/device/flashlight/lamp/lava/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lLH" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/table/rack,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"lLL" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "CO23p_in"; injecting = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1starboard) -"lLW" = (/obj/structure/bed/chair/office/brown{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"lLY" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"lLZ" = (/obj/floor_decal/industrial/warning,/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lMi" = (/obj/structure/bed/chair/office/comfy/blue{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"lMl" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/space) -"lMu" = (/obj/machinery/door/airlock/civilian{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"lMB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"lME" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/mob/living/simple_animal/passive/mouse,/turf/simulated/floor/wood{icon_state = "wood_broken3"},/area/space) -"lMF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"lMG" = (/obj/machinery/computer/modular/preset/engineering{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"lMP" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Hallway Heads"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"lMQ" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 8; pixel_x = 22},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"lMR" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lMW" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"lMX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/techfloor{dir = 10},/obj/structure/sign/warning/internals_required{dir = 4; pixel_x = -32},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lMY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/valve/shutoff/supply{name = "supply valve to Petrov"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lNb" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/nt,/obj/item/folder/nt,/obj/item/folder/nt,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"lNg" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"lNk" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/disposal,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lNl" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"lNm" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"lNn" = (/obj/structure/sign/nanotrasen{dir = 4},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/aftport) -"lNv" = (/obj/floor_decal/industrial/traffic{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lNI" = (/obj/structure/closet/secure_closet/personal/empty,/obj/floor_decal/corner/green/border{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lNM" = (/obj/landmark{name = "carpspawn"},/obj/structure/catwalk,/turf/simulated/open,/area/space) -"lNS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lNU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"lNX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"lNZ" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"lOa" = (/obj/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/structure/closet/secure_closet/hop2,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"lOd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lOi" = (/obj/structure/table/woodentable,/obj/item/trash/sosjerky,/obj/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/wood/walnut,/area/space) -"lOn" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/mining/brace{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"lOo" = (/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/papershredder,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"lOp" = (/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/spline/fancy/black/corner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood/walnut,/area/space) -"lOr" = (/obj/structure/bed/chair/padded/black{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"lOA" = (/obj/machinery/atmospherics/unary/freezer,/obj/item/device/radio/intercom{pixel_y = 26},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"lOI" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor,/area/space) -"lOO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/storage/primary) -"lOT" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"lOU" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/ebony,/area/space) -"lPa" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"lPd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/space) -"lPf" = (/obj/landmark{name = "carpspawn"},/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"lPg" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/starboard) -"lPl" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"lPo" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lPp" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/item/storage/briefcase/crimekit{pixel_y = 10},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lPz" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/space) -"lPF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hydroponics) -"lPG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Central Hallway"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lPI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"lPV" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"lQb" = (/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/aft) -"lQj" = (/obj/structure/table/standard,/obj/item/folder/nt,/turf/simulated/floor/tiled/white,/area/space) -"lQt" = (/obj/structure/table/standard,/obj/item/roller_bed,/obj/item/roller_bed,/obj/item/roller_bed,/obj/item/roller_bed,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"lQv" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway - Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"lQE" = (/obj/machinery/button/blast_door{id_tag = "heads_meeting"; name = "Conference Room Shutters Control"; pixel_x = 1; pixel_y = 28},/obj/machinery/button/windowtint{id = "meeting_windows"; pixel_x = 9; pixel_y = 28},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 28},/obj/floor_decal/borderfloorblack{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"lQM" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lQP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"lQX" = (/obj/structure/mopbucket,/obj/item/mop,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/shuttle/petrov/eva) -"lQY" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"lRm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"lRx" = (/obj/structure/closet/crate,/obj/random/medical/lite,/obj/random/medical/lite,/obj/random/smokes,/obj/random/tank,/obj/random/tool,/obj/random/tool,/obj/random/tech_supply,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/white,/area/maintenance/firstdeck/aftstarboard) -"lSb" = (/obj/machinery/access_button/airlock_interior{master_tag = "ai_starboard"; name = "interior access button"; pixel_y = 28; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lSc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"lSi" = (/obj/structure/table/standard,/obj/floor_decal/corner/yellow/three_quarters,/obj/item/device/megaphone,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/tiled,/area/quartermaster/office) -"lSl" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "lobb_hall_shutt"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"lSq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/grey{dir = 10},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"lSt" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"lSx" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/xenobiology/xenoflora) -"lSK" = (/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lSZ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"lTj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"lTx" = (/obj/machinery/suit_storage_unit/medical/alt,/obj/structure/window/basic{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"lTE" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"lTI" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"lTP" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"lTT" = (/obj/floor_decal/corner/paleblue/border,/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = 16},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"lTY" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lUa" = (/obj/machinery/door/window{autoset_access = 0; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"lUd" = (/obj/machinery/firealarm{pixel_y = 24},/obj/item/tableflag,/obj/vehicle/train/cargo/trolley,/obj/floor_decal/spline/plain/brown,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"lUe" = (/obj/structure/bed/sofa/m/brown{dir = 1},/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/space) -"lUi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/window/brigdoor/westleft{dir = 4; id_tag = "iaaright"; req_access = newlist()},/turf/simulated/floor/tiled/white,/area/space) -"lUl" = (/obj/structure/grille,/obj/structure/lattice,/turf/simulated/open,/area/space) -"lUy" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lUz" = (/obj/structure/table/rack,/obj/item/storage/box/bodybags,/obj/item/storage/box/freezer,/obj/item/storage/box/masks,/obj/item/storage/box/masks,/obj/item/storage/box/syringes,/obj/item/storage/box/syringes,/obj/item/storage/box/latexgloves,/obj/item/storage/box/nitrilegloves,/obj/item/storage/box/beakers,/obj/machinery/light,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"lUI" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"lUK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lUW" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lVe" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"lVm" = (/obj/floor_decal/corner/green/half,/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"lVr" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lVC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/bed/padded,/obj/item/bedsheet/mime,/turf/simulated/floor/wood/walnut,/area/space) -"lVJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"lVP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lVT" = (/obj/floor_decal/carpet/blue2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blue2,/area/space) -"lWc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/steel_grid,/area/space) -"lWe" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/conveyor{dir = 1; id = "charon_cargo_in"; name = "charon external conveyor belt"},/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"lWg" = (/obj/structure/bed/chair/comfy/purple{dir = 8},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"lWr" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 8},/obj/floor_decal/corner/red/diagonal,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"lWs" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lWu" = (/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"lWC" = (/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"lWD" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"lWE" = (/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"lWI" = (/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"lWK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/security/brig) -"lWO" = (/obj/structure/table/standard,/obj/floor_decal/techfloor{dir = 4},/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"lWR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"lXk" = (/obj/machinery/access_button/airlock_exterior{master_tag = "prototype_controller"; pixel_x = 23; pixel_y = 23},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"lXp" = (/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"lXx" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/space) -"lXy" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"lXQ" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"lXY" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/industrial/outline/grey,/obj/machinery/button/blast_door{desc = "A remote control-switch for shutters."; id_tag = "hangar_ts_shutters"; name = "Secondary Hallway Shutters"; pixel_x = 5; pixel_y = 1; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/blast_door{desc = "A remote control-switch for shutters."; id_tag = "hangar_hallway_shutters"; name = "Hallway Checkpoint Shutters"; pixel_x = -5; pixel_y = -3; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/blast_door{desc = "A remote control-switch for shutters."; id_tag = "hangar_checkpoint_shutters"; name = "Checkpoint Window Shutters"; pixel_x = -5; pixel_y = 7; req_access = list("ACCESS_SECURITY")},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"lYg" = (/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"lYk" = (/obj/floor_decal/borderfloor,/obj/machinery/light,/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/border,/turf/simulated/floor/tiled/dark,/area/space) -"lYm" = (/obj/structure/bed/chair/wheelchair,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lYo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"lYw" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"lYx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"lYA" = (/obj/structure/reagent_dispensers/coolanttank,/turf/simulated/floor/plating,/area/space) -"lYK" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "xenobio2"; name = "Containment Blast Doors"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"lYM" = (/obj/machinery/suit_storage_unit/security/alt,/obj/structure/railing/mapped,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"lYP" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway - Fore"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"lZa" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green,/obj/floor_decal/corner/red/bordercee{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"lZm" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 4; id_tag = "skipjack_shuttle_pump"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"lZF" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"lZJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/engineering{name = "Fusion Testing Facility"; secured_wires = 1},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/prototype/control) -"lZQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{locked = 1},/obj/item/taperoll/engineering/applied,/obj/decal/cleanable/blood/tracks/footprints,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"lZV" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"lZZ" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/aft) -"mac" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"mae" = (/obj/floor_decal/corner/black/border{dir = 4},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mah" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/lounge) -"mal" = (/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"maz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"maC" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"maQ" = (/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"maW" = (/obj/machinery/porta_turret{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"maZ" = (/obj/structure/table/woodentable,/obj/item/storage/secure/briefcase,/obj/item/device/taperecorder,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mba" = (/obj/machinery/door/airlock/highsecurity{name = "Gravitational Generator Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mbg" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_pub_hall"; name = "Infirmary Entry Shutters"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"mbh" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa1"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"mbk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{name = "Tech Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/tech) -"mbl" = (/obj/machinery/atmospherics/unary/engine,/obj/structure/sign/warning/hot_exhaust{dir = 1; pixel_y = -32},/turf/simulated/floor/plating,/area/guppy_hangar/start) -"mbq" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mbu" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"mby" = (/obj/item/modular_computer/telescreen/preset/generic{pixel_y = 26},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mbH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"mbT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"mbV" = (/obj/floor_decal/carpet/blue,/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/carpet/blue,/area/space) -"mcp" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_1_pump"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/grey/border{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mcq" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"mcr" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/turf/simulated/floor/plating,/area/space) -"mcw" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mcz" = (/obj/machinery/access_button/airlock_interior{master_tag = "fd_starboard"; name = "interior access button"; pixel_x = -24; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/door/airlock/external/glass/bolted/cycling{id_tag = "fd_starboard_inner"; name = "First Deck Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"mcA" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mcD" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"mcI" = (/obj/machinery/light{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"mcN" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/industrial/outline/grey,/obj/machinery/camera/network/command{c_tag = "Command - EVA"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mcO" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"mcP" = (/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mcU" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/random/tank,/obj/random/tank,/obj/random/tank,/turf/simulated/floor/tiled/techfloor,/area/space) -"mde" = (/obj/machinery/computer/air_control{dir = 8; name = "Atmospheric Sensors"; sensor_name = "Charon Out"; sensor_tag = "calypso_out"},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/paleblue/bordercorner2,/obj/structure/window/reinforced/polarized,/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"mdn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"mdp" = (/obj/structure/table/reinforced,/obj/machinery/fabricator/micro/bartender{pixel_x = 9; pixel_y = 7},/obj/item/storage/box/beakers,/obj/floor_decal/corner/beige/three_quarters{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"mdr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"mdA" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/bridge) -"mdB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mdD" = (/turf/simulated/floor/plating,/area/quartermaster/hangar) -"mdE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/spot{dir = 4},/obj/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"mdM" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"mdZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"meb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"med" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"meg" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"men" = (/obj/machinery/constructable_frame/machine_frame,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"mep" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"mes" = (/obj/structure/table/steel,/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube,/obj/item/reagent_containers/food/snacks/monkeycube/spidercube,/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube,/obj/machinery/light/small{dir = 8},/obj/item/reagent_containers/glass/beaker/vial{name = "vial (mutational toxin)"},/obj/item/reagent_containers/glass/beaker/vial,/obj/item/scalpel/basic{pixel_y = 12},/obj/spider/stickyweb,/turf/simulated/floor/plating,/area/space) -"meu" = (/obj/machinery/door/airlock/maintenance{name = "Conference Room Maintenance"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/bridge/meeting_room) -"mez" = (/obj/structure/railing/mapped{dir = 8},/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"meC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"meE" = (/obj/structure/bed/sofa/r/teal{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"meG" = (/obj/structure/filingcabinet,/obj/item/folder,/obj/item/folder,/turf/simulated/floor/tiled/dark,/area/chapel/office) -"meH" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"meJ" = (/turf/simulated/wall/r_wall/hull,/area/teleporter) -"meN" = (/obj/floor_decal/corner/black/mono,/obj/machinery/door/airlock/glass/civilian{dir = 4; name = "Commissary Counter"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"meO" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/structure/table/woodentable/walnut,/obj/machinery/light/spot,/obj/item/reagent_containers/food/drinks/glass2/coffeecup,/turf/simulated/floor/tiled,/area/space) -"meS" = (/obj/structure/hygiene/sink/kitchen{pixel_y = 24},/obj/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"meU" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"meX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"meY" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/status_light{id_tag = "ReacEng1"; name = "Deck Four Starboard status indicator"; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"meZ" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/computer/modular/preset/medical,/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"mfl" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"mfq" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"mfr" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine_room) -"mfs" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mfv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"mfx" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Research Equipment"; sort_type = "Research Equipment"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"mfF" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass/cut,/area/space) -"mfI" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mfJ" = (/obj/structure/cart{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"mfK" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/table/steel,/obj/machinery/button/blast_door{dir = 4; id_tag = "eng_lockdown_emg3"; name = "Emergency Exit Control"; pixel_x = -24; req_access = list("ACCESS_ENGINEERING")},/obj/structure/catwalk,/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"mfL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mfM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"mfP" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mfZ" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mgc" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"mge" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"mgg" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/techfloor,/area/space) -"mgy" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"mgz" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"mgE" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"mgK" = (/obj/structure/largecrate,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"mgL" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"mgW" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/storage,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mgX" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mhc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"mhi" = (/turf/simulated/wall/r_wall/hull,/area/crew_quarters/gym) -"mhn" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"mhx" = (/obj/machinery/suit_storage_unit/science,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/brown/border{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"mhF" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"mhK" = (/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"mhL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/flasher{id_tag = "security_perm_chamber_flash"; name = "Floor mounted flash"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"mhN" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/wood/yew,/area/space) -"mhS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"mhV" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"mib" = (/obj/structure/table/woodentable/walnut,/obj/item/reagent_containers/food/drinks/cans/speer,/turf/simulated/floor/grass/cut,/area/space) -"mih" = (/obj/structure/hygiene/shower,/obj/structure/window/basic{dir = 8},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"mik" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/machinery/meter,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"mip" = (/obj/machinery/door/window,/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"mit" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"miw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/floor_decal/techfloor{dir = 9},/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"miC" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_2_pump"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/grey/border{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"miI" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"miL" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"miM" = (/obj/floor_decal/corner/lime/border,/obj/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"miS" = (/obj/machinery/computer/modular/preset/engineering{dir = 4},/obj/machinery/status_light{alert_temperature = 340; id_tag = "BSDrive"; name = "Bluespace Drive status indicator"; pixel_x = -24},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"miW" = (/obj/structure/table/woodentable/ebony,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/structure/sign/poster/nyc/zeng_hu_pharmaceuticals{pixel_x = -32},/turf/simulated/floor/wood/mahogany,/area/space) -"miY" = (/obj/floor_decal/corner/paleblue,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"mjf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"mjk" = (/obj/structure/closet/crate/secure/biohazard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/shuttle/petrov/eva) -"mjB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mjE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"mjK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"mjM" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"mjY" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"mjZ" = (/obj/machinery/door/airlock/command{dir = 4; id_tag = "cmodoor"; name = "Chief Medical Officer"; secured_wires = 1; stripe_color = "#00e1ff"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/cmo) -"mkc" = (/obj/structure/curtain/open/shower,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"mkh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mkj" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{id_tag = "xenobio3"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"mkq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"mkt" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled/dark,/area/space) -"mku" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"mkE" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/space) -"mkQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"mkS" = (/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"mli" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/handrail,/turf/simulated/floor/airless,/area/space) -"mlr" = (/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2{dir = 6},/obj/structure/table/standard,/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/storage/secure/safe{pixel_x = 32},/turf/simulated/floor/carpet/blue2,/area/space) -"mls" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"mlu" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"mlH" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/storage,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"mlT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"mmh" = (/obj/structure/sign/warning/fire{dir = 1; pixel_y = -40},/obj/machinery/light/spot,/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mmm" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"mmt" = (/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mmx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"mmy" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/green/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/machinery/recharge_station,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "virology_access"; name = "Virology Lab Access Console"; pixel_y = -24; req_access = list("ACCESS_VIRO")},/turf/simulated/floor/tiled/white,/area/space) -"mmH" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/tiled,/area/space) -"mmJ" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mmK" = (/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) -"mmQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"mmR" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/thruster/d1starboard) -"mmZ" = (/obj/structure/table/woodentable/ebony,/obj/machinery/light{dir = 4},/obj/item/device/synthesized_instrument/violin,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/maple,/area/space) -"mnb" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"mnk" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood/bamboo,/area/space) -"mnp" = (/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1; tag_west = 8},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"mnv" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/hologram/holopad{pixel_x = 16},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mnx" = (/obj/structure/lattice,/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mnz" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/floor_decal/corner/green/three_quarters{dir = 1},/obj/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"mnH" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"mnN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{dir = 4; locked = 1},/obj/item/taperoll/engineering/applied,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"mnO" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/portable_atmospherics/reagent_sublimator/sauna,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/item/device/flashlight/lamp/lava/orange{pixel_x = -3; pixel_y = 15},/turf/simulated/floor/wood/ebony,/area/space) -"mnP" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mnV" = (/obj/catwalk_plated/dark,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"moh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mop" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/lino,/area/space) -"moz" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"moM" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/steel_grid,/area/space) -"moY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/door/window{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"mpe" = (/turf/simulated/wall/r_wall/hull,/area/engineering/atmos/storage) -"mpg" = (/obj/floor_decal/corner/black/three_quarters{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner2,/obj/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/space) -"mpq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mpw" = (/obj/structure/table/rack,/obj/item/screwdriver,/obj/item/crowbar,/obj/item/device/binoculars,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/techfloor,/area/space) -"mpx" = (/obj/machinery/door/blast/shutters{dir = 4; id_tag = "hangar_atmos_storage"; name = "Storage Shutters"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mpB" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mpE" = (/obj/machinery/vitals_monitor,/turf/simulated/floor/plating,/area/vacant/infirmary) -"mpK" = (/obj/floor_decal/corner/black/full,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"mpS" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "iaaleft"},/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"mpT" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/floor_decal/spline/plain/brown{dir = 8},/obj/structure/displaycase,/obj/item/gun/projectile/revolver/capgun,/turf/simulated/floor/wood/walnut,/area/space) -"mpU" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"mpV" = (/obj/floor_decal/borderfloor,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"mpY" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"mqc" = (/obj/floor_decal/corner/red,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mqd" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"mqj" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"mqs" = (/obj/machinery/washing_machine,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"mqx" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/cryopod{dir = 2},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"mqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"mqP" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; id = "h2_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/hydrogen,/area/engineering/atmos) -"mrg" = (/obj/structure/curtain/open/bed,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mrh" = (/obj/structure/table/woodentable/walnut,/obj/machinery/photocopier/faxmachine{department = "Captain"},/obj/machinery/recharger/wallcharger{pixel_y = 24},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/carpet/blue2,/area/space) -"mri" = (/turf/simulated/wall/r_wall/prepainted,/area/quartermaster/expedition) -"mrD" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/space) -"mrS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"mrY" = (/obj/floor_decal/corner/black/border{dir = 9},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"msd" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/space) -"mse" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"msg" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/white/monotile,/area/space) -"msj" = (/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"msl" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{name = "Guards' Equipment"},/turf/simulated/floor/tiled/monotile,/area/space) -"msn" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/floor_decal/techfloor{dir = 6},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"msq" = (/obj/decal/cleanable/dirt,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"msv" = (/obj/structure/catwalk,/obj/machinery/light/spot{dir = 4},/turf/simulated/open,/area/space) -"msw" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/bed/chair/padded/yellow{dir = 1},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/space) -"msz" = (/obj/decal/cleanable/dirt,/obj/machinery/crusher_base{icon_state = "rightcap"},/turf/simulated/floor/plating,/area/space) -"msE" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"msF" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{id_tag = "vir_blast_window"},/turf/simulated/floor/plating,/area/space) -"msI" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/self_destruct,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/light,/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"msN" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/obj/paint_stripe/blue,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"msZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"mtj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"mtt" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/space) -"mtC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"mtI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/space) -"mtJ" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "visiting_room_windows_shutters"; name = "Brig's visiting room shutters"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/prison) -"mtP" = (/obj/structure/closet/crate,/obj/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"mtQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"mtR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mtW" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"muc" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/spot,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mue" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mum" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"muo" = (/obj/item/shovel,/obj/item/shovel,/obj/item/pickaxe/xeno/hand,/obj/item/pickaxe/xeno/hand,/obj/item/device/scanner/mining,/obj/item/device/scanner/mining,/obj/item/storage/belt/utility/full,/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/storage/box/glowsticks,/turf/simulated/floor/tiled/techfloor,/area/space) -"muq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/b_green/border,/obj/machinery/conveyor_switch/oneway{id = "charon_cargo_out"; name = "charon interior conveyor switch"; pixel_x = 10; pixel_y = 15},/turf/simulated/floor/tiled,/area/space) -"muw" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"muB" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"muF" = (/obj/structure/bed/chair/padded/blue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"muI" = (/obj/floor_decal/techfloor{dir = 4},/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"muW" = (/obj/structure/table/woodentable/maple,/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 9},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"muX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"mvi" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_4_pump"},/obj/floor_decal/corner/grey/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mvn" = (/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/space) -"mvo" = (/obj/structure/bed/chair/shuttle{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "escape_pod_5_pump"},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"mvq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mvy" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/thruster/d1starboard) -"mvA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/corner/purple,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Hallway"},/turf/simulated/floor/tiled/white,/area/space) -"mvC" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"mvM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"mwe" = (/obj/machinery/disposal,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/directions/bridge{dir = 8; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"mwf" = (/obj/machinery/light/spot{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"mwi" = (/obj/structure/closet/crate,/obj/item/storage/toolbox/mechanical,/obj/random/powercell,/obj/random/powercell,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/rotating_alarm/security_alarm{dir = 8; pixel_x = 14},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"mwj" = (/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/centralport) -"mwo" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"mwx" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mwC" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/computer/modular/preset/cardslot/command,/obj/machinery/camera/all/command{c_tag = "AI Core - Starboard"},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"mwD" = (/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"mwF" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lightgrey/border{dir = 6},/turf/simulated/floor/tiled,/area/space) -"mwJ" = (/obj/machinery/light/small{dir = 1},/obj/decal/cleanable/cobweb2{dir = 4},/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mwN" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"mwQ" = (/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; name = "Recreation Area"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"mwS" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/chem_master,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mxc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"mxf" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay - Morgue - Autopsy"},/obj/structure/crematorium{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"mxg" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"mxj" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"mxo" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/engineering/fuelbay) -"mxv" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 10},/obj/structure/bed/chair/office/purple,/turf/simulated/floor/tiled/white,/area/rnd/office) -"mxA" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "td_port_inner"; name = "Third Deck Port Airlock Access"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mxC" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3starboard) -"mxD" = (/obj/machinery/photocopier,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 9},/obj/machinery/light/spot{dir = 8},/obj/item/storage/secure/safe{pixel_y = 28},/turf/simulated/floor/carpet/blue,/area/space) -"mxG" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/standard,/obj/item/material/ashtray/glass,/obj/item/storage/fancy/smokable/killthroat,/obj/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"mxK" = (/obj/structure/table/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/ablative,/obj/item/clothing/head/helmet/ablative,/obj/item/clothing/head/helmet/ablative,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharger/wallcharger{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/space) -"mxO" = (/obj/machinery/recharge_station,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "xenobotany_access"; name = "Xenobotany Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH")},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"mxP" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"mxS" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/command{name = "Bridge Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"myc" = (/obj/floor_decal/borderfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"myg" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/bridge) -"myh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"myn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/tcommsat/computer) -"myr" = (/obj/machinery/telecomms/bus/preset_one,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"myu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/button/blast_door{dir = 8; id_tag = "hangar_atmos_storage"; name = "Storage Door Control"; pixel_x = 24; req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP"))},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"myB" = (/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"myC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"myD" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"myN" = (/obj/structure/table/woodentable,/obj/item/storage/secure/briefcase,/obj/item/handcuffs,/obj/item/grenade/smokebomb,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"myS" = (/obj/structure/lattice,/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"myX" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/decal/cleanable/blood,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"mzc" = (/obj/structure/bed/sofa/l/brown{dir = 1},/obj/machinery/light,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood,/area/space) -"mze" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"mzk" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"mzp" = (/obj/structure/catwalk,/turf/simulated/wall/r_wall/hull,/area/space) -"mzt" = (/obj/structure/holoplant,/obj/machinery/camera/network/medbay{c_tag = "Infrimary - Hospital"; dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"mzu" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mzv" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"mzC" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/papershredder,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"mzF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction/mirrored{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"mzN" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/table/woodentable_reinforced/walnut,/obj/item/material/ashtray/bronze,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood/yew,/area/space) -"mzU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"mzV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"mzZ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"mAf" = (/obj/structure/table/rack,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/random/tool,/obj/random/tool,/obj/random/tool,/obj/item/flame/lighter/random,/turf/simulated/floor/tiled/monotile,/area/space) -"mAw" = (/obj/structure/closet/crate/freezer,/obj/random/mre,/obj/random/mre,/obj/random/mre,/obj/random/drinkbottle,/obj/random/snack,/obj/random/snack,/obj/random/snack,/obj/random/snack,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/cola,/obj/item/reagent_containers/food/drinks/cans/cola,/obj/item/reagent_containers/food/drinks/cans/sodawater,/obj/item/reagent_containers/food/drinks/cans/tonic,/obj/item/reagent_containers/food/drinks/cans/tonic,/obj/item/reagent_containers/food/drinks/cans/iced_tea,/obj/item/reagent_containers/food/drinks/milk,/obj/item/reagent_containers/food/drinks/small_milk_choc,/obj/item/reagent_containers/food/drinks/soymilk,/turf/simulated/floor/tiled/monotile,/area/vacant/cargo) -"mAx" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mAz" = (/obj/machinery/photocopier,/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 5},/obj/machinery/light/spot{dir = 4},/obj/item/storage/secure/safe{pixel_y = 28},/turf/simulated/floor/carpet/blue,/area/space) -"mAA" = (/obj/structure/flora/pottedplant/large,/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"mAC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"mAI" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"mAN" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/assembly/robotics) -"mAP" = (/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"mAV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"mAW" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"mBb" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/cmo) -"mBc" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"mBf" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_pub_hall"; name = "Infirmary Entry Shutters"},/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"mBg" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/recharger,/obj/machinery/newscaster{pixel_x = -28},/obj/structure/table/reinforced,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled,/area/holocontrol) -"mBj" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/storage/mirror{pixel_x = 24; pixel_y = 1},/turf/simulated/floor/tiled/freezer,/area/space) -"mBp" = (/obj/structure/table/standard,/obj/random/clipboard,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"mBr" = (/obj/structure/table/rack,/obj/random/toolbox,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftstarboard) -"mBz" = (/turf/simulated/wall/prepainted,/area/rnd/development) -"mBA" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/lino,/area/space) -"mBF" = (/obj/machinery/door/airlock/multi_tile/command{name = "Conference Room"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"mBG" = (/obj/structure/table/woodentable/maple,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/storage/box/donut,/turf/simulated/floor/tiled/white,/area/space) -"mCa" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"mCo" = (/obj/structure/table/steel,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mCr" = (/obj/structure/table/marble,/obj/item/book/manual/chef_recipes,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Kitchen - Distribution"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"mCs" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"mCt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mCD" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"mCP" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/structure/table/woodentable/walnut,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"mCS" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"mCU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"mDe" = (/obj/machinery/conveyor{dir = 1; id = "charon_cargo_in"; name = "charon external conveyor belt"},/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"mDg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"mDi" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "cChamber3pV"; name = "Chamber Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"mDk" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled,/area/space) -"mDl" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/techfloor,/area/space) -"mDy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"mDz" = (/obj/paint/black,/turf/simulated/wall/r_wall/prepainted,/area/turret_protected/ai) -"mDD" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"mDE" = (/obj/machinery/door/airlock/highsecurity{name = "Telecoms Storage"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{id_tag = "telecoms_s"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"mDF" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/obj/structure/bed/sofa/l/brown,/obj/machinery/vending/wallmed2{dir = 4; pixel_x = -23},/turf/simulated/floor/tiled,/area/space) -"mDG" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera/network/research{c_tag = "Research - Toxins"; dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"mDL" = (/obj/machinery/shieldgen,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"mDN" = (/obj/floor_decal/corner/black/border{dir = 8},/obj/floor_decal/corner/black/bordercorner,/obj/floor_decal/corner/black/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"mDS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mDV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"mDY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"mEd" = (/obj/random/ironing_board_structure,/obj/item/ironing_iron,/turf/simulated/floor/wood/walnut,/area/space) -"mEe" = (/obj/machinery/vending/engivend{dir = 1},/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mEk" = (/obj/catwalk_plated,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"mEl" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Third Deck Subgrid"; name_tag = "Third Deck Subgrid"},/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/apc/critical{name = "south bump"; pixel_y = -21},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"mEr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"mEt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/rotating_alarm/supermatter{dir = 8; pixel_x = 14},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"mEz" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "lobb_shutt"; opacity = 0},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"mEE" = (/obj/structure/bed/chair/office/comfy/red{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"mEP" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/space) -"mEX" = (/obj/structure/bed/chair/padded/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"mFj" = (/obj/machinery/door/window/southleft{id_tag = "hop_windows"; name = "HoP's Desk"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hop_shutters"; name = "HoP Desk's Shutters"; opacity = 0},/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 4},/turf/simulated/floor/plating,/area/space) -"mFl" = (/obj/structure/railing/mapped,/obj/decal/cleanable/cobweb2,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"mFo" = (/obj/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"mFq" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/security{dir = 4; name = "Interrogation"},/turf/simulated/floor/tiled/monotile,/area/space) -"mFv" = (/obj/machinery/papershredder,/obj/machinery/newscaster{pixel_x = 28},/obj/floor_decal/carpet/blue{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"mFw" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"mFy" = (/obj/structure/bed/chair/comfy/blue,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"mFG" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/closet/jcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"mFL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mFO" = (/obj/structure/table/woodentable/mahogany,/obj/item/material/ashtray/plastic{pixel_x = 5; pixel_y = 3},/obj/floor_decal/carpet/red{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/red,/area/space) -"mFR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/corner/brown/mono,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/monotile,/area/space) -"mGd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mGe" = (/obj/structure/ladder,/obj/structure/railing/mapped{dir = 4},/obj/catwalk_plated/dark,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"mGG" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/cell2) -"mGI" = (/obj/structure/ladder,/obj/structure/cable{d1 = 32; d2 = 8; icon_state = "32-8"},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/machinery/light/small,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"mGL" = (/obj/floor_decal/techfloor{dir = 9},/obj/floor_decal/techfloor/orange/corner,/obj/structure/window/boron_reinforced{dir = 8},/obj/structure/window/boron_reinforced{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mGP" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"mGV" = (/obj/floor_decal/techfloor{dir = 9},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"mGY" = (/obj/machinery/computer/modular/preset/civilian{dir = 8},/obj/machinery/light_switch{pixel_x = -10; pixel_y = -21},/obj/machinery/button/windowtint{id = "rcheckinner_windows"; pixel_x = 10; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"mHe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"mHf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/radiation,/turf/simulated/floor/plating,/area/space) -"mHg" = (/obj/structure/table/standard,/obj/item/towel/random,/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/item/towel/random,/obj/item/towel/random{pixel_x = -5; pixel_y = -4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"mHp" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"mHu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"mHS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mIg" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/structure/flora/pottedplant/large{pixel_y = 9},/obj/item/trash/chips{pixel_x = -12; pixel_y = 3},/turf/simulated/floor/wood/mahogany,/area/space) -"mIq" = (/obj/floor_decal/corner/red/border{dir = 5},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mIs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"mIF" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/security{c_tag = "Security - Sergeant"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mIL" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"mIO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mIT" = (/obj/machinery/r_n_d/server/robotics,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/alarm/server{dir = 1; pixel_y = -24},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bluegrid,/area/space) -"mIX" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mJj" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"mJq" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Mental Health"; sort_type = "Mental Health"},/obj/machinery/tele_beacon,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"mJt" = (/obj/machinery/telecomms/server/presets/command,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"mJw" = (/obj/structure/bed/padded,/obj/item/bedsheet/brown,/obj/structure/curtain/open/bed{anchored = 1},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/brown/border{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"mJy" = (/obj/structure/filingcabinet{pixel_x = -6},/obj/structure/filingcabinet{pixel_x = 5},/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"mJE" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/machinery/power/apc/super/critical{dir = 1; name = "north bump"; pixel_y = 24},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"mJM" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"mJQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/paint_stripe/red,/turf/simulated/wall/prepainted,/area/space) -"mJU" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mJV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/prepainted,/area/space) -"mJW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"mJZ" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"mKb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/space) -"mKd" = (/obj/structure/table/standard,/obj/random/donkpocket_box,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"mKh" = (/obj/floor_decal/spline/fancy/black,/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass/cut,/area/space) -"mKo" = (/obj/structure/sign/poster{pixel_y = 32},/obj/machinery/newscaster{pixel_x = 28},/obj/item/stack/material/wood/walnut{amount = 2},/turf/simulated/floor/carpet,/area/space) -"mKp" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/wood/walnut,/area/space) -"mKA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"mKG" = (/obj/floor_decal/spline/fancy/wood,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood/ebony,/area/space) -"mKZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/handrail{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mLa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"mLb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"mLn" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mLr" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "sd_starboard_outer"; name = "Second Deck Port Airlock"},/obj/machinery/access_button/airlock_exterior{dir = 1; master_tag = "sd_starboard"; name = "exterior access button"; pixel_x = 24; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"mLz" = (/obj/floor_decal/corner/black/mono,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"mLQ" = (/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 8},/obj/machinery/door/window/northleft{name = "Chemisty Desk"},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters/open{id_tag = "chemistry_lockdown"; name = "Chemistry Shutters"},/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/medical/chemistry) -"mLR" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"mMg" = (/obj/structure/table/steel_reinforced,/obj/item/folder/yellow,/obj/item/folder/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mMm" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white/monotile,/area/medical/chemistry) -"mMs" = (/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"mMx" = (/obj/structure/stairs/west,/obj/structure/sign/directions/security{dir = 8; pixel_y = 24},/obj/structure/sign/directions/infirmary{dir = 8; pixel_y = 31},/obj/structure/railing/mapped,/turf/simulated/floor/tiled,/area/space) -"mMA" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"mMI" = (/obj/structure/closet/emcloset,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Fore Hallway"; dir = 8},/turf/simulated/floor/tiled,/area/security/brig) -"mMJ" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"mMK" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"mMN" = (/obj/structure/table/woodentable/walnut,/obj/item/clothing/mask/gas/mime,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/wood/ebony,/area/space) -"mMR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/stasis_cage,/turf/simulated/floor/reinforced,/area/space) -"mMT" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"mMW" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/light_switch{pixel_x = -24; pixel_y = 12},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/vending/phoronresearch{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"mNf" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/machinery/computer/air_control{dir = 1; input_tag = "fuel2p_in"; name = "Fuel Supply Control"; output_tag = "fuel2p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngPlasma2"},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"mNg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"mNi" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/corner/yellow/mono,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"mNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"mNs" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"mNv" = (/obj/item/grenade/chem_grenade/cleaner,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mNz" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mNF" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mNG" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"mNJ" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"mNS" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "bo_windows"},/turf/simulated/floor/plating,/area/space) -"mNV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/turf/simulated/floor/tiled,/area/space) -"mOa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"mOc" = (/obj/machinery/flasher{id_tag = "security_second_cell_flash"; name = "Floor mounted flash"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mOl" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/space) -"mOq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"mOt" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mOx" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"mOK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"mOR" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"mOZ" = (/obj/machinery/floodlight,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mPm" = (/obj/structure/table/woodentable_reinforced/ebony,/turf/simulated/floor/carpet/red,/area/space) -"mPp" = (/obj/machinery/atmospherics/binary/pump,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"mPs" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4},/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"mPt" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"mPu" = (/obj/structure/bed/sofa/l/beige{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/wood/ebony,/area/space) -"mPv" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/structure/bed/sofa/m/brown{dir = 8},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Dock Bay - Starboard One"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"mPA" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"mPD" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"mPI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/red/bordercorner{dir = 4},/obj/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mPS" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"mPX" = (/obj/structure/bed/sofa/l/blue{dir = 8},/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"mPZ" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mQf" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Bridge Port"},/turf/simulated/floor/plating,/area/space) -"mQg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/grey/three_quarters,/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"mQl" = (/obj/machinery/requests_console{department = "Research"; departmentType = 3; name = "Research RC"; pixel_y = 30},/obj/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mQn" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/handrail{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mQt" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"mQI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled,/area/space) -"mQJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"mQK" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"mQL" = (/obj/floor_decal/borderfloorblack,/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/space) -"mQV" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"mRe" = (/obj/structure/stairs/west,/obj/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mRk" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"mRo" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/outline/grey,/obj/floor_decal/steeldecal/steel_decals_central6,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4; name = "supply valve to Hangar backup"},/turf/simulated/floor/tiled/techfloor,/area/space) -"mRr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/space) -"mRs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"mRt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/floor_decal/industrial/warning,/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mRL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftstarboard) -"mRM" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/structure/curtain/medical,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mRP" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"mRQ" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"mRS" = (/obj/structure/table/standard,/obj/item/wheelchair_kit,/obj/item/wheelchair_kit{pixel_y = 9},/obj/item/wheelchair_kit{pixel_x = -4; pixel_y = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"mSf" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/tiled,/area/space) -"mSi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"mSl" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"mSv" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"mSx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"mSy" = (/obj/structure/catwalk,/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mSA" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"mSM" = (/obj/machinery/door/window/brigdoor/westleft{autoset_access = 0; dir = 2; id_tag = "cap_room_window"; req_access = list("ACCESS_CAPTAIN")},/obj/floor_decal/carpet/blue,/turf/simulated/floor/carpet/blue,/area/space) -"mSU" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 15000},/obj/machinery/button/ignition{dir = 1; id_tag = "engines-1"; pixel_y = -34},/obj/machinery/button/blast_door{dir = 1; id_tag = "d1portnacelle"; name = "Combustion Chamber Blast Door Control"; pixel_x = -8; pixel_y = -24},/obj/machinery/button/blast_door{dir = 1; id_tag = "cChamber1pV"; name = "Third Deck Starboard Chamber Vent"; pixel_x = 8; pixel_y = -24},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"mSW" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"mSX" = (/obj/structure/table/standard,/obj/item/material/clipboard{pixel_x = -3; pixel_y = -3},/obj/item/folder/yellow{pixel_x = -2; pixel_y = -3},/obj/item/pen{pixel_y = 7},/obj/item/pen/red{pixel_x = -2; pixel_y = 9},/obj/item/sticky_pad/random{pixel_x = 9; pixel_y = -4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"mSZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"mTl" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"mTB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/space) -"mTF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"mTI" = (/turf/simulated/floor/greengrid,/area/space) -"mTY" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"mUc" = (/obj/structure/table/woodentable,/obj/item/storage/fancy/smokable/killthroat,/obj/item/storage/fancy/smokable/luckystars,/obj/item/flame/lighter/zippo,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"mUf" = (/obj/structure/window/reinforced{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mUi" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/camera/network/command{c_tag = "Command - AI Upload"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/computer/modular/preset/aislot/sysadmin,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"mUm" = (/obj/decal/cleanable/dirt,/obj/structure/table/woodentable,/obj/item/dice/d20,/obj/item/dice,/obj/item/dice/d12,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"mUp" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"mUq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"mUJ" = (/obj/fluid_mapped,/obj/item/clothing/under/shorts/blue,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"mUL" = (/turf/simulated/wall/prepainted,/area/crew_quarters/laundry) -"mUM" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"mUO" = (/obj/floor_decal/corner/black/full,/obj/structure/closet/cabinet,/obj/machinery/light{dir = 8},/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/dark,/area/space) -"mUQ" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 9},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"mVa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"mVb" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/obstruction,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"mVd" = (/obj/floor_decal/spline/plain/black{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mVh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"mVr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"mVw" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"mVC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"mVF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"mWa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"mWg" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Kitchen - Stewards"},/turf/simulated/floor/tiled/dark,/area/space) -"mWv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/sofa/m/beige{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"mWw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"mWA" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/handrail{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"mXa" = (/obj/floor_decal/spline/fancy/black{dir = 6},/obj/structure/bed/sofa/r/brown{dir = 8},/obj/landmark/start,/turf/simulated/floor/wood/mahogany,/area/space) -"mXd" = (/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"mXf" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/standard,/obj/item/folder/nt,/obj/item/folder/white{pixel_x = 3; pixel_y = 6},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mXk" = (/obj/structure/lattice,/obj/structure/grille,/turf/simulated/open,/area/space) -"mXm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"mXn" = (/obj/machinery/constructable_frame/machine_frame,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"mXx" = (/obj/structure/adherent_bath,/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"mXP" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mXR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/rack,/obj/random/tool,/obj/random/tool{pixel_x = 7; pixel_y = -6},/obj/random/tank{pixel_x = -7; pixel_y = -3},/obj/random/tech_supply{pixel_x = 8; pixel_y = 11},/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"mXT" = (/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"mYa" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/structure/noticeboard{dir = 4; pixel_x = -32},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"mYo" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/disposal,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"mYq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/research{dir = 8; name = "Xenobiology Atmospherics"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"mYt" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/tiled/white,/area/space) -"mYA" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mYD" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"mYF" = (/obj/floor_decal/corner/black/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"mYI" = (/obj/machinery/computer/modular/preset/security{dir = 1},/obj/floor_decal/corner/red/half{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"mYK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/chapel/main) -"mYL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"mYM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/space) -"mYP" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/status_display{pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"mYR" = (/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = 20},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"mYT" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"mYW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"mYX" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"mZa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mZk" = (/obj/structure/table/glass,/obj/floor_decal/corner/yellow/mono,/obj/machinery/recharger,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"mZn" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/floor_decal/borderfloorwhite{dir = 5},/obj/floor_decal/corner/blue/border{dir = 5},/obj/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"mZt" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/aftstarboard) -"mZx" = (/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"mZA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"mZD" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/critical{dir = 8; name = "west bump"; pixel_x = -21},/turf/simulated/floor/tiled/techfloor,/area/space) -"mZE" = (/obj/random/trash,/obj/item/roller_bed{pixel_y = 16},/obj/random/medical,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"mZF" = (/obj/machinery/smartfridge{opacity = 1},/obj/machinery/door/firedoor,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"mZV" = (/obj/structure/table/woodentable/walnut,/obj/item/modular_computer/tablet/lease/preset/command,/obj/machinery/button/windowtint{id = "cap_room_window"; pixel_y = 24},/obj/floor_decal/carpet/blue{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet/blue,/area/space) -"mZX" = (/obj/structure/fitness/punchingbag,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"mZY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"nab" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"nae" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftport) -"nah" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/space) -"nai" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"nam" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/chemical_dispenser,/turf/simulated/floor/tiled/white,/area/space) -"nan" = (/obj/structure/catwalk,/obj/machinery/airlock_sensor{id_tag = "ai_starboard_sensor"; master_tag = "solar_starboard"; pixel_x = 10; pixel_y = 27},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "ai_starboard"; pixel_x = -5; pixel_y = 21; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/atmospherics/unary/vent_pump{id_tag = "ai_starboard_pump"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"nap" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/access_button/airlock_exterior{master_tag = "solar_starboard"; name = "exterior access button"; pixel_x = -12; pixel_y = -19; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/turf/simulated/floor/airless,/area/space) -"nar" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/engineering{dir = 8; name = "Third Deck Substation"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/thirddeck) -"naC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch{name = "Bridge Wardroom Maintenance"; secured_wires = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"naG" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"naJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"naT" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"nba" = (/obj/structure/railing/mapped,/obj/machinery/barrier,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"nbf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"nbg" = (/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"nbi" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"nbj" = (/obj/machinery/photocopier,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"nbr" = (/obj/floor_decal/corner/red/mono,/obj/structure/table/glass,/obj/machinery/recharger,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"nbB" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"nbD" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2,/turf/simulated/floor/tiled/dark,/area/space) -"nbG" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/rnd/development) -"nbJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"nbP" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"nbT" = (/obj/structure/table/standard,/obj/item/storage/box/lights/led_neon,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/corner/green{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"nbW" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nch" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/space) -"ncm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/shuttle_landmark/petrov/start,/turf/simulated/floor/tiled/white,/area/space) -"ncx" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/wood/mahogany,/area/space) -"ncz" = (/obj/random/closet,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"ncG" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"ncM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"ncQ" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Central Hallway"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"ncR" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_wall/prepainted,/area/space) -"ndf" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ndi" = (/obj/machinery/light/spot{dir = 4},/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/black/mono,/obj/item/folder,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"ndj" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/window/reinforced,/obj/item/paper_bin{pixel_x = -4; pixel_y = 4},/obj/item/pen{pixel_x = -4; pixel_y = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"ndq" = (/obj/machinery/power/emitter{anchored = 1; dir = 4; id_tag = "EngineEmitter"; state = 2},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"ndt" = (/obj/machinery/constructable_frame/computerframe{dir = 4},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"ndv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{dir = 4; name = "Security Maintenance"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"ndx" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"ndy" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/computer/air_control{dir = 8; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensor_name = "Tank"; sensor_tag = "o2_sensor"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ndG" = (/obj/structure/bed/chair/shuttle,/obj/machinery/status_display{pixel_x = 32},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"neg" = (/obj/shuttle_landmark/ert/deck5,/turf/space,/area/space) -"nel" = (/obj/structure/hygiene/shower{pixel_y = 15},/obj/machinery/door/window,/obj/structure/window/basic{dir = 4},/obj/structure/hygiene/drain/bath,/obj/structure/closet/walllocker{pixel_x = -28},/obj/random/soap,/obj/item/towel/fleece,/turf/simulated/floor/tiled/freezer,/area/space) -"neC" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"neE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/sleeper,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"neK" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"neL" = (/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"neP" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "civsafedoorport"; name = "safe room door-control"; pixel_x = -21},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"neR" = (/obj/floor_decal/techfloor/orange{dir = 10},/obj/machinery/light/spot,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"nfe" = (/obj/structure/curtain/black,/obj/structure/wall_frame,/obj/structure/grille,/turf/simulated/floor/plating,/area/vacant/cargo) -"nfl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"nfn" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/ocp_wall,/area/space) -"nfo" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"nfq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nfr" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/device/flash,/obj/item/device/flashlight,/obj/item/storage/secure/safe{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/gun/energy/gun/small/secure,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nfJ" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"nfK" = (/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/b_green/border,/obj/structure/bed/chair/shuttle/green{dir = 1},/turf/simulated/floor/tiled,/area/space) -"nfL" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"nfV" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"nga" = (/turf/simulated/wall/prepainted,/area/maintenance/substation/thirddeck) -"ngg" = (/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ngh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ngm" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/access_button/airlock_exterior{master_tag = "solar_bridge_airlock"; pixel_x = -26; pixel_y = 24},/turf/simulated/floor,/area/space) -"ngE" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/sign/directions/science{dir = 4; pixel_y = 24},/obj/structure/sign/directions/infirmary{dir = 4; pixel_y = 31},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"ngG" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"ngK" = (/turf/simulated/wall/prepainted,/area/maintenance/seconddeck/foreport) -"ngL" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/bed/sofa/m/brown,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) -"ngO" = (/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/floor_decal/corner/lime/bordercorner,/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ngU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"ngV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"nhh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"nhq" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/engineering/engine_room) -"nht" = (/obj/machinery/light,/obj/machinery/telecomms/hub/preset,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"nhv" = (/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"nhx" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/catwalk,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"nhE" = (/obj/structure/hygiene/shower{dir = 8},/obj/decal/cleanable/dirt,/obj/structure/window/reinforced{dir = 1},/obj/structure/curtain/open/shower,/obj/decal/cleanable/cobweb{dir = 1},/obj/decal/cleanable/dirt,/obj/item/camera_assembly,/turf/simulated/floor/tiled/freezer,/area/space) -"nhI" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"nhU" = (/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/medical) -"nhX" = (/obj/machinery/door/airlock/civilian{autoset_access = 0; name = "Theatre"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nib" = (/obj/structure/bed/chair/office/purple,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"nic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"nig" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/glass,/obj/floor_decal/spline/fancy/black{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"nim" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"nit" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"niz" = (/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1; tag_west = 8},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"niA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"niF" = (/obj/machinery/conveyor{dir = 8; id = "packageSort1"},/turf/simulated/floor/plating,/area/space) -"niH" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"niN" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"niO" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/obj/machinery/portable_atmospherics/canister,/obj/machinery/alarm{pixel_y = 24},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"niY" = (/obj/structure/iv_stand,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled/white/monotile,/area/space) -"njb" = (/obj/machinery/space_heater,/obj/item/screwdriver,/turf/simulated/floor/plating,/area/space) -"njl" = (/obj/structure/bed/chair/armchair/beige{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"njz" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/black/mono,/obj/item/folder,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"njA" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/research{dir = 4; name = "Locker Room"; req_access = newlist()},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"njE" = (/obj/structure/table/steel,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/space) -"njG" = (/obj/machinery/door/window/brigdoor/westleft{autoset_access = 0; dir = 4; id_tag = "cap_room_window"; req_access = list("ACCESS_CAPTAIN")},/obj/floor_decal/carpet/blue{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/blue,/area/space) -"njH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"njJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"njQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"njV" = (/obj/structure/table/standard,/obj/random/firstaid,/obj/machinery/light/small/emergency{dir = 4},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/space) -"njY" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/quartermaster/expedition/eva) -"nkf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"nkh" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/space) -"nkj" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"nkr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 4},/obj/structure/sign/warning/pods/south{dir = 8; pixel_x = 32},/obj/floor_decal/borderfloorblack/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"nkv" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"nkB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"nkC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"nkG" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"nkL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"nkP" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"nkV" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nkW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/storage/primary) -"nlc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Research Experimental"; sort_type = "Research Experimental"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"nlk" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"nlm" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"nlo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nlq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/floor_decal/corner/red,/obj/machinery/button/blast_door{dir = 8; id_tag = "security_permabrig_third_cell_shutters"; name = "3d Cell Shutters"; pixel_x = 21; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/flasher{dir = 8; id_tag = "security_third_cell_flash"; pixel_x = 22; pixel_y = -9; req_access = list("ACCESS_SECURITY")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nlt" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"nlv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/techfloor{dir = 6},/obj/structure/holoplant,/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"nlx" = (/obj/structure/table/standard,/obj/floor_decal/corner/paleblue,/obj/structure/flora/pottedplant/smallcactus{pixel_x = -5; pixel_y = 9},/obj/machinery/light_construct{dir = 8},/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"nlA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nlC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"nlI" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 4},/turf/simulated/wall/titanium,/area/guppy_hangar/start) -"nlJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nlQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass/cut,/area/space) -"nlS" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"nlW" = (/obj/machinery/sleeper/survival_pod{dir = 4},/obj/structure/sign/emergonly{dir = 4; pixel_x = -32},/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/directions/med{pixel_y = 32},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"nlX" = (/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"nmb" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"nmf" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nmj" = (/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) -"nms" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/stasis_cage,/turf/simulated/floor/reinforced,/area/space) -"nmu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"nmN" = (/obj/structure/ladder,/obj/structure/railing/mapped{dir = 4},/obj/structure/lattice,/turf/simulated/open,/area/space) -"nmP" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"nmS" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) -"nmT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/grey{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"nmW" = (/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/bed/chair/padded/purple{dir = 8},/turf/simulated/floor/tiled,/area/space) -"nnf" = (/obj/floor_decal/spline/fancy/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/chapel/main) -"nnH" = (/obj/structure/cable/yellow,/obj/machinery/power/solar{id = "auxsolarsbridge"; name = "Bridge Auxiliary Solar Array"},/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"nnI" = (/obj/machinery/door/firedoor,/obj/machinery/conveyor{dir = 8; id = "bsa"},/obj/structure/plasticflaps/airtight,/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "bsa_space"; name = "Unknown Compartament Shell Loader"; opacity = 0},/turf/simulated/floor/reinforced,/area/space) -"nnJ" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"nnP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"nnQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"nnR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"nnY" = (/obj/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/reinforced,/area/space) -"noa" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/plushie,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"noj" = (/obj/structure/sign/warning/airlock{dir = 8},/turf/simulated/wall/r_wall/hull,/area/space) -"non" = (/obj/machinery/camera/network/command{c_tag = "Command - Central Hallway"; dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"nop" = (/obj/shuttle_landmark/ninja/deck2,/turf/space,/area/space) -"nor" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"nos" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"not" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/foreport) -"noF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"noH" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/cooker/grill,/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 9},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"noS" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/blue,/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/obj/machinery/camera/network/petrov{c_tag = "Petrov - Toxins"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"noV" = (/obj/machinery/camera/network/petrov{c_tag = "Petrov - Airlock"; dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"noY" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"npb" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; name = "Recreation Area"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/space) -"npf" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"npl" = (/obj/floor_decal/corner/yellow/half,/obj/structure/reagent_dispensers/water_cooler{dir = 1},/turf/simulated/floor/tiled,/area/space) -"npu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"npy" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"npA" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"npC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/assembly/robotics) -"npE" = (/obj/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"npK" = (/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"npL" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{dir = 1; id_tag = "misclab"; name = "Test Chamber Blast Doors"; pixel_x = 4; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/ignition{id_tag = "Xenobio"; pixel_x = -6},/obj/item/wrench,/turf/simulated/floor/tiled/steel_grid,/area/space) -"npU" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"npY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"nqm" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/grey/border{dir = 1},/obj/structure/table/woodentable/walnut,/obj/item/material/ashtray/bronze,/turf/simulated/floor/wood/walnut,/area/space) -"nqp" = (/obj/machinery/suit_cycler/mining,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"nqq" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 8; id_tag = "EngineRadiatorViewport"; name = "Engine Radiator Shutters"},/obj/wallframe_spawn/reinforced/hull,/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/plating,/area/engineering/engine_room) -"nqx" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 4},/turf/simulated/floor/tiled,/area/space) -"nqy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{dir = 4; name = "Steward's Room"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nqB" = (/obj/item/stool/padded,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"nqC" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/sticky_pad/random,/obj/structure/table/glass/boron,/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"nqE" = (/obj/structure/sign/warning/radioactive{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"nqH" = (/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/structure/window/boron_reinforced{dir = 1},/obj/structure/window/boron_reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nqK" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{controlled = 0; dir = 1; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000; pressure_checks = 2; pressure_checks_default = 2; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d1port) -"nqM" = (/obj/structure/bed/chair/padded/blue{dir = 8},/turf/simulated/floor/tiled,/area/space) -"nqO" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"nqW" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/table/steel,/obj/random/technology_scanner,/obj/item/contraband/poster,/obj/item/contraband/poster,/obj/item/contraband/poster,/obj/item/contraband/poster,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"nrb" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/table/glass,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"nrg" = (/obj/structure/lattice,/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nrk" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/crew_quarters/laundry) -"nrm" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nrt" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"nrA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark,/area/space) -"nrC" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; display_name = "Port Dock C"; frequency = 1331; id_tag = "rescue_shuttle_dock_airlock"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"nrG" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"nrI" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nrJ" = (/obj/structure/bed/chair/wood/walnut{dir = 1},/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 5},/obj/floor_decal/carpet/purple{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"nrK" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"nrN" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nrO" = (/obj/structure/closet/secure_closet{name = "Secure Evidence Locker"; req_access = list("ACCESS_SECURITY")},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/space) -"nrW" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"nsa" = (/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"nsb" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "solar_starboard_pump"},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"nsd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/bluegrid,/area/space) -"nsf" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/light,/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"nsl" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"nsm" = (/obj/floor_decal/techfloor{dir = 10},/obj/random/vendor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"nsA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Cell One"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nsB" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"nsD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"nsI" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/westleft{autoset_access = 0; dir = 2; name = "Medical Reception"; req_access = list("ACCESS_SENMED")},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nsS" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/turf/simulated/floor/tiled/white/monotile,/area/space) -"nsT" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"nsU" = (/obj/structure/table/rack,/obj/item/storage/box/bodybags,/obj/item/storage/box/bodybags,/obj/floor_decal/industrial/outline/blue,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"ntg" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/modular/preset/civilian,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"ntv" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/artbru,/obj/item/reagent_containers/food/drinks/cans/artbru,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/storage/box/glasses/square,/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/ebony,/area/space) -"ntz" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"ntA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ntB" = (/obj/structure/table/steel,/obj/machinery/recharger,/obj/floor_decal/techfloor{dir = 5},/turf/simulated/wall/r_wall/prepainted,/area/vacant/monitoring) -"ntL" = (/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"ntW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"ntX" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/grey,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"ntZ" = (/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"nuc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"nuj" = (/obj/machinery/computer/ship/helm,/turf/simulated/floor/plating,/area/space) -"nul" = (/obj/floor_decal/corner/red,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Chief Steward"; sort_type = "Chief Steward"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/space) -"nun" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/spot,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nuC" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/space) -"nuD" = (/obj/item/rpd,/turf/simulated/floor/reinforced,/area/space) -"nuE" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"nuJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"nuQ" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/floor_decal/corner/black/half{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"nvi" = (/obj/floor_decal/industrial/traffic/corner,/obj/floor_decal/corner/black/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nvk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"nvl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "containment_out"; initialize_directions = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/space) -"nvp" = (/obj/floor_decal/industrial/warning/cee,/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; display_name = "Second Deck Auxillary Dock"; id_tag = "sd_starboard"; name = "Second Deck Starboard Airlock Controller"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"nvx" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"nvy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"nvC" = (/obj/floor_decal/corner/black/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nvI" = (/obj/shuttle_landmark/ninja/deck4,/turf/space,/area/space) -"nvP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/tiled/white,/area/space) -"nvR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"nvV" = (/obj/machinery/sparker{id_tag = "Isocell2"; pixel_x = -18},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"nvX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"nvZ" = (/obj/machinery/door/airlock/engineering{name = "Shield Generator"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor,/area/space) -"nwe" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"nwj" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"nwk" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/table/steel_reinforced,/obj/machinery/microwave{pixel_y = 5},/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"nwl" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"nwm" = (/obj/machinery/computer/telecomms/server{dir = 4},/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"nwn" = (/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/foreport) -"nwt" = (/obj/structure/table/woodentable/walnut,/obj/random/action_figure,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/space) -"nwu" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"nww" = (/obj/machinery/space_heater,/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/forestarboard) -"nwB" = (/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nwE" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"nwG" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"nwH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"nwJ" = (/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark,/area/space) -"nwZ" = (/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"nxq" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"nxs" = (/obj/floor_decal/corner/red,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nxu" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"nxx" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/vending/cigarette{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nxy" = (/obj/structure/table/woodentable/maple,/obj/item/paper_bin,/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom/locked/confessional{dir = 4; pixel_x = -24},/obj/item/pen,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 9},/obj/floor_decal/carpet/purple{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"nxF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"nxI" = (/turf/simulated/floor/reinforced{map_airless = 1},/area/maintenance/firstdeck/foreport) -"nxJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nxM" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/port) -"nxN" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/item/modular_computer/telescreen/preset/generic{pixel_x = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"nxP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"nxU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/structure/sign/warning/pods/south{dir = 4; pixel_x = -32},/obj/floor_decal/borderfloorblack/corner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"nxX" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/floor_decal/industrial/warning,/obj/machinery/light{dir = 8},/obj/structure/table/standard,/obj/item/hand_labeler,/obj/item/stack/package_wrap/gift_wrap,/turf/simulated/floor/tiled/dark,/area/space) -"nys" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"nyu" = (/obj/machinery/conveyor{dir = 8; id = "packageSort1"},/obj/structure/plasticflaps/airtight,/turf/simulated/floor/plating,/area/space) -"nyw" = (/obj/floor_decal/techfloor{dir = 6},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/tiled/techfloor,/area/space) -"nyA" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 8},/obj/floor_decal/industrial/hatch/blue,/obj/machinery/washing_machine{pixel_y = 19},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"nyL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"nyP" = (/obj/floor_decal/corner/paleblue/full,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"nyQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/bluegrid,/area/space) -"nyY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"nyZ" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"nza" = (/obj/structure/railing/mapped,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nzu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"nzv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"nzL" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nzU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"nzV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nzX" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/green/border{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/green/bordercorner2,/obj/floor_decal/corner/green/bordercorner2{dir = 6},/obj/decal/cleanable/dirt,/obj/item/camera_assembly,/turf/simulated/floor/tiled/white,/area/space) -"nAg" = (/obj/machinery/computer/ship/navigation{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nAk" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -24},/obj/machinery/button/alternate/door/bolts{dir = 1; id_tag = "old_maintaince_privatedorm"; name = "Lock"; pixel_x = -2; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"nAC" = (/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"nAD" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/bed/chair/padded/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/space) -"nAF" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"nAL" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3starboard) -"nAO" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes/farwacubes,/obj/item/storage/box/monkeycubes/neaeracubes,/obj/item/storage/box/monkeycubes/stokcubes,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers,/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"nBj" = (/obj/structure/table/woodentable,/obj/machinery/microwave{pixel_y = 12},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/space) -"nBp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nBy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nBH" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nBI" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"nBS" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"nBW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular{dir = 4; id_tag = "selfdestruct"; name = "Delta Code Access Blast Door"},/obj/machinery/button/blast_door{id_tag = "selfdestruct"; name = "Self Destruct Access Blast Door Control"; pixel_y = 32},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"nCh" = (/obj/floor_decal/corner/black{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/table/standard,/obj/item/device/radio/phone/medbay,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"nCk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"nCl" = (/obj/structure/table/standard,/obj/item/storage/box/beakers/insulated,/obj/item/reagent_containers/glass/beaker/large,/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/purple/border{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"nCx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nCA" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"nCE" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nCI" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/foreport) -"nCK" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"nCN" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"nCP" = (/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_permabrig_fitst_cell_shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"nDi" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"nDj" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"nDl" = (/obj/structure/table/rack,/obj/machinery/button/blast_door{dir = 1; id_tag = "telecoms_s"; name = "Telecoms Blast Door"; pixel_y = -22},/obj/item/stock_parts/circuitboard/ntnet_relay,/obj/item/stock_parts/circuitboard/telecomms/broadcaster,/obj/item/stock_parts/circuitboard/telecomms/bus,/obj/item/stock_parts/circuitboard/telecomms/bus,/obj/item/stock_parts/circuitboard/telecomms/server,/obj/item/stock_parts/circuitboard/telecomms/server,/obj/item/stock_parts/circuitboard/telecomms/receiver,/obj/item/stock_parts/circuitboard/telecomms/processor,/obj/item/stock_parts/circuitboard/telecomms/processor,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"nDt" = (/obj/machinery/button/alternate/door/bolts{id_tag = "medsafe_aft"; name = "safe room door-control"; pixel_y = 32},/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/structure/bed/chair/padded/blue{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"nDA" = (/obj/item/ladder_mobile,/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/space) -"nDB" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "ai_starboard_outer"; name = "Engineering External Access"},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"nDC" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/space) -"nDE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/white,/area/space) -"nDN" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "CO23p_out"; initialize_directions = 1; internal_pressure_bound = 1000; internal_pressure_bound_default = 1000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1starboard) -"nDP" = (/obj/structure/table/standard,/obj/item/rolled_towel/fitness,/obj/item/rolled_towel/fitness,/obj/item/rolled_towel/fitness,/obj/item/wrench,/obj/item/stack/medical/bruise_pack,/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/light{dir = 4},/obj/floor_decal/corner/black/three_quarters{dir = 1},/obj/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"nEo" = (/obj/structure/largecrate,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"nEt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"nEu" = (/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"nEx" = (/obj/random/closet,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"nEy" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nEz" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/black/border,/turf/simulated/floor/tiled/dark,/area/space) -"nEZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"nFc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"nFk" = (/obj/floor_decal/corner/black/mono,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"nFl" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/waterstore) -"nFm" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/port) -"nFp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nFK" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/space_heater/stationary/on{pixel_y = 30; set_temperature = 348.15},/obj/structure/bed/sauna_bench/middle/north,/turf/simulated/floor/wood/ebony,/area/space) -"nFM" = (/obj/floor_decal/carpet/purple{dir = 4},/turf/simulated/floor/carpet/purple,/area/space) -"nGc" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/table/rack,/obj/item/stack/material/glass{amount = 30},/obj/item/stack/material/glass{amount = 30},/obj/item/stack/material/glass/fifty,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"nGe" = (/turf/simulated/wall/titanium,/area/space) -"nGi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"nGl" = (/obj/floor_decal/borderfloorblack/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"nGm" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nGo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"nGt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/space) -"nGx" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/shuttle/petrov/equipment) -"nGI" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/space) -"nGO" = (/obj/machinery/light/spot,/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"nGT" = (/obj/structure/table/standard,/obj/floor_decal/borderfloorwhite{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/item/reagent_containers/food/snacks/candy/donor{pixel_y = 5},/obj/item/reagent_containers/food/snacks/candy/donor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"nGU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/power/tracker,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/reinforced,/area/space) -"nHd" = (/obj/structure/closet/secure_closet/personal/patient,/obj/random/maintenance,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"nHg" = (/obj/structure/closet/crate/freezer/rations,/obj/item/storage/firstaid/stab,/obj/random/medical/lite,/obj/random/medical/lite,/obj/random/medical/lite,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/storage/mirror{dir = 8; pixel_x = -1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nHi" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nHz" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"nHD" = (/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nHF" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nHI" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"nHJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nHR" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/outlet_injector{id = "CO24p_in"; injecting = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1port) -"nHX" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/space) -"nHZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"nIa" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"nIf" = (/obj/structure/table/woodentable/walnut,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_y = -4},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = -5; pixel_y = 4},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = 8; pixel_y = 6},/obj/machinery/light,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"nIk" = (/obj/machinery/tele_beacon,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/storage/primary) -"nIo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nIu" = (/obj/machinery/reagentgrinder,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"nIx" = (/obj/machinery/door/airlock/glass/security{dir = 4; id_tag = "detdoor"; name = "Long Term Checkpoint"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"nIB" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/forestarboard) -"nIK" = (/obj/machinery/door/airlock/maintenance{req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"nIN" = (/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/floodlight{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"nIS" = (/obj/floor_decal/corner/black/full,/obj/machinery/photocopier,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/turf/simulated/floor/tiled/dark,/area/space) -"nJe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/random/ironing_board_structure,/obj/machinery/light{dir = 4},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"nJl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nJm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"nJn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance/bolted{autoset_access = 0; id_tag = "sauna_maint"; name = "Sauna Maintenance"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nJr" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/bordercorner,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"nJJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"nJX" = (/obj/floor_decal/corner/purple/three_quarters{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"nKb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"nKd" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; output_attempt = 1},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"nKk" = (/obj/structure/table/standard,/obj/item/crowbar,/obj/item/flame/lighter/random,/obj/item/melee/baton/loaded,/obj/item/screwdriver{pixel_y = 15},/turf/simulated/floor/tiled/white,/area/space) -"nKn" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/corner/orange/diagonal,/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"nKo" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"nKq" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 9},/obj/machinery/computer/air_control{dir = 1; name = "Nacelle Chamber Monitoring"; sensor_name = "Chamber"; sensor_tag = "ReacEng3"},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"nKz" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch{id_tag = "tox_airlock_exterior"; locked = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nKB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"nKD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"nKE" = (/obj/structure/lattice,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nKQ" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan,/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/techfloor,/area/space) -"nKU" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "eng3"; name = "First Deck Starboard Access"; pixel_x = -21},/obj/machinery/power/apc/high/critical{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"nLi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/space) -"nLn" = (/obj/machinery/suit_cycler/security,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"nLq" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/door/window/brigdoor/northleft{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"nLH" = (/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"nLL" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/space) -"nLM" = (/obj/item/stack/material/plasteel{amount = 20},/obj/item/stack/material/glass{amount = 20},/obj/item/stack/material/glass{amount = 20},/obj/item/stack/material/aluminium/ten,/obj/item/stack/material/plastic{amount = 20},/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"nMa" = (/obj/machinery/door/airlock/external/bolted/cycling{dir = 4; frequency = 1380; id_tag = "nuke_shuttle_dock_airlock_outer"; name = "Docking Port Airlock"},/obj/machinery/shield_diffuser,/obj/machinery/access_button/airlock_exterior{frequency = 1380; master_tag = "nuke_shuttle_dock_airlock"; name = "exterior access button"; pixel_y = 24; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nMh" = (/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"nMj" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"nMk" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"nMC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/space) -"nMI" = (/obj/floor_decal/corner/red,/obj/floor_decal/corner/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"nMP" = (/obj/machinery/button/holosign{id_tag = "chapel"; pixel_x = 28},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/office) -"nMQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"nMX" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/disposalpipe/up{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"nNh" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"nNi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/green/border,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"nNj" = (/obj/structure/curtain/medical,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"nNl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nNm" = (/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"nNq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"nNr" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"nNt" = (/obj/structure/table/marble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/walllocker{pixel_x = -28},/obj/item/storage/candle_box/scented,/obj/item/storage/candle_box/scented,/obj/item/storage/candle_box,/obj/item/storage/candle_box,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"nNF" = (/turf/simulated/wall/r_wall/hull,/area/vacant/monitoring) -"nNL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"nNS" = (/obj/structure/sign/nanotrasen{dir = 4},/turf/simulated/wall/r_titanium,/area/space) -"nNX" = (/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"nOh" = (/obj/structure/table/standard,/obj/item/sticky_pad/random,/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/blue2,/area/space) -"nOi" = (/obj/structure/bed/chair/padded/blue{dir = 1},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"nOs" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/item/trash/semki,/turf/simulated/floor/wood/walnut,/area/space) -"nOt" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"nOy" = (/obj/structure/bed/sofa/l/black{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"nOz" = (/obj/floor_decal/corner/red,/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/table/steel,/obj/item/device/synthesized_instrument/guitar,/turf/simulated/floor/tiled/steel_grid,/area/space) -"nOC" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"nOL" = (/obj/structure/closet/secure_closet/medical2,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"nOM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"nOP" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nOQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"nOV" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/heads/office/rd) -"nOW" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"nOZ" = (/obj/structure/wall_frame,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/vacant/cargo) -"nPb" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nPg" = (/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "heads_meeting"; name = "Meeting Room Window Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "meeting_windows"},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"nPi" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"nPt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/corner/purple/mono,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"nPx" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/floor_decal/borderfloorblack{dir = 5},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"nPA" = (/obj/structure/closet/crate,/obj/random/powercell,/obj/random/powercell,/obj/random/powercell,/obj/decal/cleanable/cobweb2{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"nPC" = (/obj/floor_decal/industrial/warning/fulltile,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/space) -"nPN" = (/obj/floor_decal/borderfloor,/obj/structure/bed/chair/padded/red{dir = 1},/obj/floor_decal/corner/black/border,/turf/simulated/floor/tiled/dark,/area/space) -"nPW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"nPX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/table/woodentable/walnut,/obj/item/material/ashtray/glass,/turf/simulated/floor/tiled,/area/space) -"nQb" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{dir = 1; id_tag = "pmdoor"; name = "Head of Personnel"; secured_wires = 1; stripe_color = "#b7f27d"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"nQi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"nQr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nQs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood/ebony,/area/space) -"nQz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nQL" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"nRf" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 4},/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/office) -"nRk" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"nRm" = (/obj/floor_decal/borderfloor,/obj/machinery/light,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"nRw" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"nRy" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"nRA" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"nRD" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/structure/table/steel_reinforced,/obj/item/storage/secure/briefcase,/turf/simulated/floor/tiled/techfloor,/area/space) -"nRO" = (/obj/machinery/telecomms/processor/preset_one,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"nRV" = (/obj/machinery/bookbinder,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"nSa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"nSr" = (/obj/structure/railing/mapped,/obj/machinery/atmospherics/unary/vent_pump{controlled = 0; dir = 4; external_pressure_bound = 105; icon_state = "map_vent_in"; pump_direction = 0; use_power = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/space) -"nSy" = (/obj/structure/dogbed,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/mob/living/simple_animal/hostile/commanded/rex,/turf/simulated/floor/wood/mahogany,/area/space) -"nSz" = (/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/incinerator) -"nSA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/chair/padded/purple{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"nSB" = (/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"nSC" = (/obj/machinery/shipsensors,/turf/simulated/floor/plating,/area/space) -"nSH" = (/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"nSV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Warden"; sort_type = "Warden"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"nSY" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"nTa" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/bridge) -"nTl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"nTr" = (/obj/floor_decal/corner/black/border{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nTu" = (/obj/structure/noticeboard{dir = 4; pixel_x = -32},/obj/structure/table/steel_reinforced,/obj/item/storage/slide_projector,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"nTz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"nTC" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "toxins_petrov_shutters"; name = "Mixing Chamber Blast Shutters"},/turf/simulated/floor/reinforced,/area/space) -"nTD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/freezer,/area/space) -"nTE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/space) -"nTO" = (/obj/floor_decal/corner/purple/half,/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"nTR" = (/obj/structure/bed/chair/padded/black{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"nUh" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"nUm" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/monotile,/area/space) -"nUp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/sparker{id_tag = "engines"; pixel_x = -24},/obj/machinery/atmospherics/unary/outlet_injector{injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"nUq" = (/obj/structure/table/rack,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/structure/window/basic{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"nUv" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"nUw" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/sign/deck/first{dir = 1; pixel_y = -32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/padded/red{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) -"nUA" = (/obj/machinery/light/spot{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"nUE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"nUI" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"nUJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Cell Two"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nUL" = (/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"nUO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/prepainted,/area/space) -"nVa" = (/obj/machinery/vending/cola{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"nVe" = (/obj/wallframe_spawn/reinforced/polarized/full{id = "bridge_windows"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "bridge_ent"; name = "Bridge Lockdown"},/turf/simulated/floor/plating,/area/bridge) -"nVh" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"nVj" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/space) -"nVr" = (/obj/machinery/atmospherics/omni/mixer{active_power_usage = 7500; tag_north = 1; tag_north_con = 0.21; tag_south = 1; tag_south_con = 0.79; tag_west = 2},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"nVu" = (/obj/machinery/door/airlock/highsecurity{name = "Telecommunications"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/tcommsat/computer) -"nVz" = (/turf/simulated/wall/prepainted,/area/crew_quarters/head) -"nVB" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"nVG" = (/obj/machinery/light/small/emergency{dir = 8},/obj/structure/closet/crate/freezer/rations,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/space) -"nVP" = (/obj/structure/barricade,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"nVW" = (/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/table/standard,/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning,/obj/item/anodevice{pixel_x = 3; pixel_y = 3},/obj/item/anodevice,/turf/simulated/floor/tiled/white/monotile,/area/space) -"nVY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"nWj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"nWl" = (/obj/item/stool/padded,/obj/floor_decal/corner/yellow/three_quarters{dir = 1},/turf/simulated/floor/tiled,/area/space) -"nWU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"nXa" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; target_pressure = 15000},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"nXn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"nXq" = (/obj/structure/ladder/up,/obj/structure/catwalk,/turf/simulated/open,/area/space) -"nXt" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"nXu" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/sign/xenoflora{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/space) -"nXw" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"nXy" = (/obj/structure/dispenser,/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/space) -"nXG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/fore) -"nXH" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/space) -"nYh" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3starboard) -"nYj" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"nYn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"nYD" = (/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"nYL" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/washing_machine,/turf/simulated/floor/wood/walnut,/area/space) -"nYM" = (/obj/machinery/light/spot{dir = 1},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/computer/power_monitor{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/spline/fancy/black{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"nYO" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nYR" = (/obj/shuttle_landmark/merc/dock,/turf/space,/area/space) -"nYS" = (/obj/floor_decal/corner/green/bordercorner,/obj/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"nZa" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"nZb" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"nZd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"nZf" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/airlock_electronics/brace,/obj/item/airlock_electronics/brace,/obj/item/airlock_electronics/brace,/obj/item/airlock_brace,/obj/item/airlock_brace,/obj/item/airlock_brace,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/material/twohanded/jack,/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"nZi" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"nZk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"nZA" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"nZH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/space) -"nZI" = (/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"nZL" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"nZT" = (/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/forestarboard) -"nZW" = (/obj/structure/closet/secure_closet/counselor{icon_state = "med"},/obj/item/book/manual/psionics,/obj/item/stack/wax{amount = 50},/obj/item/toy/figure/psychologist,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 6},/obj/item/storage/candle_box,/turf/simulated/floor/tiled/dark,/area/space) -"oae" = (/obj/machinery/cryopod,/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"oaf" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"oah" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/brown/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"oaj" = (/obj/structure/table/rack/dark,/obj/item/stack/tile/carpetred/ten,/obj/item/stack/tile/carpetpurple/ten,/obj/item/stack/tile/carpetorange/ten,/obj/item/stack/tile/carpetgreen/ten,/obj/item/stack/tile/carpetblue2/ten,/obj/item/stack/tile/carpetblue/ten,/obj/item/stack/tile/carpet/ten,/obj/floor_decal/spline/plain/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"oam" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"oao" = (/obj/structure/closet/emcloset,/obj/random/crayon,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"oaw" = (/obj/structure/closet/secure_closet/crew/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/folder/nt,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/locker) -"oax" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"oaA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/freezer,/area/space) -"oaF" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"oaH" = (/obj/structure/sign/emergonly{dir = 8; pixel_x = 32},/obj/structure/bed/chair/padded/teal{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/directions/med{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"oaI" = (/obj/machinery/space_heater,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"oaO" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/corner/green/bordercorner2,/turf/simulated/floor/tiled/white,/area/space) -"oaQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"oaX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/grass/cut,/area/space) -"oaY" = (/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"obf" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/maintenance,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"obk" = (/obj/floor_decal/corner/black{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"obm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/bed/chair,/obj/spider/stickyweb,/turf/simulated/floor/plating,/area/space) -"obq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"obB" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/vending/coffee,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"obG" = (/obj/landmark{name = "Observer-Start"},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"obI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"obN" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"obP" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"obS" = (/obj/structure/railing/mapped,/turf/space,/area/space) -"obT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"obZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"oca" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oct" = (/obj/floor_decal/corner/black,/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/sign/warning/nosmoking_2{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled/white,/area/space) -"ocu" = (/obj/machinery/door/airlock/highsecurity{dir = 4; name = "Gravitational Generator"},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id_tag = "gravgen-antirad-shielding"; name = "Gravitational Generator Shielding"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ocv" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ocw" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/carpet/green{dir = 1},/turf/simulated/floor/carpet/green,/area/space) -"ocE" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/brown,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"ocG" = (/obj/structure/roller_bed,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"ocH" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"ocQ" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"ocW" = (/obj/floor_decal/techfloor{dir = 8},/obj/random/closet,/turf/simulated/floor/tiled/techfloor,/area/space) -"ocY" = (/obj/structure/bed/sofa/l/black,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"odj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"odm" = (/obj/structure/catwalk,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"odp" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/random/powercell,/obj/random/maintenance,/turf/simulated/floor/plating,/area/engineering/auxpower) -"odq" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/lime/bordercorner2{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"odv" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"odw" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/machinery/power/apc/critical{dir = 8; name = "west bump"; pixel_x = -21},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/reinforced,/area/space) -"odA" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/liquidfood,/obj/item/reagent_containers/food/snacks/liquidfood,/obj/item/reagent_containers/food/snacks/liquidfood,/obj/item/reagent_containers/food/snacks/liquidfood,/obj/item/reagent_containers/food/snacks/liquidfood,/turf/simulated/floor/tiled/techfloor,/area/space) -"odC" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/megaphone,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"odF" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"odG" = (/obj/structure/closet/coffin/wooden,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/black/mono,/obj/machinery/camera/network/second_deck{c_tag = "Chapel - Mortuary"; dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"odH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/airlock/command{id_tag = "rddoor"; name = "Research Director"; req_access = newlist(); secured_wires = 1; stripe_color = "#ffffff"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/heads/office/rd) -"odI" = (/obj/structure/bed/padded,/obj/item/bedsheet/green,/turf/simulated/floor/carpet/green,/area/space) -"oea" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/industrial/warning/full,/obj/machinery/light,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"oed" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 8},/obj/structure/table/standard,/obj/item/material/clipboard,/obj/item/folder/yellow,/obj/item/storage/fancy/smokable/dromedaryco{pixel_x = -4; pixel_y = 6},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/space) -"oeg" = (/obj/machinery/organ_printer/robot/mapped,/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"oej" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/alternate/door{id_tag = "hangar_hallway_doors"; name = "Starboard Airlocks Control"; pixel_x = -27; pixel_y = 9},/obj/machinery/button/alternate/door{id_tag = "hangar_ts_doors"; name = "Port Airlocks Control"; pixel_x = -27; pixel_y = -7},/turf/simulated/floor/tiled/techfloor,/area/space) -"oen" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/science{name = "Explorer Prep"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"oeo" = (/obj/machinery/light{dir = 1},/obj/machinery/photocopier,/turf/simulated/floor/lino,/area/space) -"oet" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"oex" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"oeG" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/ebony,/area/space) -"oeI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/corner/lime/bordercorner,/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"oeM" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"oeQ" = (/obj/machinery/telecomms/server/presets/medical,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"oeU" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/r_wall/hull,/area/engineering/atmos) -"oeV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"ofb" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/railing/mapped,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"ofg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"ofk" = (/turf/simulated/wall/prepainted,/area/crew_quarters/adherent) -"ofy" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"ofG" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ofH" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ofJ" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"ofK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "hangar_ts_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "hangar_hallway_doors"; name = "Visitors"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"ofL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"ofO" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ofP" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/space) -"ofQ" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"ofR" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"ogq" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "petrov_shuttle_dock_pump"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ogA" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"ogC" = (/turf/simulated/wall/prepainted,/area/vacant/mess) -"ogG" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"ogH" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"ogN" = (/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/foreport) -"ogT" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/maintenance,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ohb" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_2_berth_hatch"; name = "Escape Pod Two"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"ohj" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"ohs" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"ohu" = (/obj/machinery/constructable_frame/computerframe,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"ohw" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ohy" = (/obj/machinery/chem_master,/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"ohz" = (/obj/structure/bed/chair/office/red{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"ohE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"ohM" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"ohN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ohW" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oie" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"oig" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oii" = (/obj/machinery/computer/modular/preset/security{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oil" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"oin" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"oiu" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/item/material/twohanded/jack,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack/dark,/obj/item/ladder_mobile,/obj/item/clothing/glasses/welding,/obj/item/weldingtool,/obj/item/welder_tank,/obj/item/stack/tile/floor{amount = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"oiz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "Solar Control - Third Deck - Starboard"; dir = 1},/turf/simulated/floor/plating,/area/space) -"oiC" = (/obj/structure/table/rack,/obj/item/aiModule/reset,/obj/floor_decal/techfloor{dir = 1},/obj/structure/window/reinforced,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/southright{dir = 8; name = "AI Maintenance"},/obj/item/aiModule/nanotrasen,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"oiO" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"oiW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"oja" = (/turf/simulated/floor/reinforced/hydrogen,/area/engineering/atmos) -"ojh" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_port"},/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"oju" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"ojv" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"ojy" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/barricade,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "virology_access"; name = "Virology Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_VIRO")},/turf/simulated/floor/tiled/white,/area/space) -"ojM" = (/obj/floor_decal/carpet/purple{dir = 4},/obj/structure/bed/padded,/obj/item/bedsheet/rd,/obj/landmark/start{name = "Research Director"},/turf/simulated/floor/carpet/purple,/area/space) -"ojN" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"ojR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftstarboard) -"ojZ" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/black/mono,/obj/item/storage/box/glasses/square,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"okd" = (/obj/structure/window/basic{dir = 4},/obj/structure/table/rack,/obj/structure/curtain/open/privacy,/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"okf" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"okg" = (/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"okh" = (/obj/structure/lattice,/obj/floor_decal/corner/red/border{dir = 5},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oki" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Aft Port"; dir = 4},/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"okj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"okl" = (/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"okm" = (/obj/floor_decal/ntlogo{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/space) -"okp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"okr" = (/obj/random/trash,/obj/structure/window/basic,/obj/structure/closet/toolcloset,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"oku" = (/obj/structure/table/reinforced,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/obj/item/reagent_containers/spray/sterilizine,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"okx" = (/obj/shuttle_landmark/escape_pod/start/pod11,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"okA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"okD" = (/obj/machinery/door/airlock/engineering{name = "Bluespace Drive"; req_access = newlist(); secured_wires = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/bluespace) -"okE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; display_name = "Aft Dock (NanoTrasen)"; id_tag = "petrov_shuttle_dock"; pixel_x = 20; pixel_y = 32; req_access = list("ACCESS_PETROV"); tag_airpump = "petrov_shuttle_dock_pump"; tag_exterior_door = "petrov_shuttle_dock_outer"; tag_exterior_sensor = "petrov_shuttle_dock_sensor"; tag_interior_door = "petrov_shuttle_dock_inner"},/obj/floor_decal/borderfloorwhite,/obj/floor_decal/borderfloorwhite{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/maintenance/fourthdeck/aft) -"okF" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/space) -"okK" = (/obj/decal/cleanable/dirt,/obj/structure/table/woodentable,/obj/item/folder/yellow{pixel_x = 9; pixel_y = -4},/obj/item/folder/blue{pixel_x = 3; pixel_y = 5},/obj/item/pen,/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = -8; pixel_y = -4},/turf/simulated/floor/wood/walnut,/area/space) -"okN" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"okX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"okY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"okZ" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/recharger/wallcharger{pixel_y = 24},/obj/machinery/photocopier,/turf/simulated/floor/tiled/techfloor,/area/space) -"olf" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced,/area/space) -"olg" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"olu" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"olw" = (/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"oly" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/radioactive{dir = 8; pixel_x = 32},/obj/machinery/space_heater,/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"olO" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"olX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"oma" = (/obj/structure/sign/warning/secure_area{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"omc" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/hygiene/shower{dir = 4; pixel_x = -9},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/space) -"omf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"omi" = (/obj/fluid_mapped,/obj/item/clothing/under/swimsuit/green,/obj/item/bananapeel,/obj/random/junk,/mob/living/simple_animal/aquatic/fish/grump,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"omr" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"omy" = (/turf/simulated/wall/prepainted,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"omE" = (/obj/structure/railing/mapped,/obj/floor_decal/spline/fancy/black,/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/grass/cut,/area/space) -"omF" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/door_timer/cell_3{pixel_x = 32},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"omG" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/camera/network/command{c_tag = "Command - Briefing Room"; dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"omT" = (/turf/simulated/wall/prepainted,/area/maintenance/seconddeck/aftstarboard) -"omW" = (/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"omZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"ona" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"onp" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 3},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"ont" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"onv" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"onC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"onG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"onI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"onJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/office) -"onN" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"onW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/research{dir = 4; name = "Storage"; req_access = newlist()},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"onX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"onY" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oob" = (/obj/structure/railing/mapped{dir = 1},/obj/random/closet,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"ooq" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"oor" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"oou" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"oow" = (/obj/machinery/sleeper/survival_pod{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"ooC" = (/obj/floor_decal/borderfloorblack,/obj/machinery/vending/snack,/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/space) -"ooE" = (/obj/machinery/door/window/westright{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/eastleft{dir = 2; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobio4"; name = "Containment Blast Doors"},/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/reinforced,/area/space) -"ooG" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"ooK" = (/obj/structure/table/standard,/obj/item/storage/bible,/obj/floor_decal/corner/black/full,/obj/machinery/camera/network/security{c_tag = "Security - OFD"; dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"ooV" = (/obj/floor_decal/corner/grey/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"ooZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"opb" = (/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"opd" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/obj/item/stock_parts/circuitboard/arcade/battle,/obj/item/stock_parts/circuitboard/arcade/orion_trail,/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"ope" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/hydrogen,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"opm" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"opr" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 8},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"opv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"opE" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/medical{name = "Patient Ward"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"opF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"opR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"opX" = (/obj/machinery/cryopod{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"oqb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"oqd" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_s"},/obj/paint/red,/obj/paint_stripe/red,/turf/simulated/wall/r_titanium,/area/space) -"oqf" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/black/border,/turf/simulated/floor/wood/walnut,/area/space) -"oqk" = (/obj/machinery/computer/ship/navigation{dir = 8},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/space) -"oqp" = (/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"oqq" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"oqr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"oqs" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{id_tag = "xenobio3_vent"; name = "Chamber Vent"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/space) -"oqu" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/machinery/floodlight{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"oqv" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"oqx" = (/obj/structure/hygiene/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"oqy" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood/walnut,/area/space) -"oqA" = (/obj/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"oqC" = (/obj/machinery/lapvend{dir = 8},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"oqK" = (/obj/structure/closet/emcloset,/obj/item/tank/air,/obj/item/wrench,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"oqU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"ora" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ore" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"orf" = (/obj/machinery/atmospherics/omni/filter{tag_east = 4; tag_north = 3; tag_south = 2; tag_west = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oro" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos) -"oru" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/staging) -"orC" = (/obj/structure/table/woodentable/mahogany,/obj/floor_decal/carpet/red{dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"orR" = (/obj/floor_decal/corner/green/border{dir = 4},/obj/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"orY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"osm" = (/obj/floor_decal/techfloor/orange,/obj/machinery/rotating_alarm/supermatter{dir = 1; pixel_y = -14},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"osy" = (/obj/machinery/atmospherics/tvalve/mirrored/digital{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"osJ" = (/obj/shuttle_landmark/merchant/out,/turf/space,/area/space) -"osL" = (/obj/machinery/door/window/westright,/obj/machinery/door/window/eastright,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"ote" = (/obj/landmark/start{name = "Captain"},/obj/structure/bed/sofa/r/blue{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 9},/turf/simulated/floor/carpet/red,/area/space) -"oti" = (/obj/machinery/tele_beacon,/turf/simulated/floor/tiled,/area/space) -"otj" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"otk" = (/obj/structure/closet/l3closet/virology,/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white/monotile,/area/space) -"oto" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"otx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"otE" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"otI" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/assembly/chargebay) -"otJ" = (/obj/structure/closet/crate/medical,/obj/item/bodybag/rescue,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"otN" = (/obj/machinery/floodlight{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/airlock_sensor/airlock_interior{frequency = 1331; id_tag = "calypso_shuttle_interior_sensor"; master_tag = "calypso_shuttle"; pixel_x = -25; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/airlock) -"otO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/space) -"otS" = (/obj/structure/bed/chair/padded/green{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/wood/walnut,/area/space) -"otU" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ouc" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{autoset_access = 0; dir = 8; name = "Central Stairwell"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oue" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"ouf" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"oum" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/flasher{dir = 4; id_tag = "ai_core"; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"ouo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"ouq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/smoking{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"out" = (/obj/structure/flora/ausbushes/genericbush,/obj/structure/railing/mapped,/turf/simulated/floor/grass/cut,/area/space) -"ouu" = (/obj/structure/table/standard,/obj/item/modular_computer/laptop/preset/custom_loadout/standard,/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"ouB" = (/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"ouD" = (/obj/floor_decal/corner/black/half{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"ouJ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/borderfloor{dir = 9},/obj/machinery/disposal,/obj/floor_decal/corner/green/border{dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"ouU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"ouV" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"ouZ" = (/obj/machinery/cell_charger,/obj/item/cell/standard,/obj/random/powercell,/obj/floor_decal/industrial/outline/grey,/obj/structure/table/steel_reinforced,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"ove" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ovl" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"ovq" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"ovu" = (/obj/structure/table/woodentable/maple,/turf/simulated/floor/tiled/white,/area/space) -"ovz" = (/obj/item/paper/sticky{name = "I am door"; pixel_y = -25},/turf/simulated/floor/plating,/area/vacant/cargo) -"ovB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ovG" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"ovI" = (/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ovQ" = (/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ovT" = (/obj/machinery/computer/modular/preset/aislot/sysadmin{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"ovV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{locked = 1},/obj/item/taperoll/engineering/applied,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"owd" = (/obj/machinery/computer/ship/disperser{dir = 4},/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"owj" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/air_sensor{id_tag = "BSDrive"},/turf/simulated/floor/bluegrid,/area/space) -"owl" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/space) -"ows" = (/obj/structure/bed/chair/rounded/blue,/turf/simulated/floor/carpet/blue2,/area/space) -"owx" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/space) -"owy" = (/obj/floor_decal/borderfloor{dir = 5},/obj/structure/closet/firecloset,/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/camera/network/security{c_tag = "Security - Fore Hallway - OFD"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"owB" = (/obj/structure/table/reinforced,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = -22},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"owI" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"owN" = (/obj/structure/table/woodentable_reinforced/walnut,/turf/simulated/floor/carpet,/area/space) -"owS" = (/turf/simulated/wall/titanium,/area/shuttle/petrov/equipment) -"owU" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"owY" = (/obj/structure/catwalk,/obj/structure/table/standard,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"oxa" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"oxc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"oxh" = (/obj/structure/table/rack,/obj/item/rig/medical/equipped,/obj/item/clothing/mask/gas/half,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/northright{dir = 4; name = "RIG"; req_access = newlist()},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"oxi" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oxn" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"oxu" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"oxy" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"oxC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass/command{name = "Central Stairwell"},/turf/simulated/floor/tiled/monotile,/area/space) -"oxE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oxG" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/surgery) -"oxV" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/table/rack,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/screwdriver,/obj/item/crowbar,/turf/simulated/floor/tiled/techfloor,/area/space) -"oxW" = (/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "hangar_ts_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "hangar_hallway_doors"; name = "Visitors"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"oyb" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/black/border{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"oyg" = (/obj/structure/ladder/up,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oym" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/blue2,/area/space) -"oyp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"oyB" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"oyH" = (/obj/structure/table/woodentable/walnut,/obj/structure/flora/pottedplant/shoot{pixel_x = -7; pixel_y = 18},/obj/machinery/light{dir = 8},/obj/random/toy,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"oyN" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"oyP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"oyR" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ozf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng1_inner"; name = "Third Deck Starboard Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d3starboard) -"ozh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"ozj" = (/obj/structure/table/woodentable_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/space) -"ozl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"ozr" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 2; name = "Medical Reception"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"ozv" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"ozA" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"ozF" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"ozH" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "sd_port_pump"},/obj/machinery/airlock_sensor{id_tag = "sd_port_sensor"; master_tag = "sd_port"; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"ozR" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"oAb" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"oAc" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oAe" = (/obj/structure/bed/chair/comfy/brown,/obj/floor_decal/carpet/green{dir = 4},/obj/floor_decal/carpet/green{dir = 1},/obj/floor_decal/carpet/green{dir = 5},/turf/simulated/floor/carpet/green,/area/space) -"oAi" = (/obj/machinery/computer/operating{dir = 8},/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/machinery/light/spot{dir = 4},/obj/machinery/light{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"oAj" = (/obj/structure/closet/l3closet/security,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/item/clothing/suit/bio_suit/security,/obj/item/clothing/head/bio_hood/security,/obj/item/clothing/mask/gas/half,/obj/item/tank/oxygen_emergency_extended,/turf/simulated/floor/tiled/techfloor,/area/space) -"oAk" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "null"; name = "Captain's office"; secured_wires = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oAm" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"oAy" = (/obj/floor_decal/corner/green/border{dir = 5},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oAB" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"oAD" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"oAM" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oAZ" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"oBg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"oBh" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"oBk" = (/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{id = "private_cafe_windows"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"oBo" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"oBC" = (/obj/structure/lattice,/obj/floor_decal/industrial/traffic{dir = 4},/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oBK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"oBR" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/corner/green/three_quarters{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hydroponics) -"oCa" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"oCi" = (/obj/shuttle_landmark/skipjack/deck5,/turf/space,/area/space) -"oCm" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"oCq" = (/obj/structure/bed/sofa/m/beige{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"oCu" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_6"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oCv" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "bridge_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) -"oCy" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/recharger,/obj/machinery/camera/network/security{c_tag = "Security - Armory Lobby"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"oCI" = (/obj/structure/bed/chair/office/comfy/red{dir = 8},/obj/landmark/start{name = "Head of Security"},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 4; id_tag = "hosdoor"; name = "Office Door Control"; pixel_x = -24; pixel_y = 21; req_access = list("ACCESS_HEAD_OF_SECURITY")},/turf/simulated/floor/carpet/red,/area/space) -"oCK" = (/obj/structure/adherent_bath,/obj/structure/sign/warning/fire{dir = 4; pixel_x = -32},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"oCT" = (/obj/machinery/door/airlock/civilian{name = "Showers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"oCW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"oCZ" = (/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"oDb" = (/obj/floor_decal/corner/paleblue/border{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oDc" = (/obj/floor_decal/corner/grey/full,/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/lava/blue{pixel_x = 7; pixel_y = -2},/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/space) -"oDh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"oDs" = (/obj/machinery/light{dir = 4},/obj/structure/table/rack,/obj/floor_decal/spline/plain/yellow{dir = 8},/obj/item/storage/toolbox/mechanical{pixel_y = 15},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 6},/obj/item/shovel,/obj/item/shovel,/obj/item/storage/box/mousetraps,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"oDz" = (/obj/machinery/porta_turret{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"oDE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"oDI" = (/obj/floor_decal/corner/red,/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oDJ" = (/obj/machinery/disposal,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/brown/border{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"oDO" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"oDP" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"oDQ" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"oDU" = (/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oDV" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"oDY" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "eng2"; name = "Third Deck Port Nacelle Access"; pixel_x = -21; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green,/obj/machinery/power/apc/high/critical{name = "south bump"; pixel_y = -24},/obj/machinery/camera/network/engineering{c_tag = "Fourth Deck - Port Necelle - Airlock"; dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"oEg" = (/obj/random/trash,/turf/simulated/floor/tiled,/area/space) -"oEl" = (/obj/floor_decal/techfloor/orange,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"oEm" = (/obj/structure/table/woodentable/maple,/obj/item/storage/box/cups,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"oEn" = (/obj/floor_decal/corner/yellow/half{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/space) -"oEp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"oEA" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oED" = (/obj/structure/bed/sofa/r/beige{dir = 1},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/wood/ebony,/area/space) -"oEH" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/paint_stripe/red,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"oEN" = (/obj/machinery/conveyor{dir = 8; id = "packageSort1"},/obj/structure/sign/warning/moving_parts{pixel_y = -32},/turf/simulated/floor/plating,/area/space) -"oEO" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/device/flashlight/lamp/lava/red{pixel_x = 3; pixel_y = 11},/obj/item/storage/secure/safe{pixel_x = 32},/turf/simulated/floor/wood/mahogany,/area/space) -"oEU" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oEW" = (/obj/random/junk,/turf/simulated/floor/tiled,/area/space) -"oFa" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"oFb" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Surgery - Operation Theatre One"; dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"oFg" = (/obj/decal/cleanable/blood,/obj/floor_decal/industrial/outline/red,/obj/structure/bed/chair/comfy{dir = 4},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"oFq" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"oFs" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"oFB" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/camera/network/command{c_tag = "Command - Bridge Entrance"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"oFI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"oFK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"oFS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"oFU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/foreport) -"oGe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"oGg" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"oGh" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 8},/turf/space,/area/space) -"oGi" = (/obj/structure/table/marble,/obj/item/material/chopping_board,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"oGo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"oGs" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Internal Affairs Agent"; sort_type = "Internal Affairs Agent"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oGx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"oGC" = (/obj/machinery/disposal,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/office) -"oGD" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"oGG" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/powered/pump,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"oGL" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/railing/mapped,/obj/floor_decal/industrial/outline/grey,/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"oGN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/space) -"oGP" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/floodlight{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"oGS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"oGV" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"oGX" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"oGZ" = (/obj/structure/fitness/punchingbag,/obj/structure/sign/poster/nyc/wanted{pixel_y = 32},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"oHh" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 21},/turf/simulated/floor/wood/mahogany,/area/space) -"oHt" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"oHu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"oHC" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/decal/cleanable/dirt,/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/freezer,/area/space) -"oHF" = (/obj/machinery/door/airlock/civilian{name = "Cafe"},/obj/machinery/door/firedoor,/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/wood/walnut,/area/space) -"oHN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/freezer,/area/space) -"oHQ" = (/turf/simulated/floor/wood/walnut,/area/chapel/main) -"oHV" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"oHY" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"oIf" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oIh" = (/obj/machinery/organ_printer/flesh/mapped,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"oIi" = (/obj/structure/stairs/east,/obj/structure/sign/directions/bridge{dir = 4; pixel_y = -24},/obj/structure/sign/directions/science{dir = 4; pixel_y = -31},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/tiled,/area/space) -"oIo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"oIv" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"oIB" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2,/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"oIE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/space) -"oIG" = (/obj/structure/railing/mapped,/obj/structure/bed/sofa/l/blue,/turf/simulated/floor/plating,/area/space) -"oIZ" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"oJb" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "observation_shielding"; name = "Observation Shield"},/turf/simulated/floor/plating,/area/space) -"oJd" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/port) -"oJi" = (/obj/structure/bed/chair/padded/blue{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"oJp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/obj/machinery/computer/air_control{dir = 8; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensor_name = "Tank"; sensor_tag = "n2_sensor"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oJt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"oJw" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/full{id = "rd_windows"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/heads/office/rd) -"oJx" = (/obj/floor_decal/borderfloorblack/corner,/turf/simulated/floor/tiled/dark,/area/bridge) -"oJA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"oJH" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"oJN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"oJT" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"oKq" = (/obj/machinery/door/blast/regular{dir = 4; id_tag = "SupermatterPort"; name = "Reactor Blast Door"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"oKt" = (/obj/machinery/telecomms/server/presets/engineering,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"oKz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/space) -"oKA" = (/obj/floor_decal/spline/fancy/black{dir = 10},/obj/structure/ladder/up,/turf/simulated/floor/wood/walnut,/area/space) -"oKB" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/structure/sign/poster/nyc/wanted{pixel_x = 32},/obj/machinery/camera/network/security{c_tag = "Security - Aft Hallway"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oKG" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "ai_core_pump"},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/space) -"oKJ" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"oKN" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/corner/grey/three_quarters{dir = 4},/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled/dark,/area/space) -"oKR" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"oKT" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/folder/nt,/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/folder/blue{pixel_x = 5; pixel_y = 5},/obj/floor_decal/carpet/blue,/obj/item/stamp/denied{pixel_x = -5; pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/blue,/area/space) -"oLd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled,/area/space) -"oLh" = (/obj/structure/table/steel,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd_ammo,/obj/item/rcd,/obj/machinery/light{dir = 1},/obj/structure/sign/poster{pixel_x = 32},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/machinery/camera/network/command{c_tag = "Command - Chief Engineer"; dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"oLi" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/space) -"oLl" = (/turf/simulated/wall/ocp_wall,/area/space) -"oLp" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"oLr" = (/obj/machinery/computer/mining,/obj/machinery/door/firedoor,/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"oLA" = (/obj/item/stool/padded/red,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/aftstarboard) -"oLF" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"oLN" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oLY" = (/obj/decal/cleanable/blood/oil,/turf/simulated/floor/tiled,/area/space) -"oMa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"oMg" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/bed/chair/armchair/purple,/turf/simulated/floor/tiled,/area/space) -"oMi" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"oMx" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/camera_film{pixel_x = 7; pixel_y = 6},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 6},/turf/simulated/floor/carpet/blue,/area/space) -"oMG" = (/obj/machinery/vending/tool{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"oMI" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/light{dir = 4},/obj/structure/bed/sofa/l/brown{dir = 8},/turf/simulated/floor/tiled,/area/space) -"oMJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/sleeper,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"oMM" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"oMX" = (/obj/machinery/computer/modular/preset/dock{dir = 1},/obj/floor_decal/corner/yellow/half{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"oMY" = (/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 10},/obj/structure/dogbed,/mob/living/simple_animal/passive/corgi/Ian,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/blue2,/area/space) -"oNi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/techfloor/hole{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oNj" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/structure/closet/cabinet,/obj/item/book/manual/solgov_law,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/space) -"oNm" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"oNn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet,/area/space) -"oNp" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "o2_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) -"oNF" = (/obj/structure/holoplant,/turf/simulated/floor/wood/walnut,/area/space) -"oNQ" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/disposal,/obj/structure/railing/mapped,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"oOc" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/ebony,/area/space) -"oOh" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/space) -"oOi" = (/obj/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"oOm" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/ebony,/area/space) -"oOn" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/storage/primary) -"oOr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oOu" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/machinery/photocopier,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"oOB" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/engineering/auxpower) -"oOH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/space) -"oOJ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"oOK" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"oOL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"oOO" = (/obj/structure/table/rack,/obj/floor_decal/borderfloorblack{dir = 6},/obj/item/clothing/mask/gas/half,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westleft{dir = 1; id_tag = "iaaright"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"oOR" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"oOW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"oOX" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"oPi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/space_heater{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oPr" = (/obj/structure/table/steel,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/deck/cards,/turf/simulated/floor/tiled/dark,/area/space) -"oPv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"oPB" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oPF" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"oPJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"oPP" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"oPZ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood/walnut,/area/space) -"oQg" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"oQh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Central Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"oQi" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oQn" = (/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"oQw" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/blue,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"oQx" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"oQB" = (/obj/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/bed/chair/office/green{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"oQE" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"oQH" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake{pixel_x = 8; pixel_y = 6},/obj/item/handcuffs,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"oQJ" = (/obj/floor_decal/techfloor/orange,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"oQN" = (/obj/paint_stripe/red,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/wallframe_spawn/reinforced/polarized{id = "forensicswindow"},/turf/simulated/floor/plating,/area/space) -"oQQ" = (/obj/structure/railing/mapped,/turf/simulated/open,/area/maintenance/firstdeck/centralstarboard) -"oRb" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/grey/full,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT,/obj/item/reagent_containers/food/drinks/teapot{pixel_x = 4; pixel_y = 16},/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"oRl" = (/obj/floor_decal/industrial/warning,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"oRs" = (/obj/machinery/fusion_fuel_injector/mapped{initial_id_tag = "aux_fusion_plant"},/turf/simulated/floor/reinforced,/area/vacant/prototype/engine) -"oRu" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor{dir = 1},/obj/structure/sign/directions/security{dir = 1; pixel_y = -24},/obj/structure/sign/directions/infirmary{dir = 1; pixel_y = -31},/obj/structure/sign/directions/science{dir = 1; pixel_y = -38},/turf/simulated/floor/tiled,/area/space) -"oRw" = (/obj/structure/hygiene/toilet{dir = 4},/obj/floor_decal/industrial/warning{dir = 1},/obj/decal/cleanable/blood,/obj/decal/cleanable/blood/drip,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"oRE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"oRP" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"oRX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8; req_access = newlist()},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oSc" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oSi" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/space) -"oSk" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"oSE" = (/obj/floor_decal/corner/black{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"oSI" = (/obj/structure/closet,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"oSU" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/computer/air_control{input_tag = "fuel1p_in"; name = "Fuel Supply Control"; output_tag = "fuel1p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngPlasma1"},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"oSZ" = (/obj/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"oTb" = (/obj/structure/flora/pottedplant/smalltree,/obj/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"oTc" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oTm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"oTo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"oTr" = (/obj/structure/bed/chair/office/comfy/blue{dir = 1},/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"oTt" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/foreport) -"oTx" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/medical{id_tag = "med_crit_d2"; name = "Critical Wing"},/obj/machinery/door/blast/shutters/open{id_tag = "med_crit2"; name = "Infirmary Staging Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"oTB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass/security{dir = 8; id_tag = "security_entry_airlock_enter"; name = "Security Entry"},/turf/simulated/floor/tiled/monotile,/area/space) -"oTC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/space) -"oTF" = (/obj/structure/bed/sofa/l/brown,/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 9},/turf/simulated/floor/carpet/red,/area/space) -"oTG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"oTI" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"oTM" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"oTP" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/black/border,/obj/structure/closet/cabinet,/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 5},/turf/simulated/floor/wood/walnut,/area/space) -"oTR" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/air_control{input_tag = "containment_in"; name = "Containment Chamber Gas Monitor"; output_tag = "containment_out"; sensor_name = "Containment Chamber"; sensor_tag = "containment_sensor"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oTT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"oUi" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/sign/directions/supply{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/monotile,/area/space) -"oUl" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 4; id_tag = "fusion_observation"},/obj/machinery/door/firedoor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/vacant/prototype/control) -"oUm" = (/obj/machinery/disposal,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/alarm{pixel_y = 24},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood/ebony,/area/space) -"oUp" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oUq" = (/obj/structure/bed/chair/padded/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/space) -"oUx" = (/obj/structure/table/woodentable,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/item/paper{pixel_x = 6; pixel_y = 3},/obj/item/paper{pixel_x = 5; pixel_y = -5},/obj/item/paper{pixel_x = -2},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"oUH" = (/obj/machinery/atmospherics/valve{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oUI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"oUL" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/space) -"oUS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"oVB" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"oVE" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"oVJ" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3starboard) -"oVL" = (/obj/machinery/vending/dinnerware{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"oVN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"oVS" = (/obj/machinery/organ_printer/robot/mapped,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"oVV" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"oVY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"oWd" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/portable_atmospherics/powered/pump,/turf/simulated/floor/tiled/white/monotile,/area/space) -"oWe" = (/obj/machinery/light/spot,/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/corner/lime/mono,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"oWj" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/random/masks,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"oWk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"oWo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"oWv" = (/turf/simulated/wall/prepainted,/area/maintenance/firstdeck/forestarboard) -"oWy" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/structure/bed/sauna_bench/middle/north,/obj/item/device/flashlight/lamp/lava/orange{pixel_x = 9; pixel_y = 3},/turf/simulated/floor/wood/ebony,/area/space) -"oWC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/starboard) -"oWO" = (/obj/structure/table/glass,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"oWS" = (/obj/machinery/suit_storage_unit/explorer,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"oWT" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"oWW" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"oXn" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet,/area/space) -"oXp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"oXz" = (/obj/structure/sign/poster{pixel_y = 32},/obj/floor_decal/spline/plain/brown{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"oXA" = (/obj/structure/bed/chair/office/comfy/blue{dir = 1},/obj/floor_decal/carpet/blue2,/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 1; id_tag = "pmdoor"; name = "Office Door Control"; pixel_x = -9; pixel_y = -22; req_access = list("ACCESS_HEAD_OF_PERSONNEL")},/obj/machinery/button/windowtint{dir = 1; id = "hop_windows"; pixel_x = 12; pixel_y = -21},/turf/simulated/floor/carpet/blue2,/area/space) -"oXI" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/light{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"oXJ" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/table/rack,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"oXK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) -"oXL" = (/obj/structure/lattice,/obj/structure/rubble,/obj/random/junk,/obj/random/junk,/turf/simulated/open,/area/maintenance/thirddeck/aftport) -"oXQ" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/spline/fancy/black{dir = 10},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/dark,/area/bridge) -"oXS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"oXV" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/table/woodentable/walnut,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"oYa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"oYe" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"oYf" = (/obj/item/storage/secure/safe{pixel_x = 24},/turf/simulated/floor/wood/walnut,/area/space) -"oYh" = (/obj/structure/closet/radiation,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"oYi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"oYr" = (/obj/random/closet,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"oYB" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"oYZ" = (/obj/floor_decal/steeldecal/steel_decals9,/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"oZb" = (/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"oZg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"oZh" = (/obj/structure/table/reinforced,/obj/machinery/body_scan_display{pixel_y = 24},/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/box/freezer,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"oZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"oZl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/mahogany,/area/space) -"oZs" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"oZu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/table/standard,/obj/item/scalpel/basic,/obj/item/retractor,/turf/simulated/floor/tiled/white/monotile,/area/space) -"oZz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"oZK" = (/obj/structure/sign/warning/radioactive{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/space) -"oZL" = (/obj/structure/hygiene/shower,/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"oZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/external/bolted/cycling{autoset_access = 0; id_tag = "petrov_shuttle_dock_outer"; name = "Docking Port Airlock"; req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS"))},/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"oZT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"oZV" = (/obj/floor_decal/corner/red,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"oZY" = (/obj/machinery/telecomms/bus/preset_three,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"paa" = (/obj/structure/closet/walllocker{pixel_x = -28},/obj/machinery/fabricator{fab_status_flags = 1},/obj/item/stack/material/steel/fifty{pixel_x = -5},/obj/item/stack/material/glass/fifty{pixel_x = 7},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/stack/material/plastic/ten,/obj/item/stack/material/plastic/ten,/turf/simulated/floor/tiled/techfloor,/area/space) -"pad" = (/obj/structure/sign/warning/deathsposal,/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/space) -"pah" = (/obj/machinery/light,/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"pal" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 4},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pam" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"paF" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/bed/sofa/l/brown{dir = 1},/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 6},/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/red,/area/space) -"paK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/office) -"paZ" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/techfloor{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine thruster blast doors."; dir = 4; id_tag = "ThrusterVents"; name = "Thruster Blast Door control"; pixel_x = -24; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pbf" = (/obj/floor_decal/corner/purple/half,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"pbh" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/green/border{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/green/bordercorner2{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/corner/green/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"pbl" = (/obj/structure/curtain/medical,/obj/floor_decal/borderfloorwhite{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"pbp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"pbu" = (/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"pbx" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_3_pump"},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 8; frequency = 1380; id_tag = "escape_pod_3"; name = "escape pod three controller"; pixel_x = 20; tag_door = "escape_pod_3_hatch"},/obj/floor_decal/borderfloor/corner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pbz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"pbE" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"pbH" = (/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pbP" = (/obj/floor_decal/borderfloorblack,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"pbU" = (/obj/floor_decal/corner/green,/obj/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"pbW" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"pbY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/lattice,/turf/space,/area/space) -"pcb" = (/obj/structure/bookcase,/obj/item/book/manual/engineering_guide,/turf/simulated/floor/wood/ebony,/area/space) -"pcc" = (/obj/structure/catwalk,/obj/random/trash,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"pch" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pck" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/watertank,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"pco" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/eva) -"pcp" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"pcB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"pcC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"pcG" = (/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pcH" = (/obj/machinery/cooker/grill,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"pcP" = (/obj/structure/closet/secure_closet/crew/research,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/folder/nt,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"pcQ" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/item/device/camera,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pdl" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"pdt" = (/obj/structure/table/marble,/obj/item/reagent_containers/food/condiment/barbecue{pixel_x = -3; pixel_y = 9},/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 8},/obj/item/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/space) -"pdu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"pdw" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"pdD" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"pdE" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/dark,/area/space) -"pdF" = (/obj/machinery/papershredder,/obj/floor_decal/corner/yellow/half{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"pdI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pdJ" = (/obj/machinery/status_display,/turf/simulated/wall/prepainted,/area/crew_quarters/sleep/bunk) -"pdK" = (/obj/structure/bed/chair/shuttle/blue{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"pdL" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/turf/simulated/floor/plating,/area/quartermaster/expedition) -"pdX" = (/obj/structure/table/standard,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/random/powercell,/obj/random/powercell,/turf/simulated/floor/tiled/techfloor,/area/space) -"pdZ" = (/obj/machinery/atmospherics/unary/tank/air{dir = 8},/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"ped" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/foreport) -"pej" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Quartermaster's Office"; sort_type = "Quartermaster's Office"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"pel" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pen" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"peo" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"pep" = (/obj/structure/closet/crate/secure/weapon,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"pev" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/space) -"pex" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/green{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"peD" = (/obj/machinery/suit_storage_unit/mining,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/brown/border{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"peF" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/ship/navigation{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/bridge) -"peH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"peL" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"peP" = (/obj/structure/table/reinforced,/obj/item/device/radio/electropack,/turf/simulated/floor/reinforced,/area/space) -"peQ" = (/obj/machinery/newscaster{pixel_y = -28},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"peU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"peY" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"pfc" = (/obj/floor_decal/solarpanel,/obj/machinery/power/solar{id = "auxsolarsport"; name = "Aft Port Solar Array"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/solar/port) -"pfe" = (/obj/structure/fitness/punchingbag,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"pfh" = (/obj/structure/sign/warning/compressed_gas,/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3port) -"pfn" = (/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"pfo" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pfq" = (/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/structure/table/standard,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer,/obj/item/device/integrated_electronics/analyzer{pixel_x = 6},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"pfr" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "do_windows"},/obj/machinery/door/blast/shutters/open{id_tag = "qm_office"; name = "QM Office Shutters"},/turf/simulated/floor/plating,/area/space) -"pfw" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "xenobio_desk"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"pfy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) -"pfE" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/structure/table/steel,/obj/item/storage/toolbox/emergency,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/hydrant{pixel_x = -28},/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"pfR" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pfT" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/bed/chair/pew/left,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/space) -"pfV" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"pfZ" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"pgb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"pge" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"pgg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"pgn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow/half{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) -"pgt" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"pgv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "Skynet_launch"; name = "Mech Bay"; opacity = 0},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/assembly/chargebay) -"pgw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{dir = 1; name = "Therapy Room"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pgC" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"pgI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access = newlist()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pgK" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Gravity Generator - SMES"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pgN" = (/obj/machinery/air_sensor{id_tag = "xenobot_sensor"; machine_name = "Xenoflora Enviroment"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology/xenoflora) -"pgO" = (/obj/machinery/space_heater,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"pgQ" = (/obj/floor_decal/carpet,/obj/floor_decal/carpet{dir = 8},/obj/floor_decal/carpet{dir = 10},/turf/simulated/floor/carpet,/area/space) -"pgS" = (/obj/structure/bed/chair/padded/blue,/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pgU" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor/northleft{name = "Security Checkpoint"},/obj/machinery/door/window/southleft{autoset_access = 0; name = "Security Checkpoint"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"pgW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/wood/walnut,/area/space) -"pgY" = (/obj/floor_decal/carpet/purple{dir = 8},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"pha" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"phb" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/space) -"phi" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/plating,/area/vacant/mess) -"phs" = (/obj/item/storage/slide_projector,/turf/simulated/floor/wood,/area/space) -"phx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/curtain{color = "#aa0000"},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/wood/maple,/area/space) -"phE" = (/obj/structure/bed/chair/padded/blue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"phJ" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"phN" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"phR" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"phW" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/corner/green/three_quarters{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hydroponics) -"pih" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"pij" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pik" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/machinery/seed_storage/xenobotany{dir = 4},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"pin" = (/obj/decal/cleanable/spiderling_remains,/obj/item/clothing/mask/gas/half,/obj/item/tank/oxygen_emergency_extended,/obj/item/extinguisher/mini,/obj/spider/stickyweb,/turf/simulated/floor/plating,/area/space) -"pip" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"piy" = (/obj/machinery/mineral/unloading_machine,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/plasticflaps,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"piA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/bed/chair/padded/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"piK" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/bed/chair/padded/purple,/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 8},/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/tiled,/area/space) -"piM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/borderfloor{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"pjb" = (/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pje" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/space) -"pjf" = (/obj/structure/bed/chair/armchair/black{dir = 8},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"pjg" = (/obj/machinery/atmospherics/tvalve/mirrored/digital{name = "phoron bypass valve"},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pji" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/button/blast_door{dir = 4; id_tag = "observation_shielding"; pixel_x = -24; pixel_y = 24},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/space) -"pjj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"pjk" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"pjt" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pjy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/space) -"pjA" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"pjE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"pjF" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"pjG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"pjL" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"pjN" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "qm_warehouse"; name = "Warehouse Shutters Control"; pixel_x = 24; req_access = list("ACCESS_CARGO")},/obj/machinery/mech_recharger,/mob/living/exosuit/premade/powerloader/old,/obj/floor_decal/spline/plain/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"pjX" = (/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "PetrovBiohazard"; name = "Petrov Biohazard Shutters"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"pke" = (/obj/machinery/vending/medical,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"pkh" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"pkj" = (/obj/floor_decal/techfloor,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/light_switch{pixel_x = -8; pixel_y = -23},/obj/machinery/button/alternate/door/bolts{id_tag = "medsafe"; name = "safe room door-control"; pixel_y = -23},/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"pkl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"pkq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/meter,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"pku" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/structure/curtain/open/bed,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"pkw" = (/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/forestarboard) -"pky" = (/obj/structure/bed/chair/padded/green{dir = 1},/turf/simulated/floor/tiled,/area/space) -"pkC" = (/obj/structure/window/reinforced/polarized{dir = 8; id = "iaaright"},/obj/structure/filingcabinet{pixel_x = -6},/obj/structure/filingcabinet{pixel_x = 5},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "iaadoorright"; name = "Office Door Control"; pixel_x = 5; pixel_y = 24; req_access = list("ACCESS_IAA")},/obj/machinery/button/windowtint{id = "iaaright"; pixel_x = -5; pixel_y = 24},/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 9},/turf/simulated/floor/carpet/blue,/area/space) -"pkZ" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"plb" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/wood/mahogany,/area/space) -"plk" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/inactive{dir = 1; pixel_y = 24},/turf/simulated/floor/wood/walnut,/area/space) -"plt" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "o22p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3port) -"plu" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/port) -"plv" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"plz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"plB" = (/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "bridge_outer_windows"},/turf/simulated/floor/plating,/area/space) -"plE" = (/obj/machinery/computer/modular/preset/engineering{dir = 4},/obj/machinery/button/blast_door{desc = "A remote control-switch for engine core."; dir = 4; id_tag = "BSD_windows"; name = "Bluespace Driver Chamber Windows Control"; pixel_x = -23; pixel_y = 8},/obj/machinery/button/alternate/door/bolts{desc = "A remote control-switch for the engine core airlock hatch bolts."; dir = 4; id_tag = "BSD_airlock"; name = "Containment Hatch Bolt Control"; pixel_x = -23; pixel_y = -5; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"plF" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"plN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"plR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"plT" = (/obj/structure/table/standard,/obj/item/storage/box/checkers/chess,/obj/item/storage/box/checkers/chess/red,/obj/item/board,/turf/simulated/floor/tiled/white,/area/space) -"plU" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"pma" = (/obj/floor_decal/carpet{dir = 8},/obj/floor_decal/spline/fancy/black,/obj/floor_decal/carpet,/obj/floor_decal/carpet{dir = 10},/turf/simulated/floor/carpet/red,/area/space) -"pmj" = (/obj/machinery/light{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"pmm" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_6_hatch"; name = "Escape Pod Seven Hatch"},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pmn" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"pmo" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/engine_setup/pump_max,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pmp" = (/obj/machinery/light,/obj/floor_decal/techfloor,/obj/structure/closet/crate/freezer/rations,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"pmF" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/button/flasher{dir = 8; id_tag = "security_pod_flash"; name = "Chamber Flasher"; pixel_x = 28; pixel_y = 10; req_access = list("ACCESS_SECURITY")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pmJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"pmK" = (/obj/wallframe_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"pmO" = (/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"pmR" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pmT" = (/obj/floor_decal/techfloor{dir = 8},/obj/structure/table/standard,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"pmV" = (/obj/structure/table/standard,/obj/random/clipboard,/obj/item/storage/briefcase,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"pmW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/green{dir = 6},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"pmX" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "escape_pod_5_pump"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pno" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"pnp" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"pnv" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"pnw" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"pnx" = (/obj/structure/table/standard,/obj/item/defibrillator/loaded,/obj/item/auto_cpr,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/obj/machinery/camera/network/medbay{c_tag = "Critical Wing - Reanimation"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"pnD" = (/obj/floor_decal/industrial/hatch/red,/obj/structure/iv_stand,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"pnE" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pnF" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/ebony,/area/space) -"pnG" = (/obj/structure/table/rack,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/storage/plants,/obj/item/storage/plants,/obj/item/device/scanner/plant,/obj/item/device/scanner/plant,/obj/item/device/geiger,/obj/item/device/geiger,/obj/item/material/hatchet,/obj/item/material/hatchet,/obj/machinery/light{dir = 8},/obj/item/shuttle_beacon,/obj/item/shuttle_beacon,/obj/item/stack/flag/yellow,/obj/item/stack/flag/yellow,/obj/item/stack/flag/teal,/obj/item/stack/flag/teal,/obj/item/stack/flag/red,/obj/item/stack/flag/red,/obj/item/stack/flag/green,/obj/item/stack/flag/green,/obj/item/stack/flag/blue,/obj/item/stack/flag/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"pnI" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/science{name = "Exploration Equipment"; req_access = newlist()},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pnK" = (/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"pnM" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"pnT" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3starboard) -"pnU" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pnV" = (/obj/machinery/air_sensor{id_tag = "n2o_sensor"},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) -"pob" = (/obj/structure/table/standard,/obj/item/paper{pixel_x = 4},/obj/item/pen{pixel_x = -2; pixel_y = 10},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"pom" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"pop" = (/turf/simulated/wall/r_wall/hull,/area/hydroponics) -"pou" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"poB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled/white,/area/space) -"poV" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"poX" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/corner/red/bordercee{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ppb" = (/turf/simulated/wall/r_wall/hull,/area/vacant/cargo) -"pph" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"ppn" = (/obj/floor_decal/techfloor,/obj/structure/bed/chair/comfy/purple{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"pps" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/floor_decal/borderfloorblack/corner{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"ppx" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"ppC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"ppM" = (/obj/structure/table/steel,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/storage/excavation,/obj/item/device/measuring_tape,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/brown/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"ppV" = (/obj/machinery/button/windowtint{dir = 1; id = "do_windows"; pixel_x = -21; pixel_y = -24},/obj/floor_decal/corner/yellow/half,/turf/simulated/floor/tiled,/area/space) -"pqb" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"pqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pqE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"pqF" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/crew_quarters/gym) -"pqK" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/modular/preset/aislot/research{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the cargo doors."; dir = 1; id_tag = "researchdoor_interior"; name = "Research Door Control"; pixel_x = 6; pixel_y = -24; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{dir = 1; id_tag = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -6; pixel_y = -24; req_access = list("ACCESS_RESEARCH")},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"pqN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pqP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"pqQ" = (/turf/simulated/wall/prepainted,/area/engineering/atmos/storage) -"pqS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/space) -"pqT" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"pqU" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"prk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"prl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"prr" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"prF" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"prJ" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"prK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/space) -"prO" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"prP" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"prT" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"prX" = (/obj/structure/catwalk,/obj/machinery/light/spot,/turf/simulated/open,/area/space) -"prY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"psd" = (/obj/floor_decal/industrial/outline/blue,/obj/machinery/button/alternate/door{dir = 4; id_tag = "med_crit_d1"; name = "Critical Wing First Exit"; pixel_x = -24; pixel_y = -8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"psh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/red/bordercorner{dir = 8},/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"psk" = (/obj/wallframe_spawn/reinforced/polarized/full{id = "cmo_windows"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_pub_hall"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/cmo) -"psl" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"psn" = (/obj/machinery/disposal,/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"psp" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; display_name = "Fore Dock"; frequency = 1380; id_tag = "nuke_shuttle_dock_airlock"; pixel_x = 20; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/techfloor{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"pss" = (/obj/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"pst" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"psy" = (/obj/machinery/computer/fusion/gyrotron{dir = 4; initial_id_tag = "aux_fusion_plant"; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"psA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"psD" = (/obj/structure/bed/chair/shuttle/blue{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{id_tag = "escape_pod_5"; name = "escape pod five controller"; pixel_x = -32; pixel_y = 21; req_access = list("ACCESS_SECURITY"); tag_door = "escape_pod_5_hatch"},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"psH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"psO" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"psR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/sensor{name = "Powernet Sensor - Auxiliary Power Storage"; name_tag = "Auxiliary Power Storage"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal,/obj/floor_decal/industrial/warning,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/auxpower) -"psS" = (/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 4},/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"psW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"psZ" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/solar{id = "auxsolarsbridge"; name = "Bridge Auxiliary Solar Array"},/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"ptb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ptq" = (/obj/structure/table/woodentable,/obj/decal/cleanable/dirt,/obj/decal/cleanable/cobweb,/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/random/trash,/turf/simulated/floor/wood/walnut,/area/space) -"ptr" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "eng4"; name = "First Deck Port Nacelle Access"; pixel_y = -20; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/plating,/area/thruster/d1port) -"ptt" = (/obj/structure/table/woodentable_reinforced,/obj/item/newspaper,/obj/item/material/ashtray,/turf/simulated/floor/wood,/area/space) -"ptu" = (/obj/structure/wall_frame,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"ptB" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"ptC" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ptD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/center) -"ptM" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"ptT" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"puf" = (/obj/structure/closet/secure_closet{name = "Secure Evidence Locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/space) -"pui" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"pun" = (/obj/floor_decal/carpet/orange{dir = 8},/turf/simulated/floor/carpet/orange,/area/space) -"puo" = (/obj/floor_decal/corner/green/border{dir = 6},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pup" = (/obj/floor_decal/techfloor/orange{dir = 10},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"put" = (/obj/floor_decal/techfloor{dir = 10},/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"puC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/space) -"puD" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"puE" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/flora/ausbushes/sunnybush,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"puK" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"puL" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled,/area/space) -"puM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"puV" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/closet/secure_closet{name = "long term chamber locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor/full,/obj/floor_decal/industrial/hatch/orange,/turf/simulated/floor/tiled/techfloor,/area/space) -"pva" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/computer/modular/preset/dock,/turf/simulated/floor/tiled,/area/space) -"pvb" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pve" = (/obj/machinery/door/window/brigdoor/westleft{dir = 2; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"pvi" = (/obj/item/stool/padded/red,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pvl" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"pvs" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"pvC" = (/obj/machinery/light/spot,/obj/floor_decal/corner/green/half,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"pvD" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"pvH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/fore) -"pvO" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"pvP" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"pvV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/space) -"pwh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/northleft{dir = 2},/obj/structure/table/rack{dir = 8},/obj/item/aiModule/reset,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pwm" = (/obj/item/implanter,/obj/item/scalpel/basic,/obj/item/reagent_containers/syringe/drugs,/obj/item/paper/sticky{name = "I not wall, i am door."; pixel_x = -25},/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"pwt" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"pwv" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; injecting = 1; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d1starboard) -"pwz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"pwH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"pwN" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "d1portnacelle"},/obj/machinery/atmospherics/valve/digital{id_tag = "RE1F"; name = "RE1 digital valve"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"pxj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"pxm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"pxq" = (/obj/structure/curtain{color = "#aa0000"},/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/wood/maple,/area/space) -"pxs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"pxz" = (/obj/floor_decal/corner/grey/border,/obj/structure/table/glass,/obj/random/soap,/obj/item/haircomb/random,/obj/item/haircomb/brush,/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"pxD" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pxI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "ai_bridge_pump"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/space) -"pxP" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"pxR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/port) -"pxV" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/security/nuke_storage) -"pxY" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/space) -"pyf" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"pyn" = (/turf/simulated/wall/r_wall/hull,/area/quartermaster/expedition/eva) -"pyq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pyr" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"pyu" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"pyv" = (/obj/structure/table/woodentable/maple,/obj/item/paper_bin,/obj/machinery/light/small,/obj/item/device/radio/intercom/locked/confessional{dir = 4; pixel_x = -24},/obj/item/pen,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"pyz" = (/obj/floor_decal/corner/paleblue,/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"pyJ" = (/obj/structure/bed/chair/armchair/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"pze" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - Auxiliary Air Storage"; dir = 8},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"pzl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{autoset_access = 0; name = "Medic's General Cabin"; req_access = list("ACCESS_MEDICAL")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/mahogany,/area/space) -"pzp" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"pzr" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 15000},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pzw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/industrial/outline/grey,/obj/structure/table/rack,/obj/item/stack/material/glass/boron{amount = 30},/obj/item/stack/material/glass/boron_reinforced{amount = 20},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"pzC" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pzD" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"pzM" = (/obj/structure/lattice,/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pzW" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; id = "co2_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) -"pzZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"pAe" = (/obj/floor_decal/corner/black/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pAj" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"pAr" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/obj/structure/flora/ausbushes/grassybush,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/button/blast_door{dir = 8; id_tag = "lounge_windows"; name = "Lounge Window Blast Doors"; pixel_x = 25},/turf/simulated/floor/grass/cut,/area/space) -"pAw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pAB" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"pAJ" = (/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"pAL" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/window/boron_reinforced{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pAP" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/obj/structure/closet/crate/secure/biohazard,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"pAT" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/centralstarboard) -"pAW" = (/turf/simulated/wall/prepainted,/area/maintenance/thirddeck/starboard) -"pAX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/bed/chair/padded/red,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"pBk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/space) -"pBm" = (/obj/landmark{name = "lightsout"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "AICoreLastResort"; name = "Last Resort"; opacity = 0},/obj/machinery/flasher{pixel_x = 24; pixel_y = 38},/turf/simulated/floor/reinforced{map_airless = 1},/area/turret_protected/ai) -"pBC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/corner/grey{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"pBE" = (/obj/machinery/porta_turret{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"pBJ" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "firingspace"; name = "Firing Range Shields"; pixel_x = 20; req_access = list("ACCESS_SEC_DOORS")},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/space) -"pBL" = (/obj/structure/table/rack,/obj/item/roller_bed{pixel_y = -4},/obj/item/roller_bed,/obj/item/roller_bed{pixel_y = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"pBQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pBU" = (/obj/structure/table/rack/dark,/obj/item/stack/material/aluminium/fifty,/obj/item/stack/material/steel/fifty,/obj/item/stack/material/steel/fifty,/obj/item/stack/material/steel/fifty,/obj/structure/railing/mapped,/obj/floor_decal/spline/plain/black{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"pBY" = (/obj/structure/reagent_dispensers/water_cooler{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 5},/obj/machinery/camera/network/security{c_tag = "Longterm - Living"; dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"pCc" = (/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"pCd" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"pCe" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pCm" = (/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1; tag_west = 3},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"pCq" = (/obj/floor_decal/industrial/warning/full,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "auxair"; name = "Auxiliary Air Storage Exterior Access Console"; pixel_x = 24; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"pCG" = (/obj/machinery/light,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/closet/firecloset,/obj/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"pCO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"pCP" = (/obj/machinery/air_sensor{id_tag = "n2_sensor"},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) -"pCR" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"pCV" = (/obj/machinery/oxygen_pump{dir = 8; pixel_x = -27},/obj/structure/hygiene/drain,/obj/structure/hygiene/shower{dir = 4},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pDj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"pDv" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"pDy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"pDz" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/self_destruct,/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"pDI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "toilet2"; name = "Lock"; pixel_x = 24},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"pDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pDM" = (/obj/paint_stripe/red,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/turf/simulated/floor/plating,/area/space) -"pDN" = (/obj/item/device/synthesized_instrument/violin,/obj/item/clothing/head/nursehat,/obj/item/clothing/head/nursehat,/obj/machinery/light{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"pDQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark,/area/space) -"pEh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/bed/chair/padded/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pEp" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"pEv" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/space) -"pEw" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/pager/medical{name = "Call Medics button"; pixel_y = 27},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"pEW" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"pEX" = (/obj/paint_stripe/red,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall/prepainted,/area/space) -"pFd" = (/turf/simulated/wall/r_wall/prepainted,/area/storage/tech) -"pFg" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"pFs" = (/obj/machinery/flasher{id_tag = "security_third_cell_flash"; name = "Floor mounted flash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pFu" = (/obj/structure/closet/l3closet/scientist,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"pFv" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"pFy" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"pFz" = (/obj/structure/grille,/turf/simulated/open,/area/space) -"pFH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"pFP" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"pGe" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"pGj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pGn" = (/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"pGs" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/fourthdeck/port) -"pGu" = (/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"pGw" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"pGD" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/computer/modular/preset/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pGE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"pGF" = (/obj/machinery/door/window/westleft{dir = 1; name = "Medical Reception"},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pGI" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"pGT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/corner/red{dir = 1},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pHc" = (/obj/floor_decal/corner/green/three_quarters{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/floor_decal/corner/purple/border{dir = 9},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"pHh" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pHq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"pHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"pHt" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"pHA" = (/obj/structure/closet/secure_closet/crew/research,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/folder/nt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"pHG" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"pHK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"pHL" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/padded,/obj/item/bedsheet/captain,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pHN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/item/storage/box/detergent,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"pHO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/honey_extractor,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"pHQ" = (/obj/structure/flora/ausbushes/fullgrass,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass/cut,/area/space) -"pIb" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"pId" = (/obj/machinery/door/airlock/research{name = "Robotics Laboratory"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"pIl" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"pIy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"pIA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"pIG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"pIK" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"pIL" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pIT" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"pIW" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{color = null; dir = 4},/obj/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"pIX" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/red,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"pIY" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/space) -"pJe" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pJm" = (/obj/structure/flora/seaweed/large,/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"pJp" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/obj/structure/handrail{dir = 8},/turf/space,/area/space) -"pJv" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pJy" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"pJF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/command{autoset_access = 0; name = "Briefing Room"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pJG" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/table/woodentable/mahogany,/obj/structure/flora/pottedplant/shoot{pixel_y = 10},/obj/floor_decal/carpet/red,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/red,/area/space) -"pJO" = (/turf/simulated/wall/r_wall/hull,/area/storage/tech) -"pJV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"pJZ" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"pKa" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"pKn" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pKq" = (/obj/structure/sign/warning/docking_area{dir = 1; pixel_y = -32},/turf/space,/area/space) -"pKv" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"pKx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/alarm/nobreach{dir = 4; pixel_x = -23},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pKy" = (/obj/machinery/vending/coffee{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"pKC" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/space) -"pKJ" = (/obj/structure/table/standard,/obj/item/device/radio{pixel_x = 6; pixel_y = 9},/obj/item/flora/pottedplantsmall/leaf,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/office) -"pKK" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{name = "Water Stores"},/obj/item/taperoll/engineering/applied,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pKO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/stack/material/steel,/turf/simulated/floor/plating,/area/space) -"pKV" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"pLd" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/ship/engines{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"pLe" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"pLg" = (/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/constructable_frame/machine_frame,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white/monotile,/area/space) -"pLk" = (/obj/machinery/floodlight{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"pLl" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"pLq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"pLr" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/wood/maple{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"pLs" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{id_tag = "BSD_windows"; name = "Bluespace Chamber Lockdown"},/turf/simulated/floor/plating,/area/space) -"pLt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"pLy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/carpet/red,/area/space) -"pLF" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/bed/sofa/r/brown{dir = 8},/turf/simulated/floor/tiled,/area/space) -"pLH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/medical{name = "Medical Storage"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"pLK" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/space) -"pLV" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/flora/pottedplant/flower{pixel_y = 13},/obj/structure/sign/directions/engineering{dir = 8; pixel_x = -32; pixel_y = -1},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"pMp" = (/obj/wallframe_spawn,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"pMx" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"pMI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_fore_starboard_pump"},/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/airlock_sensor{id_tag = "td_fore_starboard_sensor"; master_tag = "td_fore_starboard"; pixel_x = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"pMN" = (/obj/floor_decal/borderfloorblack/corner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"pMV" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/closet/medical_wall/filled{pixel_y = 32},/turf/simulated/floor/tiled,/area/holocontrol) -"pMW" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/black/border{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/camera/network/security{c_tag = "Security - Interrogation One"; dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"pNe" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"pNm" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pNp" = (/obj/machinery/disposal/small{dir = 4},/obj/floor_decal/corner/beige/three_quarters{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"pNx" = (/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/fourthdeck/fore) -"pNC" = (/obj/structure/hygiene/sink/kitchen{pixel_y = 22},/obj/floor_decal/corner/green/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"pNE" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"pNJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/space_heater,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"pNR" = (/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/turf/simulated/floor/plating,/area/space) -"pNV" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/wood/walnut,/area/space) -"pNZ" = (/obj/floor_decal/spline/fancy/black{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/icecream_vat,/obj/machinery/light/spot{dir = 8},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"pOm" = (/obj/machinery/door/airlock/glass/medical{dir = 4; name = "Chemistry"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/medical/chemistry) -"pOn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"pOA" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"pOD" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"pOE" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"pOJ" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"pOK" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/plating,/area/maintenance/waterstore) -"pOS" = (/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 9},/turf/simulated/floor/carpet/blue,/area/space) -"pPd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/techfloor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"pPl" = (/obj/machinery/vending/wallmed2{dir = 4; pixel_x = -23},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/monotile,/area/space) -"pPq" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/starboard) -"pPr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pPu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pPw" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/dispenser,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"pPx" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"pPK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"pPL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pQa" = (/obj/structure/table/woodentable/walnut,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/curtain/bed{pixel_y = -32},/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = -4; pixel_y = 5},/obj/item/reagent_containers/food/drinks/glass2/shot{pixel_x = 8; pixel_y = -3},/turf/simulated/floor/wood/maple,/area/space) -"pQe" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/waterstore) -"pQh" = (/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"pQo" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/random/closet,/obj/structure/sign/warning/pods/east{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"pQr" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/self_destruct,/obj/machinery/light,/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"pQs" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3port) -"pQt" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1starboard) -"pQv" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood/bamboo,/area/space) -"pQz" = (/obj/structure/closet/crate/freezer/rations,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"pQG" = (/obj/structure/curtain{color = "#aa0000"},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/wood/maple,/area/space) -"pQI" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"pQN" = (/obj/floor_decal/corner/purple/half,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"pQX" = (/obj/structure/crematorium{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pQY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green,/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"pQZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"pRa" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"pRb" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"pRh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light/spot{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"pRi" = (/turf/simulated/wall/prepainted,/area/hydroponics) -"pRv" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"pRA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 8},/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"pRK" = (/obj/machinery/pipedispenser/disposal,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"pRM" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pRZ" = (/obj/machinery/vending/coffee{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/space) -"pSa" = (/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"pSd" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/blue{dir = 6},/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"pSk" = (/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/spline/fancy/black/corner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"pSm" = (/obj/structure/bed/sofa/m/brown{dir = 1},/obj/floor_decal/carpet/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/red,/area/space) -"pSn" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/camera/network/research{c_tag = "Research - Xenobiology Fore"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pSq" = (/obj/machinery/door/airlock/hatch/maintenance/bolted{frequency = 1379; id_tag = "prototype_interior"; name = "Fusion Maintenance"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/prototype/engine) -"pSt" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftstarboard) -"pSy" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"pSA" = (/obj/structure/catwalk,/obj/machinery/light/spot{dir = 1},/turf/simulated/open,/area/space) -"pSF" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/bed/chair/padded/yellow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"pSH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow,/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pSP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"pST" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide{start_pressure = 0},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"pTb" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"pTs" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1port) -"pTy" = (/turf/simulated/wall/prepainted,/area/hallway/primary/fourthdeck/center) -"pTA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"pTH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/waterstore) -"pTK" = (/obj/item/handcuffs/cable/red,/obj/item/handcuffs/cable/tape,/obj/decal/cleanable/blood/drip,/obj/random/medical/lite,/obj/random/medical,/obj/item/reagent_containers/spray/sterilizine,/obj/machinery/light/small,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"pTM" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"pTN" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"pTS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pUb" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"pUh" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/black/border{dir = 4},/obj/floor_decal/corner/black/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/space) -"pUi" = (/obj/machinery/door/airlock/maintenance{name = "Teleport Maintenance"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"pUn" = (/obj/structure/closet/walllocker{pixel_x = -28},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/crate/freezer,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/clothing/mask/surgical,/obj/item/clothing/gloves/latex,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"pUq" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/space) -"pUw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/monitoring) -"pUG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"pUM" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"pUW" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/equipstorage) -"pUY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pVv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"pVx" = (/turf/simulated/wall/prepainted,/area/maintenance/seconddeck/aftport) -"pVA" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"pVD" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"pVE" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/floor_decal/industrial/outline/grey,/obj/machinery/camera/network/command{c_tag = "Command - EVA - Storage"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"pVF" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"pVH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/space) -"pVK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"pVO" = (/obj/structure/table/rack,/obj/item/clothing/accessory/storage/bandolier/safari,/obj/item/gun/launcher/net,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pVU" = (/obj/structure/window/reinforced/polarized{dir = 8; id = "iaaright"},/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/structure/holoplant,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"pWb" = (/obj/structure/coatrack,/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/lino,/area/space) -"pWc" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"pWe" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/bamboo,/area/space) -"pWh" = (/obj/structure/closet/secure_closet/personal/empty,/obj/floor_decal/corner/green/border{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pWi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"pWl" = (/obj/machinery/telecomms/processor/preset_three,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"pWm" = (/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/paint_stripe/red,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"pWo" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/floor_decal/industrial/warning/corner,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"pWK" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"pWP" = (/obj/machinery/light/small,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"pWR" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"pXe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Substation - Third Deck"; dir = 1},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"pXh" = (/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/shuttle/petrov/equipment) -"pXj" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"pXl" = (/obj/structure/sign/warning/lethal_turrets,/turf/simulated/wall/r_wall/hull,/area/space) -"pXx" = (/obj/structure/closet/emcloset/anchored,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"pXF" = (/obj/paint_stripe/red,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/turf/simulated/floor/plating,/area/space) -"pXI" = (/obj/fluid_mapped,/obj/item/bananapeel,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"pXM" = (/obj/structure/bed/sofa/m/lime{dir = 10},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet/blue2,/area/space) -"pXP" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/space) -"pYa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/machinery/light/spot,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"pYd" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_smes) -"pYe" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"pYj" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/corner/black/mono,/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"pYq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"pYr" = (/obj/machinery/portable_atmospherics/canister/boron,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"pYx" = (/obj/machinery/cryopod,/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"pYB" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"pYI" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"pYK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"pYM" = (/obj/shuttle_landmark/escape_pod/start/pod7,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"pYT" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"pZi" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/bed/chair/comfy/purple,/turf/simulated/floor/tiled,/area/rnd/locker) -"pZq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/steel,/obj/item/reagent_containers/spray/cleaner,/obj/item/device/taperecorder,/obj/item/device/destTagger,/obj/item/stack/package_wrap/cargo_wrap,/obj/machinery/recharger/wallcharger{dir = 1; pixel_y = -22},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"pZt" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"pZv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"pZw" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "hangar_hallway_doors"; name = "Visitors"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"pZz" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"pZF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"pZG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/rotating_alarm/supermatter{dir = 8; pixel_x = 14},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pZH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"pZL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"pZM" = (/obj/floor_decal/corner/black/three_quarters{dir = 4},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/space) -"pZP" = (/turf/simulated/wall/prepainted,/area/hallway/primary/firstdeck/fore) -"pZT" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 3500},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"pZV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"qae" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/space) -"qah" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"qaj" = (/obj/floor_decal/carpet{dir = 4},/obj/floor_decal/carpet{dir = 1},/obj/floor_decal/carpet{dir = 5},/turf/simulated/floor/carpet/red,/area/space) -"qak" = (/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/substation/thirddeck) -"qar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled/steel_grid,/area/space) -"qau" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"qax" = (/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"qay" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qaC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/foreport) -"qaM" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 4},/turf/simulated/open,/area/space) -"qaU" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"qaX" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_5_berth_hatch"; name = "Escape Pod Five"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qbg" = (/obj/structure/towel/fitness,/obj/floor_decal/corner/black/half{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"qbk" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"qbl" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"qbt" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/table/woodentable/walnut,/obj/item/reagent_containers/food/drinks/teapot,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp,/obj/item/material/ashtray/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"qby" = (/obj/structure/bed/chair/office/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"qbA" = (/obj/floor_decal/ntlogo{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/space) -"qbE" = (/obj/floor_decal/techfloor/corner,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"qbF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"qbG" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"qbH" = (/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"qbO" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qbZ" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"qch" = (/obj/structure/table/standard,/obj/item/storage/box/donkpocket_mixed{pixel_x = 5; pixel_y = 12},/obj/item/storage/box/cups{pixel_x = -5},/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/rnd/office) -"qci" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"qck" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/turf/simulated/floor/tiled,/area/space) -"qcm" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "auxair"; name = "Auxiliary Air Storage Exterior Access Console"; pixel_y = 24; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"qcw" = (/obj/structure/bed/chair/office/comfy/blue{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"qcH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"qcJ" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"qcN" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/device/flash,/obj/item/device/flashlight,/obj/item/storage/secure/safe{pixel_y = 24},/obj/item/gun/energy/gun/small/secure,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qcO" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway - Turbolift"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"qcQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"qda" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"qdc" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/vacant/prototype/control) -"qdg" = (/obj/machinery/light_switch{dir = 4; pixel_x = -21; pixel_y = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"qdi" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "xenobio_surg"; name = "Space Shutters"; opacity = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"qdn" = (/obj/structure/table/steel,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qds" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qdz" = (/obj/machinery/botany/editor,/obj/floor_decal/corner/green/half,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"qdK" = (/obj/structure/bed/chair/comfy/brown,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"qdS" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qee" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/airlock) -"qeg" = (/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"qei" = (/obj/structure/railing/mapped,/obj/structure/closet/wardrobe/orange,/obj/item/clothing/head/soft/orange,/obj/item/clothing/head/soft/orange,/obj/floor_decal/borderfloor/full,/obj/floor_decal/industrial/hatch/orange,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"qek" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"qeq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/aft) -"qez" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Hallway - Aft"},/turf/simulated/floor/tiled/white,/area/space) -"qeH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"qeK" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"qeU" = (/obj/floor_decal/corner/purple/half{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"qeZ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"qfc" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"qff" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"qfh" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"qfi" = (/obj/floor_decal/solarpanel,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar{id = "auxsolarstarboard"; name = "Aft Starboard Solar Array"},/turf/simulated/floor/airless,/area/space) -"qfk" = (/obj/structure/closet/l3closet/general,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qfs" = (/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"qfu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"qfv" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/floor_decal/borderfloorblack/corner2,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"qfB" = (/obj/machinery/vending/generic{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"qfC" = (/obj/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood/walnut,/area/space) -"qfG" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{id = "cafewindow"},/turf/simulated/floor/plating,/area/space) -"qfI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/blue/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"qfJ" = (/obj/structure/flora/pottedplant/fern,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plating,/area/space) -"qfK" = (/obj/machinery/disposal,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light_switch{pixel_x = 10; pixel_y = -21},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"qfM" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/blast_door{id_tag = "AICoreLastResort"; name = "AI Core Last Resort"; pixel_x = 25; pixel_y = -35},/turf/simulated/floor/reinforced{map_airless = 1},/area/turret_protected/ai) -"qfV" = (/obj/structure/table/standard,/obj/item/device/assembly/mousetrap/armed,/obj/item/reagent_containers/food/snacks/cheesewedge/aged,/obj/item/toy/plushie/mouse,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"qfW" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "null"; name = "Captain's office"; secured_wires = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qfX" = (/obj/floor_decal/corner/yellow/half{dir = 1},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/space) -"qfZ" = (/obj/structure/closet/l3closet/scientist,/obj/structure/catwalk,/obj/machinery/light,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"qga" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"qgf" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/table/gamblingtable,/obj/item/reagent_containers/food/drinks/pitcher{pixel_x = 6; pixel_y = 12},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{pixel_x = -6; pixel_y = 7},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn,/obj/machinery/light,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"qgg" = (/obj/structure/bed/chair/wood/walnut{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"qgo" = (/turf/simulated/wall/prepainted,/area/security/opscheck) -"qgy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qgC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"qgH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"qgW" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white/monotile,/area/space) -"qhg" = (/obj/machinery/hologram/holopad/longrange,/turf/simulated/floor/carpet/blue2,/area/space) -"qhl" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) -"qhs" = (/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qhu" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/sign/warning/compressed_gas{dir = 1; pixel_y = -32},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"qhw" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"qhC" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"qhF" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"qhU" = (/obj/structure/table/rack,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/obj/machinery/camera/network/security{c_tag = "Security - Bridge Checkpoint"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qic" = (/obj/floor_decal/corner/red,/obj/machinery/vending/snack{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qie" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/table/steel,/obj/item/reagent_containers/food/drinks/glass2/coffeecup,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = 5; pixel_y = 7},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"qih" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qij" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"qik" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"qin" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qit" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/space) -"qiu" = (/obj/floor_decal/borderfloorwhite{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/bed/chair/office/comfy/brown{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"qix" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{id_tag = "med_dorms_blast_doors"; name = "Space Shutters"},/turf/simulated/floor/plating,/area/space) -"qiF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"qiK" = (/obj/structure/sign/directions/bridge{dir = 8; pixel_y = 24},/obj/structure/sign/directions/science{dir = 8; pixel_y = 31},/obj/structure/railing/mapped,/turf/simulated/floor/tiled,/area/space) -"qiM" = (/obj/floor_decal/borderfloorblack,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"qiT" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"qiW" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qja" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"qjc" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"qji" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"qju" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/security{name = "Interrogation"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"qjv" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"qjy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light/spot,/turf/simulated/floor/wood/walnut,/area/space) -"qjC" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 1},/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/walnut,/area/space) -"qjD" = (/obj/floor_decal/borderfloor{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"qjM" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"qjP" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"qjQ" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"qjU" = (/obj/floor_decal/techfloor,/obj/machinery/flasher{dir = 1; id_tag = "ai_core"; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"qjW" = (/obj/machinery/atmospherics/omni/filter{tag_east = 2; tag_north = 1; tag_south = 8; tag_west = 7},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"qjX" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -21},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qjZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/wallframe_spawn/reinforced_phoron/hull,/turf/simulated/floor/plating,/area/engineering/engine_room) -"qkq" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"qkx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qkP" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qkU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/paint_stripe/yellow,/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"qli" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qlk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/blue/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"qlr" = (/obj/machinery/vending/generic{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"qlu" = (/obj/wallframe_spawn/reinforced/polarized/full{id = "cmo_windows"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/cmo) -"qlx" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/organ/internal/posibrain,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"qlD" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qms" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"qmw" = (/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"qmA" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qmB" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"qmG" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"qmH" = (/obj/machinery/light/spot{dir = 8},/obj/structure/closet/emcloset/anchored,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/corner/green/three_quarters,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/hydroponics) -"qmR" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/power/terminal,/obj/structure/cable,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/red/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"qmS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"qnl" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "xenobio3"; name = "Containment Blast Doors"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"qnp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/grey/border{dir = 4},/obj/floor_decal/corner/grey/border{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"qnx" = (/obj/machinery/mass_driver{dir = 4; id_tag = "enginecore"},/obj/machinery/power/supermatter,/obj/engine_setup/core,/turf/simulated/floor/greengrid{map_airless = 1},/area/engineering/engine_room) -"qnA" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/bed/chair/armchair/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"qnF" = (/obj/machinery/sleeper,/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"qnJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"qnS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/light/spot,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qob" = (/obj/floor_decal/corner/black/mono,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"qod" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"qoe" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{dir = 2; id_tag = "med_pat_ward"; name = "Infirmary Window Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/plating,/area/space) -"qoh" = (/obj/machinery/door/airlock/civilian{locked = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/taperoll/engineering/applied,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/vacant/mess) -"qop" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"qoq" = (/obj/floor_decal/techfloor,/obj/structure/table/rack,/obj/random/maintenance,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"qoE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qoF" = (/obj/decal/cleanable/dirt,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"qoL" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/fourthdeck/aft) -"qoP" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"qoR" = (/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/orange,/obj/structure/window/boron_reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qoW" = (/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"qoZ" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qpe" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/outlet_injector{id = "o21p_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3starboard) -"qpl" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_5_berth_hatch"; name = "Escape Pod Five"},/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/foreport) -"qpn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"qpr" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/grass/cut,/area/rnd/xenobiology/xenoflora) -"qpw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"qpy" = (/obj/machinery/papershredder,/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qpE" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/random/toolbox,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qpM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"qpN" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"qpQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"qpY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"qqa" = (/obj/decal/cleanable/dirt,/obj/item/trash/semki,/obj/structure/cable/green,/obj/item/stack/cable_coil/green,/obj/item/frame/apc,/turf/simulated/floor/tiled/freezer,/area/space) -"qqh" = (/obj/item/scrap_lump,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qqj" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"qqk" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"qqC" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas/half,/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/space) -"qqF" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/space) -"qqH" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"qqN" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qrk" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"qrn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"qrp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/space) -"qrt" = (/obj/structure/bed/chair/office/comfy/teal,/obj/landmark/start{name = "Chief Medical Officer"},/obj/structure/curtain/bed{pixel_y = -32},/turf/simulated/floor/wood/maple,/area/space) -"qrw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/command{c_tag = "AI Upload - Access"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"qrB" = (/obj/structure/closet/fridge,/obj/item/reagent_containers/food/drinks/bottle/small/beer,/obj/item/reagent_containers/food/drinks/bottle/small/beer,/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake,/obj/item/reagent_containers/food/drinks/bottle/small/beer,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"qrU" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"qrY" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "observation_shielding"; name = "Observation Shield"},/turf/simulated/floor/plating,/area/space) -"qse" = (/obj/machinery/light/led/small{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/structure/table/steel_reinforced,/obj/machinery/chemical_dispenser/bar_soft/full{pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/space) -"qsg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"qsi" = (/obj/floor_decal/corner/paleblue,/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"qsk" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/space) -"qsl" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"qsm" = (/obj/floor_decal/techfloor{dir = 10},/obj/structure/table/standard,/obj/random/toolbox,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"qsn" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qsw" = (/obj/structure/disposaloutlet,/obj/machinery/shield_diffuser,/obj/structure/disposalpipe/trunk{dir = 8},/obj/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qsA" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/purple/bordercorner2{dir = 8},/obj/machinery/smartfridge/secure/extract,/obj/machinery/button/blast_door{dir = 1; id_tag = "xenobio_surg"; name = "Containment Blast Doors"; pixel_y = -21; req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"qsC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qsD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/mahogany,/area/space) -"qsE" = (/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"qsI" = (/obj/structure/railing/mapped,/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/spline/plain/yellow{dir = 4},/obj/floor_decal/industrial/warning,/obj/machinery/camera/network/supply{c_tag = "Supply Office - Warehouse"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"qsO" = (/obj/structure/railing/mapped,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/space) -"qsX" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Garden - Port"; dir = 1},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/grass/cut,/area/space) -"qtq" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"qtr" = (/obj/machinery/light/small{dir = 8},/obj/item/soap/pink_soap,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"qtw" = (/obj/structure/railing/mapped,/turf/simulated/open,/area/maintenance/seconddeck/aftstarboard) -"qtF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/blue/bordercorner{dir = 8},/obj/floor_decal/borderfloor/corner{dir = 1},/turf/simulated/floor/tiled,/area/space) -"qtJ" = (/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"qtL" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/vacant/mess) -"qtN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qtP" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood{icon_state = "wood_broken4"},/area/maintenance/firstdeck/forestarboard) -"qtU" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "armory_lethal"; name = "Armory Lethal blast door-control"; pixel_x = 24; req_access = list("ACCESS_ARMORY")},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qtY" = (/obj/structure/sign/warning/pods/south{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"qub" = (/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"que" = (/obj/structure/table/standard,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled,/area/rnd/locker) -"quf" = (/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qui" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/shuttle/petrov/equipment) -"qus" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"quv" = (/obj/floor_decal/borderfloorblack{dir = 10},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"quz" = (/obj/structure/bed/chair/padded/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"quD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor/orange,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"quP" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"quV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"qvc" = (/obj/structure/table/woodentable,/obj/item/material/clipboard{pixel_x = 5; pixel_y = 3},/obj/item/material/clipboard{pixel_x = -2; pixel_y = -3},/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = -7; pixel_y = 12},/turf/simulated/floor/wood/walnut,/area/space) -"qvi" = (/obj/floor_decal/corner/purple/border,/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"qvm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"qvr" = (/obj/paint/red,/turf/simulated/wall/r_titanium,/area/space) -"qvx" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/space) -"qvA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"qvF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/structure/sign/warning/airlock{dir = 4; pixel_x = -32},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/space) -"qvI" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/item/stack/material/steel/fifty,/obj/item/stack/material/steel{amount = 20},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qvJ" = (/obj/floor_decal/spline/fancy/black,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/towel/ilove,/turf/simulated/floor/grass/cut,/area/space) -"qvO" = (/obj/structure/bed/sofa/m/lime,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/blue2,/area/space) -"qvW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"qvX" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"qvY" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qwe" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"qwk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"qwu" = (/obj/floor_decal/borderfloor/corner{dir = 8},/turf/simulated/floor/plating,/area/space) -"qwz" = (/obj/floor_decal/spline/fancy/black{dir = 10},/obj/structure/bed/chair/padded/green{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"qwA" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"qwC" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"qwJ" = (/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"qwK" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/outlet_injector{id = "fuel1p_in"; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3starboard) -"qwN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"qwO" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/space) -"qwS" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/maintenance{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qwT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass/security{dir = 8; id_tag = "security_entry_airlock_exit"; name = "Security Exit"},/turf/simulated/floor/tiled/monotile,/area/space) -"qxe" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qxi" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"qxv" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"qxz" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"qxD" = (/obj/machinery/vending/snack{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qxP" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"qxU" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"qxX" = (/obj/floor_decal/industrial/warning,/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"qyi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"qyv" = (/turf/simulated/wall/prepainted,/area/quartermaster/expedition/storage) -"qyD" = (/obj/machinery/door/airlock/glass/civilian{name = "Primary Tool Storage"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"qyK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"qyL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qyP" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/lava/orange{pixel_x = -6; pixel_y = 13},/obj/item/book/manual/evaguide{pixel_x = 8; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"qyQ" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/light/small{dir = 8},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qyT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"qyW" = (/obj/floor_decal/corner/grey/full,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"qzh" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qzj" = (/obj/machinery/jukebox/custom_tape,/obj/structure/table/woodentable/maple,/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"qzl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"qzs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"qzu" = (/obj/shuttle_landmark/ert/deck3,/turf/space,/area/space) -"qzw" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qzL" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "bridge_windows"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/bridge) -"qzM" = (/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1starboard) -"qzQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"qzT" = (/obj/structure/table/woodentable/walnut,/obj/item/lipstick/purple,/obj/item/lipstick/jade,/obj/item/lipstick/black,/obj/item/lipstick,/obj/item/storage/mirror{pixel_x = 24},/turf/simulated/floor/wood/ebony,/area/space) -"qAf" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled,/area/space) -"qAh" = (/obj/structure/bed/sofa/m/black{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"qAn" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/chapel/main) -"qAu" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green,/turf/simulated/floor/wood/walnut,/area/space) -"qAw" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qAW" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qAY" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/structure/bed/chair/padded/red{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) -"qBa" = (/obj/floor_decal/borderfloorblack,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/space) -"qBc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"qBe" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qBf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"qBk" = (/obj/floor_decal/borderfloorblack{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge) -"qBr" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"qBx" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/space) -"qBD" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/table/woodentable/walnut,/obj/structure/hygiene/sink{pixel_y = -12},/obj/item/reagent_containers/glass/bucket/wood{pixel_y = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"qBH" = (/obj/engine_setup/smes,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_smes) -"qBN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"qBO" = (/obj/floor_decal/industrial/warning,/obj/structure/table/standard,/obj/item/storage/box/monkeycubes{pixel_x = 2},/obj/machinery/camera/network/research{c_tag = "Research - Xenobiology Aft"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qBP" = (/obj/structure/bed/chair/shuttle{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"qBR" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"qBV" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"qBW" = (/obj/structure/closet/secure_closet/injection,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"qBY" = (/obj/structure/closet/fridge/meat,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qCr" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qCt" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/visible/fuel,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"qCv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/machinery/camera/network/command{c_tag = "Command - Head of Personnel"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qCA" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 4},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/item/trash/raisins,/turf/simulated/floor/wood/walnut,/area/space) -"qCU" = (/obj/machinery/atmospherics/binary/pump/on{name = "gas supply pump"; target_pressure = 200},/turf/simulated/floor/tiled/techfloor,/area/space) -"qCV" = (/obj/floor_decal/borderfloorblack/corner,/obj/floor_decal/corner/purple/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"qDa" = (/obj/machinery/power/solar_control{dir = 1; id = "auxsolarport"; name = "Port Solar Control"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"qDh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"qDi" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"qDl" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"qDo" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"qDr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/space) -"qDx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/sign/warning/airlock{dir = 8; pixel_x = 32},/obj/floor_decal/borderfloorblack,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"qDB" = (/obj/structure/closet/secure_closet/decktech,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"qDD" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"qDE" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qDI" = (/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"qDN" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; id_tag = "escape_pod_5_berth"; name = "escape pod five berth controller"; pixel_x = -20; tag_door = "escape_pod_5_berth_hatch"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"qDO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleporter"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"qDS" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/office) -"qEa" = (/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"qEj" = (/obj/shuttle_landmark/petrov/out,/turf/space,/area/space) -"qEm" = (/obj/machinery/door/airlock/glass/maintenance,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qEo" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/northleft,/obj/structure/table/rack{dir = 8},/obj/item/aiModule/purge,/obj/item/aiModule/quarantine,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qEp" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/techfloor,/obj/floor_decal/corner/black{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - South"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"qEw" = (/obj/structure/table/standard,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"qEQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"qFc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"qFq" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qFr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"qFD" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/space) -"qFF" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3port) -"qFH" = (/obj/floor_decal/techfloor{dir = 9},/obj/structure/bed/chair/padded/blue,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/button/alternate/door/bolts{id_tag = "medsafe_fore"; name = "safe room door-control"; pixel_x = -25},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"qFV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/civilian{name = "Bartenders'"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qFZ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{dir = 8; name = "Central Stairwell"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qGg" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "library_space_lower"; name = "Space Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"qGs" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/space) -"qGw" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"qGA" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"qGC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"qGO" = (/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"qGQ" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"qGT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet,/area/chapel/main) -"qGV" = (/obj/structure/bed/chair/pew/left/mahogany{dir = 1; icon_state = "chair_pewchapel_left_over"},/obj/decal/cleanable/dirt,/obj/structure/bed/chair/pew/mahogany,/turf/simulated/floor/wood/walnut,/area/space) -"qGX" = (/obj/machinery/cryopod{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"qHf" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"qHq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"qHz" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/foreport) -"qHE" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{dir = 4; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"qHR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"qHV" = (/obj/structure/bed/chair/office/comfy/red{dir = 4},/obj/landmark/start{name = "Detective"},/turf/simulated/floor/tiled/dark,/area/space) -"qHZ" = (/obj/structure/flora/pottedplant/tropical,/obj/machinery/light_switch{dir = 1; pixel_x = -6; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/space) -"qIa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"qId" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/floor_decal/techfloor/orange{dir = 10},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"qIe" = (/turf/simulated/floor/tiled/dark,/area/chapel/main) -"qIk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"qIp" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qIs" = (/obj/floor_decal/corner/research/mono,/obj/machinery/computer/rdservercontrol{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"qIw" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"qIB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/port) -"qIK" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{id_tag = "guppy_shuttle_pump"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/tele_beacon,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/embedded_controller/radio/airlock/docking_port{cycle_to_external_air = 1; dir = 1; frequency = 1331; id_tag = "guppy_shuttle"; pixel_x = 32; pixel_y = -20; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"qIQ" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/requests_console{department = "Security"; departmentType = 1; name = "Security RC"; pixel_x = -32},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qIT" = (/obj/machinery/button/blast_door{dir = 4; id_tag = "bsa_space"; name = "Obstruction Field Disperser Space Shield"; pixel_x = -24; req_access = list("ACCESS_GUN")},/obj/structure/sign/warning/vacuum{dir = 4; pixel_x = -45},/obj/machinery/conveyor_switch{id = "bsa"; name = "Obstruction Field Disperser shell loader"},/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"qIZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "firingspace"; name = "FIRING RANGE SAFETY SHIELD"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/red,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"qJj" = (/obj/structure/bed/chair/wheelchair,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"qJo" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/hygiene/sink{pixel_y = -12},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"qJr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{dir = 4; name = "Steward's Room"},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"qJJ" = (/obj/item/modular_computer/telescreen/preset/trashcompactor{pixel_x = -32},/turf/simulated/floor/plating,/area/space) -"qJK" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"qJO" = (/obj/structure/mopbucket,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qJP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/green/border,/obj/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"qJR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"qKa" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"qKb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"qKd" = (/obj/structure/closet/crate/trashcart,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/space) -"qKf" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/flasher{id_tag = "ai_core"; pixel_y = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"qKk" = (/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qKs" = (/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 9},/obj/structure/curtain/bed{pixel_y = 32},/turf/simulated/floor/carpet/purple,/area/space) -"qKw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"qKx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qKz" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/obj/structure/railing/mapped,/turf/space,/area/space) -"qKJ" = (/obj/structure/closet/l3closet/scientist,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qKK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"qKL" = (/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/airlock/research{id_tag = "rbtk_door"; name = "Robotics Laboratory"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"qKU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"qLd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"qLg" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/structure/closet/crate/freezer,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"qLh" = (/obj/machinery/door/window/southright{dir = 1; name = "Test Chamber"},/obj/machinery/door/window/southright{name = "Test Chamber"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"qLi" = (/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "ai_core_outer"; locked = 1; name = "AI Core Internal Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ai_core_airlock"; name = "exterior access button"; pixel_x = 24; req_access = list("ACCESS_AI_UPLOAD")},/turf/simulated/floor/tiled/dark/monotile,/area/turret_protected/ai) -"qLn" = (/obj/shuttle_landmark/skipjack/dock,/turf/space,/area/space) -"qLt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 8},/obj/structure/holoplant,/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Observatory"; dir = 4},/turf/simulated/floor/tiled,/area/space) -"qLx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"qLA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"qLC" = (/obj/structure/curtain/bed,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/mahogany,/area/space) -"qLF" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Heat Exchanger Output"},/turf/simulated/wall/ocp_wall,/area/space) -"qLI" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/crew_quarters/gym) -"qLJ" = (/obj/floor_decal/corner/black/three_quarters{dir = 8},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/space) -"qLK" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"qLW" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"qMa" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"qMb" = (/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -23; pixel_y = -3},/obj/structure/closet/secure_closet{name = "Security Equipment Locker"; req_access = list("ACCESS_SECURITY")},/obj/item/storage/mre/menu7,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/item/storage/box/donut,/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"qMl" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/corner/green/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/decal/cleanable/dirt,/obj/item/camera_assembly,/turf/simulated/floor/tiled/white,/area/space) -"qMm" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"qMA" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/structure/bed/chair/rounded/beige{dir = 4},/turf/simulated/floor/carpet,/area/space) -"qME" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"qMH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/storage/primary) -"qMJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"qMT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"qMW" = (/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qMX" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"qNb" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"qNe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"qNi" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"qNl" = (/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"qNm" = (/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/corner/green{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"qNr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"qNt" = (/obj/wallframe_spawn,/obj/structure/barricade,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qNw" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"qNx" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vacant/prototype/control) -"qNA" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"qNK" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"qNQ" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/floor_decal/borderfloorblack/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"qNV" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"qNW" = (/turf/simulated/floor/carpet/orange,/area/space) -"qNZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"qOa" = (/obj/machinery/stasis_cage,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qOc" = (/obj/item/paper/sticky{name = "I not wall, i am door."; pixel_x = 25},/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"qOk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"qOn" = (/turf/simulated/wall/prepainted,/area/maintenance/fourthdeck/forestarboard) -"qOv" = (/turf/simulated/wall/prepainted,/area/crew_quarters/sleep/bunk) -"qOy" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"qOz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qOC" = (/obj/machinery/vending/boozeomat{req_access = list("ACCESS_BAR")},/obj/machinery/light/led/small{dir = 1},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/spline/fancy/black{dir = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"qOG" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/machinery/smartfridge/secure/medbay{req_access = list()},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"qOH" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light/spot{dir = 8},/obj/machinery/disposal,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"qOK" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 9},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"qOS" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "escape_pod_5_pump"},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qOU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"qPa" = (/obj/structure/closet/secure_closet{name = "Secure Evidence Locker"; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/space) -"qPe" = (/obj/structure/table/steel,/obj/random/powercell,/obj/item/frame/fire_alarm,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"qPp" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light_switch{dir = 1; pixel_x = -9; pixel_y = -21},/turf/simulated/floor/tiled/dark,/area/space) -"qPv" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/ebony,/area/space) -"qPx" = (/turf/simulated/floor/tiled,/area/security/brig) -"qPz" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"qPA" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qPH" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qPL" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"qPR" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"qPS" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/space) -"qQa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/vacant/monitoring) -"qQu" = (/obj/structure/closet/crate/secure/biohazard/alt{req_access = list("ACCESS_XENOBIO")},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Equipment Room"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"qQx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qQz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/nav_light,/obj/structure/handrail{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qQA" = (/obj/wallframe_spawn/reinforced_phoron/titanium,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"qQC" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"qQF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/medical{name = "Hospital Back Room"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qQG" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qQI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) -"qQL" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"qQM" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/item/reagent_containers/food/snacks/slice/xenomeatbread/filled{pixel_x = 17},/obj/item/folder/nt{pixel_x = -10; pixel_y = 7},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"qQO" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "CO21p_out"; initialize_directions = 1; internal_pressure_bound = 1000; internal_pressure_bound_default = 1000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3starboard) -"qQR" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "waste_in"; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qQX" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"qQY" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"qRd" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qRo" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qRq" = (/obj/floor_decal/borderfloor/corner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"qRr" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"qRx" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"qRF" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/table/woodentable_reinforced/ebony,/obj/item/storage/box/glasses{pixel_y = 7},/obj/item/storage/box/glass_extras/sticks,/turf/simulated/floor/wood/walnut,/area/space) -"qRL" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"qRN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"qRO" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"qRS" = (/obj/floor_decal/corner/red/full,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"qRU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"qRV" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/machinery/computer/modular/preset/engineering{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qRX" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"qRZ" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/structure/bed/sofa/l/brown{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"qSl" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/obj/machinery/button/windowtint{dir = 8; id = "pathfinder_office"; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/button/blast_door{dir = 8; id_tag = "exp_leader_window_to_space"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/tiled,/area/space) -"qSm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"qSp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/maintenance/seconddeck/aftport) -"qSv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/binary/pump/high_power{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"qSx" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/misc_lab) -"qSy" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/item/storage/box/lights/mixed,/obj/item/clothing/gloves/thick/duty,/obj/machinery/light/small,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/foreport) -"qSD" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"qSQ" = (/obj/structure/bed/sofa/r/black{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"qSS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/space) -"qSX" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"qSZ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"qTe" = (/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"qTi" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"qTm" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"qTB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/green,/area/space) -"qTL" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/rotating_alarm/supermatter{dir = 1; pixel_y = -14},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"qTM" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3port) -"qUe" = (/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"qUp" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/turf/simulated/floor/tiled/dark,/area/space) -"qUq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"qUr" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/red/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"qUA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"qUN" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/virology{id_tag = "virology_access_outer"; locked = 1},/obj/item/taperoll/engineering/applied,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/white/monotile,/area/space) -"qUR" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"qUW" = (/obj/machinery/computer/cryopod{pixel_y = -24},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"qVc" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qVf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/ntlogo{dir = 1},/turf/simulated/floor/tiled,/area/rnd/entry) -"qVi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"qVk" = (/obj/structure/bed/chair/wood/walnut{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"qVo" = (/obj/shuttle_landmark/merc/deck3,/turf/space,/area/space) -"qVv" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"qVw" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"qVC" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/space) -"qVF" = (/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 12},/obj/floor_decal/corner/red/border{dir = 10},/obj/machinery/light/led/small,/obj/floor_decal/spline/fancy/black{dir = 10},/obj/structure/closet/shipping_wall/filled{pixel_x = -32},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Bar - Counter"; dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"qVG" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/device/flashlight/lamp{pixel_x = -3; pixel_y = 13},/obj/item/book/manual/nt_regs,/obj/floor_decal/carpet/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"qVH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/camera/network/fourth_deck{c_tag = "Escape Pods - Port"; dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"qVI" = (/turf/simulated/wall/prepainted,/area/chapel/main) -"qVP" = (/obj/structure/table/standard,/obj/machinery/light/spot{dir = 1},/obj/floor_decal/corner/grey{dir = 5},/obj/item/flame/lighter/random,/obj/item/storage/fancy/smokable/dromedaryco{pixel_x = -4; pixel_y = 6},/obj/item/deck/cards{pixel_x = 6; pixel_y = 9},/turf/simulated/floor/tiled/dark,/area/space) -"qVU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"qVX" = (/obj/structure/table/marble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 8},/obj/machinery/light/spot,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"qWf" = (/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/r_wall/hull,/area/hallway/primary/fourthdeck/center) -"qWi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"qWk" = (/obj/structure/sign/directions/security{dir = 4; pixel_y = -24},/obj/structure/sign/directions/infirmary{dir = 4; pixel_y = -31},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/tiled,/area/space) -"qWn" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "solar_port_outer"; name = "Engineering External Access"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qWo" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled,/area/space) -"qWx" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{dir = 4; id_tag = "vir_blast_window"},/turf/simulated/floor/plating,/area/space) -"qWy" = (/obj/structure/table/standard,/obj/item/hand_labeler,/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"qWz" = (/obj/machinery/door/firedoor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qWD" = (/obj/structure/table/rack,/obj/item/storage/box/trackimp,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/head/welding,/obj/machinery/button/blast_door{dir = 4; id_tag = "armory_lethal"; name = "Armory Lethal blast door-control"; pixel_x = -24; req_access = list("ACCESS_ARMORY")},/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"qWF" = (/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qWK" = (/obj/machinery/washing_machine,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/space) -"qWS" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"qWV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Captain"; sort_type = "Captain"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"qXj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"qXo" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"qXp" = (/obj/machinery/disposal,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/floor_decal/spline/fancy/wood/corner,/obj/structure/sign/directions/security{dir = 4; pixel_x = 32},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"qXy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{name = "Head of Personnel's Quarter"; secured_wires = 1; stripe_color = "#b7f27d"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"qXB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/freezer,/area/space) -"qXM" = (/obj/floor_decal/corner/green{dir = 1},/obj/structure/bed/chair/office/green{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"qXP" = (/obj/machinery/door/airlock/hatch{autoset_access = 0; dir = 4; name = "Cockpit"; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"qXQ" = (/turf/simulated/open,/area/maintenance/thirddeck/aftstarboard) -"qXR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/self_destruct,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"qYj" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"qYn" = (/obj/structure/lattice,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"qYq" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qYt" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_4"},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/port) -"qYz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"qYD" = (/obj/structure/table/standard,/obj/random/firstaid,/obj/machinery/light/small/emergency{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"qYE" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"qYI" = (/obj/structure/cable/yellow,/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"qYL" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/one{pixel_x = 7; pixel_y = 10},/obj/item/reagent_containers/food/drinks/pitcher{pixel_x = -3; pixel_y = 4},/obj/machinery/camera/network/supply{c_tag = "Supply Office - Office Room"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"qYN" = (/obj/machinery/door/window/brigdoor/northleft{dir = 2; name = "thruster vent access"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/door/blast/regular{dir = 2; id_tag = "ThrusterVents"; name = "Thruster Blast Door"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"qYS" = (/obj/structure/curtain/medical,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"qYU" = (/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "concheckwindow"; name = "Operation Checkpoint Shutters"; opacity = 0},/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/security/opscheck) -"qYV" = (/obj/machinery/access_button/airlock_interior{master_tag = "sd_starboard"; name = "interior access button"; pixel_x = -24; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/door/airlock/external/glass/bolted/cycling{id_tag = "sd_starboard_inner"; name = "Second Deck Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"qYZ" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"qZb" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"qZf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"qZg" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"qZj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"qZk" = (/obj/floor_decal/corner/red,/obj/structure/table/steel,/obj/machinery/microwave,/turf/simulated/floor/tiled/steel_grid,/area/space) -"qZm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"qZn" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor,/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"qZo" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"qZq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"qZt" = (/obj/structure/lattice,/obj/random/junk,/obj/random/trash,/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"qZE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/machinery/sparker{id_tag = "engines"; pixel_x = -24},/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/outlet_injector{injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3port) -"qZF" = (/obj/machinery/light/spot{dir = 8},/obj/machinery/computer/modular/preset/security{dir = 4},/obj/floor_decal/corner/red/mono,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"qZJ" = (/obj/structure/table/woodentable/mahogany,/obj/item/storage/bible/kojiki,/obj/item/storage/bible/quran,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"qZL" = (/obj/floor_decal/corner/black/half,/obj/floor_decal/corner/red/bordercorner2,/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/floor_decal/corner/red/bordercorner{dir = 8},/obj/machinery/camera/network/second_deck{c_tag = "Gym"; dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"qZR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/civilian{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"rac" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{dir = 4; name = "Fourth Deck Substation"; req_access = newlist()},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/fourthdeck) -"ral" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"rap" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rau" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"rav" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"raP" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"raU" = (/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng2"; name = "Third Deck Port Nacelle Access"; pixel_y = 21; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/atmospherics/valve/shutoff/fuel{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/thruster/d3port) -"raX" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"rbf" = (/obj/random/trash,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"rbg" = (/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"rbh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/techfloor{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"rbm" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rbn" = (/obj/structure/table/standard,/obj/item/material/ashtray/bronze,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/turf/simulated/floor/tiled,/area/space) -"rbs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"rbt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"rbu" = (/obj/structure/sign/nanotrasen{dir = 8},/turf/simulated/wall/r_titanium,/area/space) -"rbz" = (/obj/machinery/door/window/brigdoor/southright{autoset_access = 0; dir = 8; name = "Test Chamber"; req_access = list("ACCESS_TOXINS")},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"rbD" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftstarboard) -"rbE" = (/obj/structure/table/rack{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/item/stack/material/plasteel/ten,/obj/item/stack/material/plasteel/ten,/obj/item/stack/material/plasteel/ten,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rbF" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"rbM" = (/obj/floor_decal/corner/black/full,/obj/structure/reagent_dispensers/water_cooler{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"rbR" = (/obj/structure/table/standard,/obj/item/storage/toolbox/mechanical,/obj/item/storage/box/evidence,/turf/simulated/floor/tiled/dark,/area/space) -"rbU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rbV" = (/obj/structure/catwalk,/obj/item/reagent_containers/food/snacks/meat/monkey,/obj/item/reagent_containers/glass/bucket,/turf/simulated/open,/area/space) -"rcc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/green/border,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"rcj" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/meter,/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"rcp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/decal/cleanable/dirt,/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"rcx" = (/obj/machinery/door/airlock/research{dir = 4; name = "Canister Storage"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"rcD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"rcN" = (/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"rcO" = (/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/monotile,/area/space) -"rcS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"rcV" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"rcW" = (/obj/machinery/vending/generic{dir = 1},/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"rdf" = (/obj/machinery/computer/modular/preset/security{dir = 8},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/black/border{dir = 5},/obj/machinery/button/windowtint{dir = 8; id = "interrogation_no1_windows"; pixel_x = 22; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/space) -"rdj" = (/obj/decal/cleanable/blood,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/foreport) -"rdn" = (/obj/floor_decal/corner/purple/full,/obj/structure/closet/cabinet,/obj/item/book/manual/research_and_development,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/space) -"rdv" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"rdH" = (/obj/floor_decal/industrial/outline/grey,/obj/random/obstruction,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"rdI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"rdK" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "emergency cooling valve"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"rdM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"rdN" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/obj/structure/closet/emcloset/anchored,/turf/simulated/floor/tiled/dark,/area/space) -"rdU" = (/obj/structure/table/steel_reinforced,/obj/item/storage/toolbox/mechanical,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"rdY" = (/obj/floor_decal/solarpanel,/obj/machinery/power/solar{id = "auxsolarsport"; name = "Aft Port Solar Array"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/solar/port) -"red" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"rem" = (/turf/simulated/wall/prepainted,/area/holocontrol) -"rep" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad/longrange,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) -"res" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"rev" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"reI" = (/obj/machinery/body_scan_display{pixel_y = -32},/obj/machinery/computer/operating{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"reM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"reN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass/security{dir = 8; name = "Security Airlock"},/turf/simulated/floor/tiled/monotile,/area/space) -"reP" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 1},/obj/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/space) -"reQ" = (/turf/simulated/wall/r_wall/hull,/area/crew_quarters/commissary) -"reS" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Supply"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"reW" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/table/standard,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/stack/package_wrap/cargo_wrap,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/space) -"rfa" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"rfn" = (/obj/floor_decal/borderfloorblack,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/space) -"rfp" = (/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine{department = "CE"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 5; name = "Chief Engineer RC"; pixel_y = 30},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"rfs" = (/obj/structure/bed/chair/padded/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"rfE" = (/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/wood/mahogany,/area/space) -"rfI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"rfN" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"rfT" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"rfU" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/shuttle/petrov/cockpit) -"rfX" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"rfZ" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/blue,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"rgg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"rgx" = (/obj/shuttle_landmark/escape_pod/start/pod8,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"rgy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"rgK" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/freezer,/area/space) -"rgN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"rgQ" = (/obj/floor_decal/corner/green/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/space) -"rgS" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"rhb" = (/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"rhc" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"rhi" = (/obj/structure/table/reinforced,/obj/item/storage/firstaid/surgery,/obj/machinery/body_scan_display{pixel_y = -28},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"rhk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor,/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"rho" = (/obj/structure/largecrate,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"rhs" = (/obj/machinery/suit_storage_unit/science,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"rhx" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"rhy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"rhB" = (/obj/paint_stripe/yellow,/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"rhC" = (/obj/machinery/computer/modular/preset/civilian,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"rhD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"rhF" = (/obj/floor_decal/corner/black/full,/obj/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"rhH" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/selfestructgrid,/area/security/nuke_storage) -"rhJ" = (/obj/floor_decal/techfloor{dir = 6},/obj/structure/bed/chair/padded/blue{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"rhQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/door/airlock/external{autoset_access = 0; dir = 4; frequency = 1331; id_tag = "guppy_shuttle_outer"; name = "Guppy External Access"; req_access = list("ACCESS_GUPPY")},/obj/machinery/door/blast/regular{id_tag = "guppy_hatch"; name = "Rear Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"rhT" = (/obj/structure/cart{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rhV" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "fuel4p_in"; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1port) -"rhZ" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"ria" = (/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/obj/machinery/door/window/brigdoor/northleft{dir = 8; name = "Security Checkpoint"},/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "lobb_shutt"; opacity = 0},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"rig" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"rip" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced,/area/space) -"riq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/fore) -"rit" = (/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish,/turf/simulated/floor/beach/sand,/area/space) -"riB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"riP" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"riQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/closet/walllocker{pixel_x = -28},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/green/border{dir = 10},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"rjb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"rjg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"rjh" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"rjw" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"rjy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/blast/shutters/open{id_tag = "med_to_maint"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rjz" = (/obj/machinery/door/airlock/highsecurity{name = "Telecoms Storage"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/storage) -"rjA" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"rjF" = (/obj/floor_decal/solarpanel,/obj/machinery/power/solar{id = "auxsolarsport"; name = "Aft Port Solar Array"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless,/area/solar/port) -"rjG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/seconddeck/center) -"rjN" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rjS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/space) -"rkb" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "CMO"},/obj/floor_decal/corner/blue{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"rkh" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "solar_bridge_port_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 24; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"rkp" = (/turf/simulated/wall/r_wall/prepainted,/area/quartermaster/storage) -"rku" = (/obj/structure/bed/chair/wood/walnut,/turf/simulated/floor/plating,/area/space) -"rky" = (/obj/machinery/light{dir = 8},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"rkB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"rkR" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "PetrovShield"; name = "Blast Shutter Control"; pixel_x = 5; pixel_y = -3},/obj/item/device/radio,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Cockpit"; dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"rkT" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/space) -"rkW" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rkX" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"rkZ" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/engineering/engine_monitoring) -"rle" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/full,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/ce) -"rlt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rly" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/reagent_dispensers/watertank,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rlH" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"rlI" = (/obj/structure/holoplant,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/chapel/office) -"rlJ" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"rlQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/holocontrol) -"rlU" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"rlW" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rmf" = (/obj/structure/closet/crate/trashcart,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/space) -"rmo" = (/obj/structure/bed/chair/office/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"rmB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"rmQ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/power/apc/high{dir = 8; name = "west bump"; pixel_x = -25},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"rmS" = (/obj/floor_decal/spline/plain/black{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rmW" = (/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external/escapepod{dir = 4; id_tag = "escape_pod_4_berth_hatch"; name = "Escape Pod Four"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"rnx" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/grille,/obj/machinery/door/blast/regular{dir = 8; id_tag = "engineroomvent"; name = "Engine Room Vent"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/engineering/engine_room) -"rnD" = (/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"rnI" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"rnO" = (/obj/machinery/button/blast_door{id_tag = "qm_warehouse2"; name = "Warehouse Door Control"; pixel_y = 27; req_access = list("ACCESS_CARGO")},/obj/vehicle/train/cargo/engine,/obj/floor_decal/spline/plain/brown{dir = 6},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"rnP" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"rnQ" = (/obj/structure/bed/chair/padded/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"rnX" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 6},/obj/machinery/computer/guestpass{dir = 1; pixel_y = -23},/turf/simulated/floor/carpet/blue2,/area/space) -"rob" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"rom" = (/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"roq" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"rot" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"rox" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"roC" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/air_sensor{id_tag = "rust_sensor"},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"roN" = (/obj/structure/hygiene/shower{dir = 8; pixel_x = 9},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"roS" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/power/port_gen/pacman{sheets = 25},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rpl" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/glass/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rpv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/button/blast_door{id_tag = "xenobioa2"; name = "Containment Blast Doors"; pixel_x = -6; pixel_y = 21; req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"rpx" = (/obj/structure/table/woodentable/walnut,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"rpA" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"rpD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rpE" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"rpI" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rpP" = (/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/forestarboard) -"rpR" = (/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/reagentgrinder,/obj/item/reagent_containers/glass/beaker/large,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rpY" = (/obj/structure/flora/ausbushes/grassybush,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"rqd" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/helm,/obj/item/device/radio/intercom{pixel_y = 26},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"rqg" = (/obj/wallframe_spawn/reinforced/hull,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular{id_tag = "vir_blast_window"},/turf/simulated/floor/plating,/area/space) -"rql" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "td_fore_starboard_outer"; name = "Third Deck Fore Starboard Nacelle Access"},/obj/machinery/access_button/airlock_exterior{dir = 1; master_tag = "td_fore_starboard"; name = "exterior access button"; pixel_x = 24; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"rqp" = (/obj/structure/sign/deck/third{dir = 8; pixel_x = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/sign/directions/supply{dir = 8; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"rqr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"rqs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{id_tag = "wardoor"; name = "Warden"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rqt" = (/obj/floor_decal/corner/grey{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"rqD" = (/obj/machinery/door/airlock/hatch{name = "Cargo Bay Right"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/space) -"rqK" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/floor/plating,/area/space) -"rqW" = (/turf/simulated/wall/prepainted,/area/maintenance/thirddeck/aftport) -"rqX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"rrc" = (/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rri" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rrl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"rrs" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"rru" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"rrx" = (/obj/structure/table/rack,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"rrR" = (/obj/structure/table/steel,/obj/item/paper_bin{pixel_x = 6; pixel_y = 7},/obj/item/device/flashlight/lamp/green{pixel_x = -7; pixel_y = 9},/obj/random/clipboard{pixel_x = 3; pixel_y = -2},/obj/item/pen{pixel_x = 4; pixel_y = 4},/obj/item/pen/red{pixel_x = 2; pixel_y = 6},/obj/item/device/binoculars,/turf/simulated/floor/tiled/dark,/area/space) -"rrX" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/plating,/area/space) -"rrY" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"rrZ" = (/obj/structure/table/reinforced,/obj/item/storage/firstaid/surgery,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"rsb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"rsf" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/table/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/decal/cleanable/dirt,/obj/random/maintenance,/obj/item/camera_assembly,/turf/simulated/floor/tiled/white,/area/space) -"rsi" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"rso" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"rsp" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"rsq" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/obj/structure/handrail,/turf/space,/area/space) -"rst" = (/obj/structure/dispenser/oxygen,/obj/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"rsv" = (/obj/structure/closet{anchored = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"rsE" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/space) -"rsF" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/grass/cut,/area/space) -"rsG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/corner/brown/mono,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/monotile,/area/space) -"rsS" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rta" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"rtg" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/wall/r_wall/hull,/area/space) -"rtl" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled,/area/space) -"rto" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"rtD" = (/obj/machinery/computer/air_control{input_tag = "test_xenoflora_in"; name = "Test Chamber Gas Monitor"; output_tag = "test_xenoflora_out"; sensor_name = "Xenoflora Environment"; sensor_tag = "xenobot_sensor"},/obj/floor_decal/corner/green/three_quarters{dir = 8},/obj/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"rtE" = (/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Robotics Laboratory"; sort_type = "Robotics Laboratory"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"rtR" = (/obj/machinery/computer/rdservercontrol{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director"; departmentType = 3; name = "Research Director RC"; pixel_x = 32},/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/heads/office/rd) -"rtT" = (/turf/simulated/open,/area/space) -"rtU" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rtV" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/black/border{dir = 10},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/camera/network/security{c_tag = "Security - Interrogation Two"; dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"rtY" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"rub" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 40},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"rui" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/wood/mahogany,/area/space) -"ruj" = (/obj/structure/bed/sofa/r/brown{dir = 1},/obj/floor_decal/carpet/red,/obj/floor_decal/carpet/red{dir = 8},/obj/floor_decal/carpet/red{dir = 10},/turf/simulated/floor/carpet/red,/area/space) -"ruk" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/civilian{id_tag = "old_maintaince_privatedorm"; locked = 1; name = "Old Dorms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rut" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"ruy" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/random/ironing_board_structure,/obj/item/ironing_iron,/obj/machinery/light/spot,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"ruz" = (/obj/structure/table/standard,/obj/item/storage/box/lights/led_neon,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"ruB" = (/obj/shuttle_landmark/merc/deck2,/turf/space,/area/space) -"ruE" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{autoset_access = 0; dir = 4; name = "Supply Desk"},/obj/machinery/door/window/brigdoor/southright{dir = 8; name = "Supply Desk"; req_access = newlist()},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "sup_office"; name = "Supply Desk Shutters"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 4},/obj/item/material/bell{pixel_x = 6; pixel_y = 1},/turf/simulated/floor/plating,/area/quartermaster/office) -"ruI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"ruP" = (/obj/wallframe_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/machinery/door/blast/regular{dir = 2; id_tag = "ThrusterVents"; name = "Thruster Blast Door"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/engine_room) -"rvc" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"rvf" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"rvh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/civilian{dir = 4; name = "Kitchen"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"rvk" = (/obj/machinery/hologram/holopad,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/black/border{dir = 8},/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"rvp" = (/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engineering{c_tag = "Engineering - Substation - Fourth Deck"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"rvq" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/obj/structure/sign/warning/nosmoking_1{desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; pixel_y = 32},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"rvv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rvx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"rvy" = (/obj/floor_decal/corner/black/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rvB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/space) -"rvD" = (/obj/floor_decal/corner/lightgrey/mono,/obj/structure/bed/chair/office/green{dir = 4},/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/bordercee,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"rwb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rwc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"rwo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"rwx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/decal/cleanable/generic,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"rwA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"rwJ" = (/obj/machinery/door/blast/shutters{dir = 2; id_tag = "qm_warehouse2"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) -"rwM" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/spot{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"rwV" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"rxa" = (/obj/structure/table/rack,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/railing/mapped{dir = 1},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"rxd" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"rxq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"rxw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"rxI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{id_tag = "iaadoorleft"; name = "Internal Affairs Agent"; secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rxK" = (/obj/floor_decal/corner/black/three_quarters{dir = 1},/obj/floor_decal/corner/purple/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"rxO" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"rxR" = (/obj/machinery/suit_storage_unit/mining,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"rxU" = (/obj/structure/bed/chair/padded/purple{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"rxZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"rye" = (/obj/floor_decal/corner/paleblue,/obj/structure/bed/chair/office/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"ryk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"ryn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ryq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"ryz" = (/obj/machinery/vending/coffee,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/wood/mahogany,/area/space) -"ryC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/lime/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/space) -"ryI" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"ryJ" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"ryR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"ryY" = (/obj/structure/closet/l3closet/general/multi,/obj/machinery/light{dir = 4},/obj/floor_decal/spline/plain/yellow{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"ryZ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"rzd" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 4},/obj/structure/bed/padded,/obj/item/bedsheet/green,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"rzi" = (/obj/floor_decal/corner/green/border{dir = 6},/obj/floor_decal/corner/green/bordercorner2{dir = 5},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/floor_decal/corner/green/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/white/monotile,/area/space) -"rzl" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"rzq" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 5},/obj/structure/table/steel_reinforced,/obj/item/storage/firstaid/radiation{pixel_y = 7},/obj/item/storage/firstaid/fire{pixel_y = -2},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"rzH" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/light/small{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"rzI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/lattice,/turf/space,/area/space) -"rzP" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space) -"rzT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"rAd" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 10},/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"rAf" = (/obj/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rAg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/wallframe_spawn/no_grille,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"rAj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"rAl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "petrov_shuttle_dock_pump"},/obj/machinery/airlock_sensor{id_tag = "petrov_shuttle_dock_sensor"; master_tag = "petrov_shuttle_dock"; pixel_x = -24},/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"rAm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"rAu" = (/obj/structure/table/steel,/obj/machinery/button/blast_door{id_tag = "PetrovShield"; name = "Blast Shutter Control"; pixel_x = 5; pixel_y = -3},/obj/machinery/button/alternate/door{desc = "A remote control-switch for airlocks."; id_tag = "PetrovAccess"; name = "Petrov Interior Door Control"; pixel_x = -5; pixel_y = 6},/obj/machinery/button/blast_door{id_tag = "PetrovBiohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = -3},/obj/machinery/light{dir = 8},/obj/machinery/button/blast_door{id_tag = "concheckwindow2"; name = "Office Shutter Control"; pixel_x = 5; pixel_y = 6},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rAC" = (/obj/machinery/door/window/westright{dir = 1; name = "Medical Reception"},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rAI" = (/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"rAK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/space) -"rAR" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"rAU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/medical{name = "Hospital"},/obj/machinery/door/blast/shutters/open{dir = 2; id_tag = "med_pat_ward"; name = "Infirmary Window Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rAX" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"rAZ" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc/critical{dir = 1; name = "north bump"; pixel_y = 21},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/space) -"rBf" = (/obj/structure/table/rack,/obj/item/tape_roll,/obj/item/stack/material/cardboard/fifty,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/item/shuttle_beacon,/obj/item/shuttle_beacon,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/yellow{dir = 9},/obj/random/maintenance/clean,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"rBp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"rBx" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/field_generator,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"rBy" = (/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/aftport) -"rBA" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"rBD" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rBL" = (/obj/machinery/light/spot,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled,/area/security/brig) -"rBO" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"rBS" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"rBT" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/item/cell/high,/turf/simulated/floor/tiled/steel_grid,/area/space) -"rBU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/civilian{dir = 4; name = "Restroom"},/turf/simulated/floor/tiled/monotile,/area/space) -"rBV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"rBY" = (/obj/structure/table/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/ballistic,/obj/item/clothing/head/helmet/ballistic,/obj/item/clothing/head/helmet/ballistic,/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"rBZ" = (/obj/machinery/recharge_station,/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/wood/mahogany,/area/space) -"rCc" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"rCd" = (/obj/machinery/atmospherics/unary/tank{color = "#ff0000"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rCs" = (/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"rCy" = (/obj/item/stool/bar,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"rCB" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/space) -"rCE" = (/obj/machinery/door/window/brigdoor/eastright{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/structure/closet/walllocker{pixel_x = 28},/obj/item/hand_labeler,/turf/simulated/floor/tiled/techmaint,/area/space) -"rCI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"rCL" = (/obj/machinery/vending/cola{dir = 1},/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/space) -"rCN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rCX" = (/obj/structure/table/rack{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small,/obj/item/stack/material/steel/fifty,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rCZ" = (/obj/machinery/power/port_gen/pacman{sheets = 25},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"rDf" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/window/boron_reinforced{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rDh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/space) -"rDj" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"rDm" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"rDr" = (/turf/simulated/floor/reinforced,/area/exploration_shuttle/medical) -"rDs" = (/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1starboard) -"rDu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/pew,/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/wood,/area/space) -"rDD" = (/obj/floor_decal/corner/black/border{dir = 5},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rDH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rDP" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/office) -"rDR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"rEc" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/standard,/obj/item/cell/high,/obj/item/cell/high,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/techfloor,/area/space) -"rEd" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rEh" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"rEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/space) -"rEv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/yellow{dir = 8},/obj/machinery/fabricator,/turf/simulated/floor/tiled,/area/quartermaster/office) -"rEy" = (/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"rEG" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/paint_stripe/red,/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized{id = "forensicswindow"},/turf/simulated/floor/plating,/area/space) -"rEQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass/command,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rFc" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1starboard) -"rFj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"rFm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"rFv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"rFB" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/tiled/dark,/area/space) -"rFG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"rFL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet/red,/area/space) -"rFM" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "td_fore_starboard_pump"},/obj/floor_decal/industrial/warning/full,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"rFP" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/mineral/stacking_machine{input_turf = 1; output_turf = 2},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/quartermaster/hangar) -"rFS" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/flashlight/lamp/lava/orange{pixel_x = 9; pixel_y = 13},/obj/machinery/space_heater/stationary/on{pixel_x = -30; set_temperature = 348.15},/obj/structure/bed/sauna_bench/middle,/turf/simulated/floor/wood/ebony,/area/space) -"rFV" = (/obj/machinery/vending/cigarette{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"rFX" = (/obj/machinery/door/firedoor,/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/engineering{dir = 4; name = "Second Deck Substation"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/seconddeck) -"rGb" = (/obj/floor_decal/corner/black/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rGn" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"rGu" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rGI" = (/obj/machinery/door/airlock/multi_tile/research{frequency = 1379; id_tag = "xenolow_airlock_outer"; locked = 1; name = "Xenobiology External Airlock"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"rGK" = (/obj/machinery/uniform_vendor{dir = 4; icon_state = "robotics"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/computer/cryopod{pixel_x = -32},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"rGS" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"rGX" = (/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 9},/turf/simulated/floor/carpet/blue3,/area/space) -"rHt" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"rHA" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"rHE" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_main_reg"; name = "Infirmary Entry Shutters"},/turf/simulated/floor/plating,/area/medical/staging) -"rHM" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/seconddeck/foreport) -"rHO" = (/obj/structure/sign/warning/radioactive{dir = 1; pixel_y = -32},/obj/structure/catwalk,/turf/simulated/open,/area/space) -"rHY" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"rIc" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/rnd/entry) -"rIo" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/newscaster{pixel_x = -28},/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/space) -"rIt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"rIu" = (/obj/structure/table/steel,/obj/item/paper_bin{pixel_y = 5},/obj/item/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/folder/red,/obj/item/storage/toolbox/mechanical,/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/turf/simulated/floor/tiled/techfloor,/area/space) -"rIw" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/industrial/warning/full,/obj/machinery/portable_atmospherics/powered/pump,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rIx" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 15},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"rID" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"rIH" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 10},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/space) -"rIM" = (/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 10},/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"rIQ" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_9_hatch"; name = "Escape Pod Nine Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rIX" = (/obj/floor_decal/corner/purple/three_quarters{dir = 8},/obj/structure/railing/mapped{color = "#8c911d"; dir = 8; init_color = "#8c911d"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"rIZ" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rJe" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/mahogany,/area/space) -"rJn" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"rJu" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/sign/warning/nosmoking_1{desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; pixel_y = 32},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"rJx" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"rJC" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"rJD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"rJL" = (/obj/machinery/atmospherics/valve/shutoff,/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"rJW" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"rJX" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"rKi" = (/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/greengrid,/area/space) -"rKp" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "n2_in"; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) -"rKu" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"rKv" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 5},/obj/machinery/door/window/westleft{name = "Medical Reception"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"rKy" = (/obj/item/modular_computer/tablet/lease/preset/command,/obj/item/storage/secure/safe{pixel_y = 28},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rKD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/machinery/camera/network/engineering{c_tag = "Engineering - Fuel Bay"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"rKH" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"rKP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/sortjunction{name = "Expedition Prep"; sort_type = "Expedition Prep"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"rKU" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/secure_closet/personal/empty,/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/carpet,/area/space) -"rKZ" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rLa" = (/obj/structure/table/glass,/obj/item/material/ashtray/glass,/obj/item/storage/fancy/smokable/trident{pixel_x = -5; pixel_y = -2},/obj/item/flame/lighter/zippo{pixel_x = 8; pixel_y = 8},/obj/floor_decal/borderfloorblack{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rLb" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/space) -"rLj" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/chapel/main) -"rLn" = (/obj/floor_decal/industrial/loading{dir = 1},/turf/simulated/floor/tiled,/area/space) -"rLs" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/blast/regular{dir = 4; id_tag = "fusion_observation"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/vacant/prototype/control) -"rLu" = (/obj/structure/table/woodentable,/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn{pixel_x = 11; pixel_y = -1},/obj/item/device/flashlight/lamp{pixel_x = -3; pixel_y = 9},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"rLy" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"rLB" = (/obj/structure/catwalk,/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"rLC" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/newspaper{pixel_x = -5; pixel_y = 10},/obj/item/material/ashtray/plastic{pixel_x = 4; pixel_y = -2},/obj/item/trash/cigbutt{pixel_x = -5; pixel_y = 1},/obj/item/trash/cigbutt{pixel_x = 2; pixel_y = 8},/obj/item/trash/cigbutt{pixel_x = 2; pixel_y = -5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"rLE" = (/obj/floor_decal/corner/purple/half{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"rLG" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rLI" = (/obj/floor_decal/industrial/traffic,/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rLL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/b_green/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/space) -"rLP" = (/obj/floor_decal/corner/red/diagonal,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/decal/cleanable/flour,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"rLR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"rLY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"rLZ" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"rMc" = (/obj/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rMh" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"rMj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"rMn" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"rMo" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/seconddeck/aftport) -"rMr" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"rMx" = (/obj/structure/ladder,/obj/structure/railing/mapped{dir = 8},/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/aftport) -"rMB" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/structure/table/woodentable/maple,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_y = 7},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{pixel_x = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"rMF" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"rMW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"rMY" = (/obj/machinery/door/airlock/hatch/maintenance{dir = 4; locked = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/barricade,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"rNb" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/autolathe,/obj/item/stock_parts/circuitboard/unary_atmos/cooler,/obj/item/stock_parts/circuitboard/unary_atmos/heater,/obj/item/stock_parts/circuitboard/oxyregenerator,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"rNl" = (/obj/floor_decal/borderfloorblack,/obj/structure/bed/chair/padded/blue{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"rNn" = (/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/corner/lime/border,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rNw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"rNx" = (/turf/unsimulated/mask,/area/space) -"rNy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/all/command{c_tag = "AI Core - Aft"; dir = 4},/obj/machinery/flasher{dir = 4; id_tag = "ai_core"; pixel_x = -24},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"rNE" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/firstaid,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"rNG" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/floor_decal/corner_steel_grid{dir = 5},/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/space) -"rNH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"rNK" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/blue/border,/turf/simulated/floor/wood/walnut,/area/space) -"rNN" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"rNR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/eva) -"rNS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloorwhite,/obj/floor_decal/corner/blue/border,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/storage/box/syringes,/obj/item/storage/box/evidence,/turf/simulated/floor/tiled/white,/area/space) -"rNU" = (/obj/structure/table/rack,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"rNX" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"rOc" = (/obj/machinery/status_display,/turf/simulated/wall/prepainted,/area/crew_quarters/commissary) -"rOi" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green,/obj/machinery/power/apc/critical{dir = 4; name = "east bump"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"rOv" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/space) -"rOx" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/status_display{pixel_x = -32},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) -"rOG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 10},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rOI" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"rOW" = (/obj/structure/railing/mapped,/obj/structure/bed/sofa/m/blue,/turf/simulated/floor/plating,/area/space) -"rOZ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/green/border{dir = 9},/obj/machinery/light_construct{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"rPc" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"rPn" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"rPq" = (/obj/machinery/door/airlock/glass/atmos{dir = 4; name = "Atmospherics"},/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"rPt" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/mahogany,/area/space) -"rPu" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"rPy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"rPD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/chapel/main) -"rPJ" = (/turf/simulated/open,/area/hydroponics) -"rPN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/hatch/maintenance{autoset_access = 0; dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor,/area/space) -"rPO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"rPQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stool/padded/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"rPS" = (/obj/random/maintenance,/obj/decal/cleanable/cobweb2,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"rQc" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"rQf" = (/obj/floor_decal/corner/black/mono,/obj/machinery/computer/modular/preset/cardslot/command{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"rQg" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"rQm" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/port) -"rQo" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3starboard) -"rQw" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"rQA" = (/obj/floor_decal/corner/grey/diagonal,/obj/decal/cleanable/blood/oil,/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/wardrobe/robotics_black,/obj/item/clothing/under/rank/roboticist/skirt,/obj/item/clothing/under/rank/roboticist/skirt,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"rQI" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_6_berth_hatch"; name = "Escape Pod Six"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"rQO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"rQV" = (/obj/decal/cleanable/dirt,/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel,/obj/item/reagent_containers/syringe/drugs,/obj/item/reagent_containers/syringe/drugs,/obj/item/reagent_containers/syringe/drugs,/obj/item/clothing/suit/straight_jacket,/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"rRa" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"rRf" = (/obj/machinery/recharge_station,/obj/floor_decal/corner/yellow/half{dir = 8},/obj/floor_decal/corner/yellow{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"rRl" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"rRq" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/papershredder,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"rRw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "сhief_steward"; name = "Chief Steward"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rRF" = (/obj/structure/stairs/east,/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rRI" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/space) -"rRK" = (/obj/machinery/cooker/oven,/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"rRL" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rRP" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/button/blast_door{id_tag = "security_sergeant_blastdoor"; name = "Warden's Blastdoor"; pixel_x = 6; pixel_y = 24; req_access = list("ACCESS_WARDEN")},/turf/simulated/floor/tiled/dark,/area/space) -"rRV" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 1; initial_id_tag = "aux_fusion_plant"},/turf/simulated/floor/reinforced,/area/vacant/prototype/engine) -"rRW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Port Auxiliary Storage"; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"rSg" = (/obj/wallframe_spawn/reinforced/polarized/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"rSj" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"rSl" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rSm" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"rSn" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rSp" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa2"; name = "Containment Blast Doors"},/turf/simulated/floor/reinforced,/area/space) -"rSx" = (/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"rSz" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/water_cooler{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled,/area/space) -"rSA" = (/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) -"rSI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/space) -"rSU" = (/obj/structure/catwalk,/obj/machinery/alarm{pixel_y = 24},/obj/structure/iv_stand,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"rSW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/space) -"rTa" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"rTs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"rTz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{dir = 4; name = "Fourth Deck Substation"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/fourthdeck) -"rTD" = (/obj/floor_decal/floordetail/edgedrain{dir = 5},/obj/floor_decal/corner/paleblue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"rTE" = (/obj/machinery/shield_diffuser,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1331; id_tag = "calypso_shuttle_outer"; name = "Charon External Access"; req_access = list(list("ACCESS_EXPEDITION_SHUTTLE"))},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/airlock) -"rTO" = (/obj/floor_decal/corner/red/bordercorner,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rUf" = (/obj/machinery/door/airlock/mining{dir = 4; name = "Supply Office"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"rUl" = (/obj/structure/sign/science_1{dir = 1; pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"rUn" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"rUv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/medical{name = "Medical Restroom"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"rUB" = (/obj/structure/lattice,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"rUE" = (/obj/machinery/atmospherics/unary/tank/oxygen{volume = 3200},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"rUI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/green{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"rUK" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"rUW" = (/obj/item/frame/apc,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/item/stack/tile/walnut{pixel_y = 19},/turf/simulated/floor/plating,/area/vacant/bar) -"rVa" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/tiled/dark,/area/space) -"rVe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) -"rVf" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/machinery/sparker{id_tag = "engines-1"; pixel_x = -24},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"rVB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/glass/security{name = "Brig Wing"},/turf/simulated/floor/tiled/monotile,/area/space) -"rVJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"rVK" = (/obj/floor_decal/corner/red,/obj/structure/table/steel,/obj/item/reagent_containers/food/drinks/bottle/small/beer,/obj/item/reagent_containers/food/drinks/bottle/small/beer{pixel_x = -6; pixel_y = 3},/obj/item/reagent_containers/food/drinks/bottle/small/beer{pixel_x = 5; pixel_y = 6},/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/space) -"rVM" = (/obj/decal/cleanable/flour,/turf/simulated/floor/plating,/area/vacant/mess) -"rVO" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass/civilian{dir = 8; name = "Engineer Bay Lobby"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/thirddeck/center) -"rVS" = (/obj/floor_decal/corner/black/full,/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"rVT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"rVY" = (/turf/simulated/wall/prepainted,/area/quartermaster/expedition) -"rWe" = (/obj/machinery/door/airlock/maintenance{req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"rWg" = (/turf/simulated/open,/area/maintenance/seconddeck/aftstarboard) -"rWi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rWn" = (/obj/machinery/power/port_gen/pacman/mrs{anchored = 1},/obj/structure/cable/yellow,/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"rWp" = (/obj/floor_decal/corner/grey{dir = 9},/obj/structure/reagent_dispensers/water_cooler{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"rWt" = (/obj/structure/hygiene/drain/bath,/turf/simulated/floor/pool,/area/space) -"rWw" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass/civilian{name = "Central Stairwell"},/turf/simulated/floor/tiled/monotile,/area/space) -"rWy" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/green,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"rWD" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/foreport) -"rWJ" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"rWL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"rWN" = (/obj/wallframe_spawn/reinforced/polarized/no_grille/regular,/obj/structure/curtain{color = "#990099"; name = "church curtain"},/turf/simulated/floor/plating,/area/chapel/main) -"rWO" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"rWR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"rWV" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"rWX" = (/obj/floor_decal/spline/fancy/black/corner,/turf/simulated/floor/grass/cut,/area/space) -"rWZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"rXd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"rXf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"rXh" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/scanner/gas,/obj/item/device/scanner/gas,/obj/item/device/scanner/plant,/obj/item/device/scanner/health,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"rXn" = (/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"rXr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"rXt" = (/obj/floor_decal/corner/green/bordercee,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"rXu" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"rXw" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/space) -"rXK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"rXM" = (/obj/floor_decal/corner/brown/mono,/obj/machinery/computer/modular/preset/dock{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"rXW" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"rYg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"rYz" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"rYC" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/space) -"rYJ" = (/obj/machinery/light,/obj/machinery/computer/guestpass{pixel_x = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/flora/pottedplant/unusual,/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/rnd/research) -"rYT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue2,/area/space) -"rYW" = (/obj/structure/closet/crate/freezer,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/random/firstaid,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"rYX" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"rYZ" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"rZc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"rZl" = (/obj/machinery/portable_atmospherics/canister/helium{start_pressure = 14999},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"rZr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"rZt" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/obj/machinery/light,/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled,/area/space) -"rZv" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"rZL" = (/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"rZM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"rZQ" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/space) -"rZR" = (/obj/structure/table/woodentable,/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/folder/red{pixel_x = -4; pixel_y = 7},/obj/item/folder/red{pixel_x = 4},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"rZU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"rZZ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance{dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"sad" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"sae" = (/obj/structure/closet/emcloset/anchored,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/yellow/bordercorner,/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Aft Stairwell"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"sah" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"sak" = (/obj/random_multi/single_item/space_rabbit,/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sar" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sas" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/corner/purple,/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/space) -"sat" = (/obj/structure/table/rack,/obj/item/storage/firstaid/adv{pixel_y = 10},/obj/item/storage/firstaid/adv,/obj/item/storage/firstaid/adv{pixel_y = -10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"saA" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/space) -"saI" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/button/alternate/door{dir = 9; id_tag = "MedbayER"; name = "Critical Wing Second Exit"; pixel_x = 8; pixel_y = 27},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"saJ" = (/obj/structure/table/woodentable/walnut,/obj/item/pizzabox/margherita,/turf/simulated/floor/grass/cut,/area/space) -"saO" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"saT" = (/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"saX" = (/obj/structure/bed/sofa/m/brown,/obj/floor_decal/carpet/red{dir = 1},/turf/simulated/floor/carpet/red,/area/space) -"sbe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sbo" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lime/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"sbp" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"sbq" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/corner/green/half,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"sbr" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/aftstarboard) -"sbs" = (/obj/floor_decal/industrial/traffic/corner{color = "#a2819e"; detail_color = "#a2819e"; dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/office) -"sbG" = (/obj/machinery/computer/mining,/obj/machinery/door/firedoor,/obj/structure/table/standard,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"sbJ" = (/obj/structure/bed/chair/rounded/yellow{dir = 8},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"sbL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sbP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sbT" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/space) -"sbV" = (/obj/machinery/atmospherics/valve{dir = 1},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"sbX" = (/obj/structure/sign/warning/compressed_gas,/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1port) -"sbY" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Research Director"; sort_type = "Research Director"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"scf" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 6},/obj/structure/bed/chair/office/purple,/turf/simulated/floor/tiled/white,/area/rnd/office) -"scj" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"sck" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobioaqua"; name = "Containment Blast Doors"},/obj/machinery/door/window/southright,/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/reinforced,/area/space) -"scs" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"scx" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/b_green/border{dir = 1},/obj/machinery/radio_beacon,/turf/simulated/floor/tiled,/area/space) -"scz" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/space) -"scB" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"scE" = (/obj/machinery/stasis_cage,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"scO" = (/obj/floor_decal/techfloor,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/standard,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"scS" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/spline/fancy/black{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge) -"scU" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"scY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"sdb" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/artifact,/obj/machinery/anomaly_container,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"sdd" = (/obj/structure/table/steel,/obj/item/storage/box/glasses/rocks,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"sdg" = (/obj/structure/table/woodentable_reinforced/mahogany/walnut,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"sdo" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "armory"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sdr" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sdt" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"sdx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/floor_decal/corner/grey/bordercorner{dir = 8},/obj/floor_decal/corner/grey/bordercorner{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"sdy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 29},/turf/simulated/floor/carpet/red,/area/space) -"sdz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"sdE" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"sdG" = (/obj/machinery/space_heater/stationary/on{pixel_y = 30},/obj/structure/table/woodentable,/obj/item/reagent_containers/glass/bucket/wood{pixel_y = 5},/obj/floor_decal/spline/fancy/wood{dir = 5},/obj/item/device/radio/intercom/department/security{dir = 8; pixel_x = 24},/turf/simulated/floor/wood/walnut,/area/space) -"sdI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sdS" = (/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/corner{dir = 8},/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom/locked/ai_private{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"ses" = (/obj/structure/table/rack,/obj/item/clothing/suit/armor/pcarrier/medium,/obj/item/clothing/suit/armor/pcarrier/medium,/obj/item/clothing/suit/armor/pcarrier/medium,/obj/item/clothing/head/helmet,/obj/item/clothing/head/helmet,/obj/item/clothing/head/helmet,/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/recharger/wallcharger{dir = 8; pixel_x = 22},/obj/item/clothing/accessory/arm_guards,/obj/item/clothing/accessory/arm_guards,/obj/item/clothing/accessory/arm_guards,/obj/item/clothing/accessory/leg_guards,/obj/item/clothing/accessory/leg_guards,/obj/item/clothing/accessory/leg_guards,/obj/item/clothing/accessory/armband,/obj/item/clothing/accessory/armband,/obj/item/clothing/accessory/armband,/turf/simulated/floor/tiled/techfloor,/area/space) -"seu" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"sez" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/security/brig) -"seA" = (/obj/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/padded/blue{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"seC" = (/obj/structure/closet/l3closet/virology,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"seF" = (/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"seK" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"seP" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/canister) -"seZ" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"sfh" = (/obj/machinery/space_heater,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"sfr" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/space) -"sfu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"sfH" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/staging) -"sfM" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/obj/item/cell/high,/obj/item/cell/high,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"sfO" = (/obj/machinery/door/window/northright{name = "Armory Desk"; req_access = newlist()},/obj/machinery/door/blast/shutters{dir = 2; id_tag = "armory_shutters"; name = "Armory Desk"},/obj/paint_stripe/red,/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"sfU" = (/obj/machinery/flasher{pixel_x = -32; pixel_y = -32},/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"sfW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/storage/firstaid/surgery,/turf/simulated/floor/plating,/area/vacant/infirmary) -"sfZ" = (/obj/machinery/suit_storage_unit/security/alt,/turf/simulated/floor/tiled/techfloor,/area/space) -"sgf" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"sgo" = (/obj/structure/catwalk,/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sgt" = (/obj/machinery/suit_storage_unit/explorer,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"sgv" = (/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/folder/red,/obj/item/pen,/obj/machinery/requests_console{announcementConsole = 1; department = "Security"; departmentType = 5; pixel_y = -32},/obj/item/device/taperecorder,/obj/machinery/rotating_alarm/security_alarm{dir = 8; pixel_x = 14},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"sgw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"sgz" = (/obj/floor_decal/techfloor/orange,/obj/machinery/conveyor{dir = 4; id = "compactor"},/obj/machinery/pile_ripper{active_power_usage = 300},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sgD" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"sgF" = (/obj/structure/closet/walllocker{pixel_y = -28},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/tiled/dark,/area/space) -"sgG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"sgL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"sgN" = (/obj/floor_decal/corner/lightgrey/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/cola{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"sgV" = (/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/carpet,/area/space) -"sgZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"sha" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/storage/secure/safe{pixel_x = 32},/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/machinery/camera/network/command{c_tag = "Command - Head of Security"; dir = 8},/turf/simulated/floor/carpet/red,/area/space) -"shf" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"shn" = (/obj/floor_decal/techfloor/orange,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/gravity_generator/main/station,/turf/simulated/floor/greengrid,/area/space) -"sht" = (/obj/structure/flora/pottedplant/thinbush,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/space) -"shv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"shy" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"shE" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"shF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"shG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"shL" = (/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"shP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"shR" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"shU" = (/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/space) -"shV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"shX" = (/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -1},/obj/structure/sign/directions/supply{pixel_x = -32; pixel_y = -8},/turf/simulated/open,/area/space) -"shZ" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "xenobotany_access_inner"; name = "Xenobotany Lab Access"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/rnd/xenobiology/xenoflora) -"sij" = (/obj/machinery/computer/ship/engines{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 10},/obj/floor_decal/spline/fancy/black{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"siw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"siy" = (/obj/machinery/door/airlock/research{name = "Analysis Lab"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"siB" = (/obj/structure/flora/ausbushes/ppflowers,/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"siD" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"siF" = (/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"siT" = (/obj/machinery/space_heater,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"siU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"siV" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"sjc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/b_green/bordercorner,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"sjf" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/computer/atmoscontrol/laptop{monitored_alarm_ids = list("petrov1","petrov2","petrov3"); req_access = list("ACCESS_PETROV_HELM")},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/space) -"sju" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{name = "Restroom"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/space) -"sjy" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/turf/simulated/floor/reinforced,/area/space) -"sjM" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/engineering/fuelbay) -"sjN" = (/obj/random/junk,/obj/floor_decal/techfloor/orange{dir = 8},/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"sjQ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"sjU" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1port) -"sjZ" = (/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/tele_projector{dir = 6},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ske" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -24},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"skh" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/table/glass,/obj/item/modular_computer/laptop/preset/records{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/decal/cleanable/cobweb{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"skl" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"skm" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"skp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"skv" = (/obj/machinery/door/airlock/engineering{dir = 8; name = "Auxiliary Power Storage"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/auxpower) -"sky" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"skA" = (/obj/machinery/light/small{dir = 1},/obj/structure/bed/sauna_bench/middle/north,/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/ebony,/area/space) -"skE" = (/obj/floor_decal/corner/yellow/half,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"skJ" = (/obj/machinery/smartfridge/drying_rack{dir = 8},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/green/border{dir = 10},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"skO" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/door/airlock/highsecurity{name = "AI Upload"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/airlock_brace{req_access = list("ACCESS_AI_UPLOAD")},/obj/machinery/door/blast/regular{id_tag = "ai_upload_blast"; name = "AI Upload"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"skP" = (/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 4; target_pressure = 15000},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"skT" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/space) -"skW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"slf" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/floor_decal/corner/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sll" = (/obj/structure/hygiene/toilet{pixel_y = 5},/turf/simulated/floor/tiled/freezer,/area/vacant/cargo) -"slm" = (/turf/simulated/wall/r_wall/prepainted,/area/rnd/locker) -"sln" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/heads/office/ce) -"slo" = (/obj/machinery/portable_atmospherics/canister/empty/oxygen,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"slu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"slD" = (/obj/floor_decal/corner/black/full,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"slE" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"slF" = (/turf/simulated/wall/titanium,/area/shuttle/petrov/cell1) -"slH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"slL" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/space) -"slS" = (/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3port) -"slW" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/brigdoor/northleft{name = "Security Checkpoint"},/obj/machinery/door/window/southleft{autoset_access = 0; name = "Security Checkpoint"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"smh" = (/obj/fluid_mapped,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"smr" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"smt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"smx" = (/obj/floor_decal/industrial/hatch/red,/obj/machinery/button/crematorium{pixel_y = 22},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"smH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"smL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{name = "Drone Station"; sort_type = "Drone Station"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"smZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/space) -"sna" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"snB" = (/obj/structure/table/standard,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"snH" = (/obj/structure/bed/sofa/r/beige{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"snI" = (/obj/structure/coatrack{pixel_x = -6; pixel_y = 22},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"snP" = (/obj/paint_stripe/red,/turf/simulated/wall/prepainted,/area/hallway/primary/firstdeck/fore) -"snS" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"sob" = (/obj/machinery/vending/games,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"sof" = (/obj/floor_decal/carpet/orange,/obj/floor_decal/carpet/orange{dir = 4},/obj/floor_decal/carpet/orange{dir = 6},/obj/structure/reagent_dispensers/beerkeg,/obj/item/reagent_containers/food/drinks/glass2/mug,/turf/simulated/floor/carpet/orange,/area/space) -"sor" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/assembly/robotics) -"sou" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/bed/chair/rounded/blue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"soD" = (/obj/floor_decal/corner/black/bordercorner{dir = 1},/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/corner/red/bordercorner2,/obj/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"soE" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/simulated/wall/r_wall/hull,/area/thruster/d3starboard) -"soJ" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge) -"soM" = (/turf/simulated/floor/wood/mahogany,/area/space) -"soN" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "fd_starboard_pump"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"soQ" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"soR" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"soS" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 1},/turf/simulated/open,/area/space) -"soV" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"soZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{id_tag = "security_sergeant_blastdoor"; name = "Warden's Blastdoor"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{name = "Security Maintenance"},/turf/simulated/floor/tiled/techfloor,/area/space) -"spe" = (/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"spg" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/outline/blue,/obj/engine_setup/coolant_canister,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"spi" = (/obj/structure/table/woodentable,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/paper_bin,/obj/item/pen{pixel_x = -1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"spk" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "centcom_shuttle_dock_sensor"; pixel_x = -24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "centcom_shuttle_dock_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"spm" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"sps" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/bed/chair/office/dark,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"spC" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6,/mob/living/bot/cleanbot{name = "Balto"; will_patrol = 1},/turf/simulated/floor/tiled,/area/space) -"spO" = (/obj/structure/bed/chair/padded/green{dir = 8},/obj/floor_decal/spline/fancy/black,/obj/machinery/media/music_writer{pixel_y = -27},/turf/simulated/floor/wood/walnut,/area/space) -"spV" = (/obj/floor_decal/industrial/loading,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hop_road_shutters"; name = "HoP Line's Shutters"; opacity = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"spW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"sqb" = (/obj/floor_decal/corner/paleblue/full,/obj/structure/closet/cabinet,/obj/item/book/manual/medical_diagnostics_manual,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"sqc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"sqg" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/space) -"sqj" = (/obj/machinery/door/airlock/external/bolted{frequency = 1380; id_tag = "escape_pod_1_hatch"; name = "Escape Pod One Hatch"},/obj/machinery/shield_diffuser,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sqm" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"sqq" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"sqv" = (/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"sqy" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "firing_range_outer"; name = "Firing Range Airlock"},/obj/machinery/access_button/airlock_exterior{desc = "Security access required."; dir = 1; master_tag = "firing_range"; name = "exterior access button"; pixel_x = -24; pixel_y = 10; req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY")},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"sqA" = (/obj/floor_decal/industrial/warning,/obj/structure/table/woodentable/ebony,/obj/item/stack/medical/splint{pixel_x = -4; pixel_y = 12},/obj/item/stack/medical/bruise_pack{pixel_x = -4; pixel_y = -7},/obj/item/folder/white{pixel_x = 6},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"sqD" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/plating,/area/vacant/infirmary) -"sqF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"sqQ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/stack/package_wrap/cargo_wrap,/obj/item/hand_labeler,/obj/item/device/destTagger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/floor_decal/corner/yellow/mono,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"sqV" = (/turf/simulated/wall/prepainted,/area/vacant/bar) -"sra" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood/walnut,/area/space) -"srf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 8},/turf/simulated/floor/tiled,/area/space) -"srn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"srp" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"sru" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"srx" = (/obj/machinery/seed_storage/garden{dir = 1},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/green/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/space) -"srL" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/sleeper{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"srV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"srX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"srY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "bar_private_room_1"; name = "Private Room"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ssk" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/carpet/green,/obj/floor_decal/carpet/green{dir = 4},/obj/floor_decal/carpet/green{dir = 6},/turf/simulated/floor/carpet/green,/area/space) -"ssm" = (/obj/structure/table/standard,/obj/item/hand_labeler,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/locker) -"ssq" = (/obj/structure/table/woodentable/walnut,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"sst" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/blue/border,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"ssv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"ssx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"ssI" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"ssJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ssS" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ssT" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Hallway Chemistry"; dir = 1},/mob/living/bot/cleanbot{name = "Monro"; will_patrol = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sta" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"std" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"stn" = (/obj/machinery/sparker{id_tag = "Isocell1"; pixel_x = -18},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"sto" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"stp" = (/obj/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/mahogany,/area/space) -"sts" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"stv" = (/obj/item/target/syndicate,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"stz" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"stB" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"stC" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/bamboo,/area/space) -"stI" = (/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"},/obj/machinery/alarm{pixel_y = 24},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"stL" = (/turf/simulated/wall/r_wall/prepainted,/area/crew_quarters/safe_room/firstdeck) -"stN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"stR" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/space) -"sul" = (/obj/floor_decal/borderfloorblack{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"sup" = (/obj/floor_decal/industrial/warning,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sur" = (/obj/floor_decal/borderfloor/corner{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/space) -"sut" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security{dir = 4; name = "Guards' Bathroom"},/turf/simulated/floor/tiled/monotile,/area/space) -"suy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"suB" = (/obj/floor_decal/borderfloor{color = null; dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/machinery/sleeper/survival_pod{dir = 4},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"suH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable_reinforced/mahogany,/obj/item/device/flashlight/lamp/lava/cyan{pixel_x = 4; pixel_y = -5},/turf/simulated/floor/carpet/magenta,/area/space) -"suJ" = (/obj/floor_decal/corner/black/bordercorner{dir = 8},/obj/floor_decal/corner/black/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"suL" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"suO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"suP" = (/obj/structure/table/woodentable/maple,/obj/item/device/flashlight/lantern,/obj/machinery/light,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 6},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"suY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"suZ" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"sva" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"svc" = (/obj/machinery/shieldwallgen,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"sve" = (/obj/structure/table/woodentable/maple,/obj/item/material/ashtray/glass,/obj/item/storage/fancy/smokable/luckystars{pixel_x = -2; pixel_y = 5},/obj/item/storage/fancy/matches/matchbox,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"svl" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"svv" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"svE" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"svN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner_techfloor_grid{dir = 9},/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"svX" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"swe" = (/obj/structure/dispenser/oxygen,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"swf" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/table/marble,/obj/machinery/microwave{pixel_y = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"swn" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Forensic Office"; sort_type = "Forensic Office"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"swy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/space) -"swA" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/paleblue/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/turf/simulated/floor/tiled/white/monotile,/area/space) -"swB" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"swD" = (/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"swH" = (/obj/machinery/door/airlock/highsecurity{name = "AI Outer Ring Access"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"swN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"swV" = (/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "sup_office"; name = "Supply Desk Shutters"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/quartermaster/office) -"sxb" = (/obj/machinery/hologram/holopad/longrange,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"sxf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/space) -"sxg" = (/obj/structure/bed/sofa/l/beige,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Bar - Main Hall"; dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"sxq" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"sxv" = (/obj/floor_decal/corner/black{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"sxz" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/obj/floor_decal/corner/purple{pixel_y = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"sxB" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/airlock) -"sxF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"sxH" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"sxI" = (/obj/structure/table/standard,/obj/machinery/button/blast_door{desc = "A remote control-switch for the prototype exhaust."; id_tag = "prototype_exhaust"; name = "Chamber Exhaust"; pixel_x = -5; pixel_y = 8},/obj/machinery/button/blast_door{desc = "A remote control-switch for the observation shutters."; id_tag = "fusion_observation"; name = "Chamber Observation"; pixel_x = 5; pixel_y = 8},/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine containment doors."; id_tag = "prototype_chamber_blast"; name = "Chamber Containment"; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"sxJ" = (/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3port) -"sxK" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"sxM" = (/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/dark,/area/space) -"sxS" = (/obj/structure/closet/l3closet/scientist,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"sxT" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"sxU" = (/obj/structure/bed/padded,/obj/floor_decal/corner/grey/full,/obj/item/bedsheet/blue,/turf/simulated/floor/tiled/dark,/area/space) -"sxV" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass/cut,/area/space) -"sxZ" = (/obj/floor_decal/spline/fancy/black{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"syd" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"syi" = (/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/structure/railing/mapped,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/space) -"syj" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{name = "Janitor Closet"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) -"syr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/handrail,/turf/simulated/floor/tiled/white,/area/space) -"syu" = (/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/space) -"syv" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/decal/cleanable/dirt,/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"syx" = (/obj/machinery/vitals_monitor,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot,/turf/simulated/floor/tiled/white/monotile,/area/space) -"syB" = (/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"syI" = (/obj/machinery/beehive,/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"syJ" = (/obj/structure/sign/warning/secure_area,/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"syK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"syO" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/brown/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"syP" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/space,/area/space) -"syQ" = (/obj/structure/table/rack{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/stack/material/rods/fifty,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"syU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"sze" = (/obj/machinery/air_sensor{id_tag = "co2_sensor"},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/atmos) -"szf" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Fore Hallway"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"szj" = (/obj/structure/table/standard,/obj/item/storage/box/botanydisk,/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"szk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/space) -"szp" = (/obj/machinery/vending/coffee,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white/monotile,/area/space) -"szq" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"szs" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen{pixel_x = 4; pixel_y = 4},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"szv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{name = "Cryo Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/sleep/cryo) -"szw" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"szH" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"szJ" = (/obj/structure/bed/chair/comfy/purple{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"szK" = (/obj/structure/sign/warning/airlock{dir = 1; pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"szN" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/floor_decal/techfloor,/obj/structure/sign/warning/fire{dir = 1; pixel_y = -40},/obj/machinery/light/small{dir = 8},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/incinerator) -"szP" = (/obj/floor_decal/corner/yellow/three_quarters,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera/network/supply{c_tag = "Supply Office - Supply locker room"; dir = 4},/turf/simulated/floor/tiled,/area/space) -"szW" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"szX" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"szZ" = (/obj/machinery/atmospherics/unary/vent_pump/tank{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "CO22p_out"; initialize_directions = 1; internal_pressure_bound = 1000; internal_pressure_bound_default = 1000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3port) -"sAc" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/random/storage,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"sAf" = (/obj/structure/bed/sofa/r/black{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"sAs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"sAu" = (/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3port) -"sAy" = (/obj/machinery/smartfridge{opacity = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/corner/green/three_quarters{dir = 8},/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"sAA" = (/obj/floor_decal/industrial/hatch/red,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sAG" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/aftport) -"sAK" = (/obj/fluid_mapped,/obj/item/clothing/mask/snorkel,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sAM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sAP" = (/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled/white,/area/space) -"sAS" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"sAX" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/vacant/cargo) -"sBe" = (/obj/structure/catwalk,/obj/structure/sign/warning/fall{pixel_y = 32},/turf/simulated/open,/area/space) -"sBz" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/constructable_frame/machine_frame,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white/monotile,/area/space) -"sBA" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"sBG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"sBO" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"sBQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"sBR" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"sBY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{name = "Actor's Room"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sBZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"sCf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"sCh" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"sCl" = (/turf/simulated/floor/reinforced/oxygen,/area/engineering/atmos) -"sCm" = (/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"sCv" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/door/blast/regular{dir = 2; id_tag = "d3portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"sCx" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Fore Port Access"; dir = 8},/obj/item/device/radio/intercom/locked/ai_private{dir = 1; pixel_y = -22},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"sCB" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"sCP" = (/obj/structure/bed/padded,/obj/item/bedsheet/medical,/obj/structure/closet/medical_wall{pixel_x = 32},/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"sCT" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass/civilian{name = "Library"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/lounge) -"sCV" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/dark,/area/space) -"sDd" = (/obj/structure/mopbucket,/obj/item/mop,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"sDj" = (/obj/structure/bed/chair/wood/maple{dir = 4},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"sDk" = (/obj/machinery/door/window/brigdoor/westright{dir = 2; id_tag = "prison_lobby_window"},/obj/machinery/door/window/brigdoor/westleft{autoset_access = 0; dir = 1},/obj/paint_stripe/red,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/blast/shutters/open{id_tag = "prison_lobby_window"; name = "Prison Lobby Windows Shutters"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"sDn" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"sDo" = (/obj/machinery/light/spot{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/landmark/start{name = "Research Director"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"sDs" = (/obj/structure/railing/mapped{dir = 1},/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"sDx" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"sDz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"sDE" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"sDG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"sDH" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/mining{name = "Cargo Prep"},/turf/simulated/floor/tiled/monotile,/area/space) -"sDI" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/nitrogen,/area/engineering/atmos) -"sDJ" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"sDM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"sDP" = (/obj/structure/table/woodentable/mahogany,/obj/item/flora/pottedplantsmall/leaf{pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/red,/area/space) -"sDT" = (/obj/structure/table/standard,/obj/floor_decal/corner/blue/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 5},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/glass{pixel_x = 8; pixel_y = 7},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"sEd" = (/obj/structure/cable/yellow,/obj/machinery/power/solar{id = "auxsolarstrbbridge"; name = "Bridge Auxiliary Solar Array"},/obj/floor_decal/solarpanel,/turf/simulated/floor/reinforced,/area/space) -"sEe" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/camera/network/fourth_deck{c_tag = "Escape Pods - Starboard - Dock"; dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"sEf" = (/obj/structure/hygiene/toilet{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/space) -"sEj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/warning{dir = 5},/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"sEl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"sEr" = (/obj/floor_decal/corner/purple/half{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"sEs" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"sEt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "First Deck Substation"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/firstdeck) -"sEy" = (/turf/simulated/floor/tiled/white,/area/space) -"sED" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/space) -"sEG" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"sEP" = (/obj/item/material/knife/kitchen/cleaver,/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) -"sEU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sFb" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"sFc" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"sFe" = (/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/glass/bolted/cycling{id_tag = "firing_range_inner"; name = "Firing Range Airlock"},/obj/machinery/access_button/airlock_interior{master_tag = "firing_range"; name = "interior access button"; pixel_x = -24; pixel_y = -10; req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL"))},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"sFf" = (/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/table/marble,/obj/item/book/manual/chef_recipes,/turf/simulated/floor/tiled/white,/area/space) -"sFg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"sFm" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sFs" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sFu" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sFz" = (/obj/structure/closet/walllocker{pixel_x = 28},/obj/machinery/status_display{pixel_y = 32},/obj/item/storage/backpack/dufflebag,/obj/item/storage/backpack/dufflebag,/obj/item/storage/backpack/dufflebag,/obj/item/storage/backpack/dufflebag,/turf/simulated/floor/tiled/steel_grid,/area/space) -"sFR" = (/obj/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"sFS" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"sFU" = (/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sFX" = (/obj/structure/largecrate,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"sGb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"sGe" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/artbru,/obj/item/reagent_containers/food/drinks/cans/artbru,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/reagent_containers/food/drinks/cans/speer,/obj/item/storage/box/glasses/square,/obj/floor_decal/spline/fancy/black{dir = 9},/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 9},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/carpet/blue2,/area/space) -"sGg" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/floor_decal/spline/fancy/wood,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"sGv" = (/obj/structure/stairs/west,/obj/structure/railing/mapped,/turf/simulated/floor/tiled,/area/space) -"sGB" = (/obj/structure/table/reinforced,/obj/machinery/button/blast_door{id_tag = "xenobio4"; name = "Containment Blast Doors"; pixel_x = -4; req_access = list("ACCESS_RESEARCH")},/obj/machinery/button/blast_door{id_tag = "xenobio4_vent"; name = "Cell 4 Vent"; pixel_x = 8; req_access = list("ACCESS_RESEARCH")},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"sGC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable_reinforced/mahogany,/obj/item/material/ashtray/bronze{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/carpet/green,/area/space) -"sGF" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"sGG" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"sGM" = (/obj/random/trash,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"sGP" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"sGW" = (/obj/structure/table/standard,/obj/machinery/light/spot{dir = 8},/obj/item/towel/random,/obj/item/towel/random,/obj/item/towel/random,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/storage/box/detergent,/turf/simulated/floor/tiled/freezer,/area/space) -"sGZ" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"sHd" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall/prepainted,/area/space) -"sHi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"sHm" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/forestarboard) -"sHp" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"sHv" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/turf/simulated/floor/plating,/area/space) -"sHw" = (/obj/machinery/door/window/brigdoor/eastleft{dir = 2; name = "Petrov Security Desk"},/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Petrov Security Desk"},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "concheckwindow2"; name = "Research Checkpoint Shutters"; opacity = 0},/obj/structure/wall_frame/standard,/obj/structure/table/wallf/steel{dir = 4},/turf/simulated/floor/plating,/area/space) -"sHD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sHE" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/command{name = "Bridge Access"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sHG" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"sHU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"sIf" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"sIg" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/clothing/head/soft/orange,/obj/item/clothing/head/soft/orange,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"sIh" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"sIi" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"sIl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"sIm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"sIo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/space) -"sIq" = (/obj/structure/table/glass,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"sIr" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"sIs" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/green/border{dir = 5},/obj/machinery/button/blast_door{dir = 8; id_tag = "vir_blast_window"; name = "Virology windows"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/space) -"sIt" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"sIv" = (/obj/machinery/door/airlock/maintenance{name = "Xenoflora Lab Maintenance"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/misc_lab) -"sIA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"sIB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"sID" = (/obj/structure/bed/sofa/m/teal{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"sIK" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Entry"; dir = 1},/obj/machinery/turretid/stun{check_synth = 1; control_area = list(/area/turret_protected/ai_teleport); name = "AI Entry Chamber turret control"; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sIL" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sIN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/snack,/turf/simulated/floor/wood/walnut,/area/space) -"sIR" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"sIS" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"sIU" = (/obj/structure/bed/chair/padded/black{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"sIV" = (/obj/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/space) -"sIW" = (/obj/structure/bed/chair/comfy/purple{dir = 4},/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/rnd/office) -"sJb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/bordercorner{dir = 4},/obj/floor_decal/corner/grey/bordercorner{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"sJv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/space) -"sJC" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"sJE" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{id_tag = "xenobio1"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"sJJ" = (/obj/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"sJQ" = (/obj/machinery/door/window/brigdoor/northleft{name = "thruster vent access"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/door/blast/regular{id_tag = "ThrusterVents"; name = "Thruster Blast Door"},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"sKa" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/space) -"sKf" = (/obj/structure/table/standard,/obj/item/device/camera,/obj/item/hand_labeler{pixel_x = -2; pixel_y = -3},/obj/item/pen{pixel_x = -4; pixel_y = 8},/obj/floor_decal/industrial/outline/blue,/obj/machinery/light,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"sKi" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"sKn" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"sKr" = (/obj/structure/catwalk,/turf/space,/area/space) -"sKu" = (/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/turf/simulated/floor/wood/maple,/area/space) -"sKx" = (/turf/simulated/wall/ocp_wall,/area/engineering/engine_room) -"sKy" = (/obj/structure/shuttle/engine/propulsion{dir = 1},/turf/simulated/floor/plating,/area/guppy_hangar/start) -"sKC" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/corner/green/three_quarters{dir = 8},/obj/floor_decal/corner/purple/border{dir = 9},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"sKD" = (/obj/structure/table/rack,/obj/item/device/radio{pixel_x = 6; pixel_y = 9},/obj/item/device/radio{pixel_x = 1; pixel_y = 2},/obj/item/crowbar/prybar,/obj/item/crowbar/prybar,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/locker) -"sKE" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sKH" = (/obj/machinery/door/airlock/medical{dir = 4; id_tag = "sierra_surgery2"; name = "Operating Room 2"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/holosign/surgery{dir = 4; id_tag = "sierra_surgery2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sKJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/space) -"sKM" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"sKN" = (/obj/structure/bed/chair/shuttle/blue{dir = 8},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sKQ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sKT" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"sKW" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/table/steel_reinforced,/obj/machinery/light/small,/obj/floor_decal/industrial/warning{dir = 8},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"sKX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/space) -"sLe" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/floor_decal/techfloor,/obj/structure/cable/yellow,/obj/machinery/power/port_gen/pacman{sheets = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"sLh" = (/turf/simulated/wall/prepainted,/area/quartermaster/exploration) -"sLl" = (/obj/floor_decal/corner/lime/border{dir = 6},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sLq" = (/obj/structure/table/standard,/obj/random/snack,/obj/random/snack,/obj/random/smokes,/obj/random/clipboard,/obj/item/device/radio/intercom{pixel_y = 26},/obj/floor_decal/corner/beige/diagonal,/obj/floor_decal/corner/brown/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/space) -"sLu" = (/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sLE" = (/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/pizzabox/vegetable{pixel_y = 12},/obj/structure/sign/warning/smoking{dir = 8; pixel_x = 33},/turf/simulated/floor/tiled/white/monotile,/area/space) -"sLI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/hull,/area/space) -"sLL" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"sLT" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "ai_starboard_inner"; name = "Engineering External Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"sLV" = (/obj/structure/bed/chair/office/comfy/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sMd" = (/obj/machinery/door/airlock/civilian{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"sMe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"sMf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/brig) -"sMj" = (/obj/floor_decal/corner/black/full,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/dark,/area/space) -"sMp" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "o23p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1starboard) -"sMw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/green/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"sMx" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng3"; name = "First Deck Starboard Access"; pixel_y = 21},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/thruster/d1starboard) -"sMy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"sMH" = (/obj/floor_decal/corner/purple/border,/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"sMR" = (/obj/structure/table/rack,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood/ebony,/area/space) -"sMW" = (/obj/structure/table/glass,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"sMY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 4},/obj/structure/sign/warning/pods/south{dir = 8; pixel_x = 32},/obj/floor_decal/borderfloorblack/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"sNa" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"sNg" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"sNi" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"sNt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall/prepainted,/area/engineering/atmos) -"sNB" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/floor_decal/techfloor/corner{dir = 1},/obj/random_multi/single_item/boombox,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"sNM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"sNN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"sNP" = (/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/space) -"sNS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"sNT" = (/obj/floor_decal/corner/purple/border{dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/vending/generic,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"sNV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"sNW" = (/obj/item/storage/toolbox/mechanical,/obj/structure/table/steel,/obj/item/device/radio/announcer/subspace,/obj/machinery/power/apc/hyper{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"sOd" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"sOi" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/commissary) -"sOk" = (/obj/structure/reagent_dispensers/water_cooler{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/space) -"sOJ" = (/obj/structure/table/glass,/obj/machinery/dnaforensics,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/obj/floor_decal/borderfloorwhite{dir = 9},/obj/floor_decal/corner/blue/border{dir = 9},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"sON" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/reinforced,/area/space) -"sOO" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"sPa" = (/obj/structure/table/standard,/obj/floor_decal/corner/blue{dir = 10},/obj/item/paper_bin,/obj/item/stamp/cmo,/obj/item/sticky_pad/random,/obj/item/pen,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"sPn" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"sPo" = (/obj/decal/cleanable/cobweb,/obj/machinery/light{dir = 8},/obj/machinery/button/blast_door{id_tag = "cChamber2pV"; name = "Fourth Deck Port Chamber Vent"; pixel_x = -6; pixel_y = 25},/obj/machinery/button/blast_door{id_tag = "cChamber4pV"; name = "First Deck Port Chamber Vent"; pixel_x = -6; pixel_y = 34},/obj/machinery/button/blast_door{id_tag = "cChamber1pV"; name = "Fourth Deck Starboard Chamber Vent"; pixel_x = 6; pixel_y = 25},/obj/machinery/button/blast_door{id_tag = "cChamber3pV"; name = "First Deck Starboard Chamber Vent"; pixel_x = 6; pixel_y = 34},/obj/machinery/button/ignition{id_tag = "engines"; pixel_x = 16; pixel_y = 29},/obj/machinery/computer/ship/engines{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"sPq" = (/obj/machinery/optable,/obj/floor_decal/industrial/outline/red,/obj/machinery/light/spot,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"sPt" = (/turf/simulated/wall/prepainted,/area/bridge/meeting_room) -"sPu" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/sign/chemistry{pixel_y = 24},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sPw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/cell/high,/obj/random/powercell,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"sPB" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"sPD" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/hygiene/sink{pixel_y = -12},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sPE" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"sPH" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "petrov_shuttle_dock_pump"},/obj/machinery/light/small{dir = 4},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sPL" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"sPM" = (/obj/structure/bed/sofa/m/blue{dir = 8},/obj/floor_decal/carpet/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"sPO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"sPR" = (/obj/machinery/button/blast_door{dir = 8; id_tag = "hydro<-bar"; name = "Hydroponics Shutters"; pixel_x = 24; pixel_y = 6; req_access = list("ACCESS_BAR")},/obj/machinery/button/blast_door{dir = 8; id_tag = "bar<-cafe"; name = "Bar Shutters"; pixel_x = 24; pixel_y = -6; req_access = list("ACCESS_BAR")},/obj/machinery/light/led/small,/obj/structure/table/steel_reinforced,/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/spline/fancy/black{dir = 6},/obj/machinery/reagent_temperature,/obj/item/storage/bar_fruit_jar{pixel_x = 4; pixel_y = 12},/turf/simulated/floor/tiled/dark,/area/space) -"sPT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"sPX" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"sQk" = (/obj/paint_stripe/red,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced/polarized{id = "cadetwindow"},/turf/simulated/floor/plating,/area/space) -"sQu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"sQx" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"sQz" = (/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "ai_starboard_pump"},/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"sQG" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/computer/air_control{name = "Nacelle Chamber Monitoring"; sensor_name = "Chamber"; sensor_tag = "ReacEng2"},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"sQJ" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"sQQ" = (/obj/floor_decal/industrial/warning,/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"sQS" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"sQV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/stock_parts/manipulator,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"sQY" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/rotating_alarm/supermatter{dir = 1; pixel_y = -14},/turf/simulated/floor/plating,/area/engineering/engine_room) -"sQZ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"sRc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sRj" = (/obj/structure/window/basic{dir = 8},/obj/structure/table/rack,/obj/structure/curtain/open/privacy,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"sRo" = (/obj/machinery/door/airlock/vault/bolted{id_tag = "civsafedoor"; name = "Second Deck Safe Room"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"sRu" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/grille,/turf/simulated/floor/plating,/area/space) -"sRw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"sRy" = (/obj/machinery/button/windowtint{dir = 1; id = "cafewindow"; pixel_x = 6; pixel_y = -24},/obj/structure/bed/chair/rounded/brown{dir = 4},/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 10},/obj/floor_decal/carpet/blue{dir = 9},/obj/machinery/light_switch{dir = 1; pixel_x = -6; pixel_y = -24},/turf/simulated/floor/carpet/blue,/area/space) -"sRC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/space) -"sRF" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/catwalk_plated/dark,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/safe_room/bridge) -"sRG" = (/obj/structure/table/standard,/obj/machinery/reagent_temperature,/turf/simulated/floor/tiled/white,/area/space) -"sRN" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"sRS" = (/obj/machinery/tele_projector{dir = 4},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"sSb" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sSd" = (/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/light/led/small{dir = 1},/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"sSe" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"sSp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/taperoll/engineering/applied,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"sSq" = (/obj/floor_decal/borderfloor{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"sSy" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"sSz" = (/obj/item/reagent_containers/spray/sterilizine,/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"sSC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Head Of Security"; sort_type = "Head Of Security"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sSD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sSF" = (/obj/machinery/light/spot,/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/grass/cut,/area/space) -"sSL" = (/obj/structure/closet/emcloset,/obj/random/coin,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"sSN" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"sSO" = (/obj/structure/coatrack,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"sTh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"sTi" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"sTq" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/bed/chair/wood/maple,/turf/simulated/floor/wood/bamboo,/area/space) -"sTr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"sTs" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"sTF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"sTL" = (/obj/floor_decal/techfloor{dir = 8},/obj/machinery/vending/cigarette{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"sTO" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"sTZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"sUb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"sUj" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/space) -"sUt" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Heat Exchanger Input"},/turf/simulated/wall/titanium,/area/space) -"sUA" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/nt,/turf/simulated/floor/tiled/techfloor,/area/space) -"sUC" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"sUI" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"sUO" = (/obj/structure/closet/crate/secure/biohazard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/shuttle/petrov/eva) -"sUP" = (/obj/floor_decal/corner/black/three_quarters{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 10},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"sUQ" = (/obj/structure/towel/pink_stripped,/turf/simulated/floor/grass/cut,/area/space) -"sUW" = (/obj/structure/flora/ausbushes/ywflowers,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"sVc" = (/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/space) -"sVd" = (/obj/floor_decal/corner/black{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"sVe" = (/obj/machinery/optable,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"sVf" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"sVh" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/button/windowtint{dir = 1; id = "bo_windows"; pixel_x = -6; pixel_y = -21},/obj/machinery/light_switch{dir = 1; pixel_x = 1; pixel_y = -21},/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"sVl" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"sVq" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"sVs" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/space) -"sVt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"sVA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"sVB" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/space) -"sVH" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder/juicer,/obj/item/reagent_containers/glass/beaker/large,/obj/floor_decal/corner/red/diagonal,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"sVK" = (/obj/floor_decal/corner/black/half{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"sVN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/warning/hot_exhaust{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"sVS" = (/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sWc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"sWf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"sWj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/rotating_alarm/supermatter{dir = 8; pixel_x = 14},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"sWn" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 5},/obj/machinery/portable_atmospherics/canister/carbon_dioxide{start_pressure = 0},/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"sWv" = (/obj/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/pew/mahogany,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"sWy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue2,/area/space) -"sWH" = (/obj/machinery/recharger/wallcharger{dir = 8; pixel_x = 22},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood/mahogany,/area/space) -"sWJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm/warm{dir = 4; pixel_x = -24; req_access = list(); target_temperature = 398.15; temperature = 343.15},/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"sWY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"sWZ" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/space) -"sXd" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"sXg" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"sXh" = (/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1port) -"sXu" = (/obj/floor_decal/spline/fancy/black{dir = 8},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"sXy" = (/obj/structure/table/steel_reinforced,/obj/floor_decal/industrial/warning{dir = 1},/obj/item/device/scanner/gas,/obj/item/device/t_scanner,/turf/simulated/floor/reinforced,/area/space) -"sXB" = (/obj/floor_decal/corner/green/three_quarters,/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"sXD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"sXI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"sXS" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/space) -"sYe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"sYg" = (/obj/item/paper_bin,/obj/item/pen,/obj/structure/table/glass/boron,/obj/item/toy/desk/newtoncradle{pixel_x = 4; pixel_y = -34},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"sYq" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"sYx" = (/obj/machinery/vending/snack,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sYz" = (/obj/machinery/cryopod,/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor/corner,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"sYD" = (/obj/structure/table/standard,/obj/item/storage/firstaid/adv{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/space) -"sYL" = (/obj/landmark/test/safe_turf,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"sYN" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"sYU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/sofa/l/black{dir = 4},/obj/machinery/light,/turf/simulated/floor/carpet/green,/area/space) -"sYX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"sZd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"sZi" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sZm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"sZq" = (/obj/machinery/vending/snack,/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/smoking{dir = 8; pixel_x = 33},/turf/simulated/floor/tiled/white/monotile,/area/space) -"sZs" = (/obj/machinery/photocopier,/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"sZx" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "xenobotany_access_outer"; name = "Xenobotany Lab Access"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/xenoflora) -"sZz" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"sZF" = (/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"sZT" = (/obj/floor_decal/corner/green/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"sZU" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/open,/area/medical/staging) -"sZZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "td_port"},/obj/floor_decal/industrial/warning/cee,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"taa" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/fourthdeck/forestarboard) -"tac" = (/obj/machinery/air_sensor{id_tag = "engine_sensor"},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"tah" = (/obj/machinery/camera/all/command{c_tag = "AI Core - Fore"; dir = 8},/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor{dir = 4},/obj/machinery/flasher{dir = 4; id_tag = "ai_core"; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"taj" = (/obj/structure/sign/directions/med{pixel_y = 30},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"tam" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"tao" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftport) -"taq" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/crate/secure/biohazard,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/space) -"taA" = (/obj/structure/displaycase{desc = "A display case for prized possessions. It taunts you to kick it. Her card reader is damaged, you can also notice some transparent formations on the glass."; req_access = list("ACCESS_CENT_GENERAL")},/obj/item/gun/energy/laser{desc = "A Hephaestus Industries G40E carbine, designed to kill with concentrated energy blasts. He seems to lack some details."; origin_tech = list("combat"=2,"magnets"=1); projectile_type = /obj/item/projectile/beam/practice},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"taB" = (/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"taC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"taE" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/space) -"taX" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"tbc" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"tbn" = (/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/centralstarboard) -"tbv" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"tbD" = (/obj/structure/table/standard,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8},/obj/item/folder/nt,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/space) -"tbI" = (/obj/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{dir = 4; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"tbO" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark,/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"tbT" = (/obj/floor_decal/borderfloorwhite{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/structure/table/woodentable/walnut,/obj/structure/flora/pottedplant/drooping{pixel_x = 4; pixel_y = 13},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/space) -"tbY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id_tag = "engineroomvent"; name = "Engine Room Vent"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"tcb" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"tch" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/airlock_sensor{id_tag = "solar_starboard_sensor"; master_tag = "solar_starboard"; pixel_x = 10; pixel_y = 27},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "solar_starboard"; pixel_x = -5; pixel_y = 21; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/plating,/area/space) -"tcn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"tco" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"tcu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"tcy" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"tcB" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/mopbucket,/obj/item/mop,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"tcE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tcJ" = (/obj/floor_decal/spline/fancy/black,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass/cut,/area/space) -"tcS" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/structure/table/woodentable/walnut,/obj/item/storage/box/donut,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood/mahogany,/area/space) -"tdh" = (/obj/floor_decal/industrial/traffic/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tdi" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"tdl" = (/obj/floor_decal/techfloor{dir = 6},/obj/structure/closet/crate/secure{req_access = list("ACCESS_ENGINE_EQUIP")},/obj/item/stock_parts/power/apc/buildable,/obj/item/stock_parts/power/apc/buildable,/obj/item/stock_parts/power/battery/buildable,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"tdn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Bridge Solar Access"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"tdq" = (/obj/machinery/light/spot{dir = 8},/turf/simulated/open,/area/space) -"tdu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"tdx" = (/obj/item/material/ashtray/glass{pixel_y = -2},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/black{pixel_y = 7},/obj/structure/table/woodentable_reinforced/ebony,/turf/simulated/floor/carpet/red,/area/space) -"tdI" = (/obj/structure/bookcase/manuals/medical,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"tdV" = (/obj/structure/railing/mapped,/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"tdY" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"tee" = (/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/structure/window/boron_reinforced,/obj/structure/window/boron_reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tep" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"tez" = (/obj/machinery/door/airlock/mining{id_tag = "qmdoor-hallway"; name = "Quartermaster"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"teA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor/corner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"teQ" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) -"tfa" = (/obj/structure/window/reinforced,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/locker) -"tfe" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/multi_tile/medical{dir = 8; door_color = "#4c535b"; name = "Morgue"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"tfi" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 10},/obj/structure/railing/mapped,/turf/simulated/floor/grass/cut,/area/space) -"tfk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"tfl" = (/obj/structure/bed/chair/padded/blue{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"tfs" = (/obj/machinery/newscaster/security_unit{pixel_x = -32},/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/security{c_tag = "Security - RND Checkpoint"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"tfy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/tiled,/area/space) -"tfE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"tfG" = (/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"tfO" = (/obj/floor_decal/industrial/hatch/yellow,/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tfP" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"tfU" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"tfZ" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/space) -"tge" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"tgq" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"tgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"tgJ" = (/obj/machinery/door/airlock/hatch{dir = 4; name = "Seating"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/space) -"tgK" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"tgM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"tgQ" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"thi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"thl" = (/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"thx" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/green/bordercorner,/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"thy" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"thC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"thP" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"thR" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/wall/r_wall,/area/space) -"thT" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"tih" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/engineering/atmos/storage) -"tin" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/structure/table/standard,/obj/item/material/ashtray/plastic,/obj/random/snack,/obj/random/smokes,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"tix" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"tiA" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/turf/simulated/floor/plating,/area/rnd/development) -"tiB" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"tiD" = (/obj/structure/table/woodentable,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/stack/package_wrap/cargo_wrap,/turf/simulated/floor/tiled/dark,/area/space) -"tiE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"tiK" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/space) -"tiZ" = (/obj/structure/railing/mapped,/obj/structure/cart{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"tjb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"tjd" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"tji" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"tjj" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"tjn" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/reinforced,/area/space) -"tjw" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"tjC" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"tjQ" = (/obj/structure/closet/secure_closet/decktech,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"tjZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"tkb" = (/obj/structure/roller_bed,/obj/floor_decal/industrial/outline/blue,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"tkg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/regular{dir = 8; id_tag = "borg"; name = "Cyborg Upload"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tkt" = (/obj/structure/table/rack,/obj/item/defibrillator/compact/loaded,/obj/item/defibrillator/compact/loaded,/obj/item/crowbar/prybar,/obj/item/crowbar/prybar,/obj/item/crowbar/prybar,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"tkw" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"tkF" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"tkL" = (/obj/machinery/light_switch{dir = 4; pixel_x = -23; pixel_y = 12},/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"tkO" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tkT" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tkX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"tkY" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"tli" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics) -"tlm" = (/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Bridge Starboard"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/space) -"tlv" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/computer/modular/preset/cardslot/command,/obj/machinery/button/windowtint{id = "bridge_outer_windows"; pixel_x = -5; pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"tlw" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/obj/machinery/meter,/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"tlx" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/gps,/turf/simulated/floor/tiled/steel_grid,/area/space) -"tlz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"tlB" = (/obj/structure/table/rack,/obj/item/storage/belt/archaeology,/obj/item/storage/belt/archaeology,/obj/item/storage/belt/archaeology,/obj/item/storage/ore,/obj/item/storage/ore,/obj/item/storage/ore,/obj/machinery/light/spot{dir = 1},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/brown/border{dir = 10},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/mining{c_tag = "Mining - Equipment"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"tlM" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"tlW" = (/obj/floor_decal/industrial/warning,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"tma" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3port) -"tmr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"tms" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/light_switch{dir = 8; pixel_x = 21},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/assembly/robotics) -"tmy" = (/obj/structure/bed/chair/rounded/blue{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tmA" = (/obj/structure/reagent_dispensers/water_cooler,/obj/floor_decal/borderfloorblack{dir = 5},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"tmL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"tmM" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/starboard) -"tmY" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/floor_decal/corner/black/mono,/obj/structure/table/standard,/obj/floor_decal/industrial/outline/yellow,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"tng" = (/obj/structure/handrail{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tni" = (/obj/wallframe_spawn/reinforced/polarized{id = "rcheckinner_windows"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/space) -"tnk" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/wall/r_wall/prepainted,/area/medical/morgue) -"tnl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/wall/r_wall/prepainted,/area/holocontrol) -"tnm" = (/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tnn" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"tnr" = (/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/red,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/button/blast_door{dir = 1; id_tag = "armory_shutters"; name = "Desk Shutters"; pixel_y = -20; req_access = list("ACCESS_ARMORY")},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/space) -"tnx" = (/obj/machinery/atmospherics/pipe/manifold/visible/fuel{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"tny" = (/obj/machinery/computer/prisoner{dir = 4},/obj/floor_decal/corner/red/mono,/obj/floor_decal/spline/fancy/black{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"tnB" = (/obj/structure/table/standard,/obj/item/device/scanner/health,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/storage/firstaid/radiation,/turf/simulated/floor/tiled/white/monotile,/area/space) -"tnF" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tnL" = (/obj/structure/table/rack,/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"tnR" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/sign/warning/airlock{dir = 1; pixel_y = -32},/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"tnS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"tnX" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/engineering/engine_room) -"tnY" = (/obj/floor_decal/spline/fancy/wood,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/bamboo,/area/space) -"tnZ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood/walnut,/area/vacant/cargo) -"tod" = (/obj/structure/bookcase/manuals/research_and_development,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"tof" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"tok" = (/obj/machinery/computer/ship/engines,/turf/simulated/floor/plating,/area/space) -"ton" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/camera/network/command{c_tag = "Command - Internal Affairs Office"; dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"top" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"tot" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{id_tag = "auxbar"; name = "Blast Shutters"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/vacant/bar) -"tow" = (/obj/floor_decal/corner/black/border{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"toC" = (/obj/floor_decal/corner/purple{dir = 1},/obj/machinery/camera/network/research{c_tag = "Xenobiology - Lower - Containment Fore"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"toD" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"toK" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"toO" = (/obj/structure/bed/chair/shuttle/white{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"toT" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/holocontrol) -"toV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"tpb" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) -"tpf" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"tpi" = (/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"tpp" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/sofa/r/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"tpJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/space) -"tpK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"tpL" = (/turf/simulated/floor/wood/bamboo{name = "stairs"},/area/space) -"tqd" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/industrial/warning,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"tqe" = (/obj/machinery/status_display{pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tqj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"tqr" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"tqv" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "fuel_in"; pixel_y = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/fuelbay) -"tqw" = (/obj/structure/table/standard,/obj/item/device/geiger,/obj/item/device/scanner/health,/turf/simulated/floor/tiled/white,/area/space) -"tqx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"tqy" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/open,/area/maintenance/seconddeck/aftstarboard) -"tqE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"tqL" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/space) -"tqM" = (/obj/machinery/papershredder,/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tqV" = (/obj/paint_stripe/blue,/obj/structure/sign/nanotrasen{dir = 4},/turf/simulated/wall/r_titanium,/area/space) -"tqW" = (/obj/machinery/computer/ship/helm{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/floor_decal/spline/fancy/black{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"trg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/visible,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"tri" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Fore Hallway - Fore"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"trx" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/space) -"trA" = (/obj/machinery/door/firedoor,/obj/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{dir = 4; name = "Second Deck Substation"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/substation/seconddeck) -"trC" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/space) -"trM" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"trR" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"trS" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/research{name = "Control Room"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tsj" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"tsm" = (/obj/floor_decal/carpet/blue2{dir = 4},/obj/structure/bed/padded,/obj/item/bedsheet/hop,/obj/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor/carpet/blue3,/area/space) -"tsn" = (/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/structure/hygiene/drain,/obj/structure/hygiene/shower{dir = 4},/obj/machinery/door/window/eastright,/obj/structure/curtain/open/shower,/obj/structure/closet/walllocker{pixel_x = -28},/obj/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/freezer,/area/space) -"tsv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"tsG" = (/obj/machinery/atmospherics/binary/pump/on{name = "Scrubber to Waste"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"tta" = (/obj/item/paper_bin,/obj/item/pen{pixel_x = -1},/obj/item/pen/red{pixel_x = 5},/obj/structure/table/woodentable_reinforced/ebony,/turf/simulated/floor/carpet/red,/area/space) -"ttd" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/space) -"tto" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"ttq" = (/obj/structure/table/rack,/obj/item/device/flashlight/flare/glowstick/random,/obj/random/single/color/cable_coil,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ttA" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"ttD" = (/obj/structure/cable/green,/obj/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ttL" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/aftstarboard) -"tud" = (/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/rnd/entry) -"tun" = (/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"tuB" = (/obj/machinery/suit_storage_unit/standard_unit{req_access = newlist()},/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"tuE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"tuG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"tuN" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/foundation,/turf/simulated/floor/tiled/dark,/area/space) -"tuR" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Third Deck Substation Bypass"},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/substation/thirddeck) -"tvj" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"tvk" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"tvm" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/maple,/area/space) -"tvr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/rotating_alarm/supermatter{pixel_y = 14},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"tvu" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"tvE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/cyan{dir = 1},/turf/simulated/open,/area/space) -"tvG" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/omni/filter{tag_north = 2; tag_south = 1; tag_west = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"tvN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass/cut,/area/space) -"tvZ" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"twj" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"twk" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/computer/modular/preset/aislot/research{dir = 1},/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"twl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"twq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"twv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"twx" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"twz" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/space) -"twE" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"twH" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"twJ" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"twN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"twO" = (/obj/structure/bed/sofa/l/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/carpet/blue,/area/space) -"twT" = (/obj/machinery/light{dir = 1},/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"twU" = (/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 6; id_tag = "captaindoor"; name = "Office Door Control"; pixel_x = 6; pixel_y = 24; req_access = list("ACCESS_CAPTAIN")},/obj/machinery/button/windowtint{id = "cap_windows"; pixel_x = -3; pixel_y = 24},/obj/machinery/computer/modular/preset/cardslot/command,/turf/simulated/floor/carpet/blue2,/area/space) -"twV" = (/obj/structure/filingcabinet/chestdrawer,/obj/floor_decal/spline/fancy/black,/obj/floor_decal/industrial/outline/yellow,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/spline/fancy/black,/obj/machinery/rotating_alarm/security_alarm{dir = 1; pixel_y = -13},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"twY" = (/obj/structure/closet/l3closet/general,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"twZ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"txb" = (/obj/random/vendor{dir = 4},/obj/floor_decal/corner/red/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"txc" = (/obj/floor_decal/spline/fancy/black/corner{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"txq" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"txt" = (/obj/machinery/computer/modular/preset/security{dir = 4},/obj/machinery/button/blast_door{dir = 4; id_tag = "security_permabrig_fitst_cell_shutters"; name = "1st Cell Shutters"; pixel_x = -21; pixel_y = 18; req_access = list("ACCESS_SECURITY")},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/blast_door{dir = 4; id_tag = "security_permabrig_lobby_shutters"; name = "Desk Shutters"; pixel_x = -28; pixel_y = -2; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/blast_door{dir = 4; id_tag = "security_permabrig_second_cell_shutters"; name = "2nd Cell Shutters"; pixel_x = -21; pixel_y = 6; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/blast_door{dir = 4; id_tag = "security_permabrig_third_cell_shutters"; name = "3d Cell Shutters"; pixel_x = -21; pixel_y = -6; req_access = list("ACCESS_SECURITY")},/obj/machinery/button/flasher{dir = 4; id_tag = "security_perm_chamber_flash"; name = "Chamber Flasher"; pixel_x = -28; pixel_y = 10; req_access = list("ACCESS_SECURITY")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"txv" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{pixel_y = 32},/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood/walnut,/area/space) -"txx" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"txC" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"txH" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped,/obj/item/reagent_containers/food/snacks/old/pizza,/turf/simulated/floor/plating,/area/space) -"tyd" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"tyl" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftstarboard) -"tym" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/structure/reagent_dispensers/water_cooler{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"tyD" = (/obj/machinery/light/spot{dir = 4},/turf/simulated/open,/area/space) -"tyI" = (/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"tyJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"tyL" = (/obj/machinery/light{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tyX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"tzi" = (/obj/machinery/computer/ship/engines{dir = 4},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/paleblue/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/structure/window/reinforced/polarized,/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"tzt" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/steel_grid,/area/space) -"tzF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"tzJ" = (/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"tzK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"tzL" = (/obj/machinery/door/window/brigdoor/westleft{id_tag = "iaaright"; req_access = newlist()},/obj/floor_decal/carpet/blue{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"tzM" = (/obj/structure/closet/emcloset,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"tzT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tzU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"tzW" = (/obj/structure/table/standard,/obj/item/defibrillator/loaded,/obj/item/auto_cpr,/obj/item/storage/box/freezer{pixel_x = 5; pixel_y = 9},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"tAb" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/trash,/turf/simulated/floor/plating,/area/space) -"tAe" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/space) -"tAp" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/corner,/obj/machinery/access_button/airlock_interior{master_tag = "engine_airlock"; name = "Cycle to Core"; pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"tAr" = (/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"tAz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tAA" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/techfloor/corner{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"tAK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"tAO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"tAU" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"tAW" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/green/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"tBd" = (/obj/structure/bed/chair/padded/red,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"tBl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/space) -"tBq" = (/obj/structure/closet/emcloset,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/warning/airlock{dir = 8; pixel_x = 32},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/maintenance/fourthdeck/aft) -"tBs" = (/obj/machinery/shield_diffuser,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tBx" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"tBy" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"tBz" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"tBD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/machinery/tele_beacon,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tBF" = (/obj/machinery/light,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/paleblue/border,/obj/machinery/papershredder,/turf/simulated/floor/tiled/dark,/area/space) -"tBK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"tBP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"tBS" = (/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"tBT" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/space) -"tBW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/space) -"tCa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"tCc" = (/obj/machinery/atmospherics/unary/heater,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"tCf" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/paint_stripe/red,/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_sergeant_shutters"; name = "Warden Desk"},/obj/wallframe_spawn/reinforced/polarized{id = "bo_windows"},/turf/simulated/floor/plating,/area/space) -"tCs" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"tCx" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"tCB" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"tCD" = (/obj/structure/sign/warning/fire,/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/incinerator) -"tCE" = (/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"tCJ" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tCL" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"tCO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"tCR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/light{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/space) -"tCS" = (/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 10},/obj/structure/curtain/bed{pixel_y = -32},/turf/simulated/floor/carpet/blue3,/area/space) -"tDf" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"tDh" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/floor_decal/corner/grey{dir = 10},/obj/machinery/computer/air_control{dir = 1; input_tag = "CO21p_in"; name = "Propellent Supply Control"; output_tag = "CO21p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngCO21"},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"tDj" = (/obj/floor_decal/techfloor,/obj/machinery/light/small,/obj/structure/table/standard,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/storage/toolbox/mechanical{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tDm" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 1; frequency = 1380; id_tag = "escape_pod_10_berth"; name = "escape pod ten berth controller"; pixel_x = -32; pixel_y = -28; tag_door = "escape_pod_10_berth_hatch"},/obj/floor_decal/industrial/warning,/obj/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"tDo" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/carpet,/area/chapel/main) -"tDr" = (/obj/structure/table/woodentable/ebony,/obj/item/frame/intercom,/obj/item/stack/cable_coil/blue,/turf/simulated/floor/wood/yew,/area/space) -"tDs" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tDu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/carpet/red,/area/space) -"tDw" = (/obj/floor_decal/corner/black{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"tDx" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"tDD" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass/medical{name = "Hospital"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/shutters/open{dir = 2; id_tag = "med_pat_ward"; name = "Infirmary Window Shutters"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tDG" = (/obj/structure/table/woodentable/mahogany,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"tDI" = (/obj/structure/table/steel,/obj/item/stack/flag/green,/obj/item/stack/flag/green,/obj/item/stack/flag/green,/obj/item/stack/flag/yellow,/obj/item/stack/flag/yellow,/obj/item/stack/flag/yellow,/obj/item/stack/flag/red,/obj/item/stack/flag/red,/obj/item/stack/flag/red,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/brown/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"tDJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"tDU" = (/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/paint_stripe/red,/turf/simulated/floor/plating,/area/space) -"tDW" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"tEi" = (/obj/machinery/status_display{pixel_y = 32},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"tEq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/exploration) -"tEs" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/fuel,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"tEF" = (/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"tEG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/storage/primary) -"tEK" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/obj/random/closet,/turf/simulated/floor/plating,/area/space) -"tET" = (/obj/structure/table/rack/dark,/obj/item/stack/material/glass/fifty,/obj/item/stack/material/glass/fifty,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/plain/black{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"tEV" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"tEX" = (/turf/simulated/wall/prepainted,/area/engineering/engine_monitoring) -"tEY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"tFf" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "fuel_out"; initialize_directions = 1; internal_pressure_bound = 8000; internal_pressure_bound_default = 8000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/air_sensor{id_tag = "fuel_sensor"},/turf/simulated/floor/reinforced/carbon_dioxide,/area/engineering/fuelbay) -"tFi" = (/obj/structure/bed/chair/office/teal{dir = 4},/obj/floor_decal/corner/beige/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"tFu" = (/turf/simulated/wall/prepainted,/area/storage/primary) -"tFA" = (/turf/simulated/wall/r_titanium,/area/space) -"tFC" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/cryopod/robot{pixel_x = -32},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/space) -"tFG" = (/obj/item/stool/bar/padded,/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tFO" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"tGd" = (/obj/floor_decal/corner/black/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tGg" = (/obj/floor_decal/corner/green/border{dir = 10},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tGm" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"tGv" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled,/area/space) -"tGC" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"tGH" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/research{dir = 4; name = "Miscellaneous Research"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"tGK" = (/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"tGL" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"tGQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"tGS" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/wall/r_wall/hull,/area/engineering/engine_room) -"tHa" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white/monotile,/area/space) -"tHc" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"tHv" = (/obj/structure/holoplant,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/space) -"tHC" = (/obj/floor_decal/corner/paleblue,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/white,/area/space) -"tHE" = (/obj/structure/inflatable/wall,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"tHF" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tHG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"tHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"tHT" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"tHW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tHZ" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"tIa" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 80},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"tIc" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"tIg" = (/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tIm" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/machinery/computer/air_control{dir = 1; input_tag = "fuel4p_in"; name = "Fuel Supply Control"; output_tag = "fuel4p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngPlasma4"},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"tIn" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/space) -"tIp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/space) -"tIt" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/techfloor/orange/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"tIu" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood/walnut,/area/space) -"tIz" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/space) -"tIK" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/office) -"tIN" = (/obj/structure/table/standard,/obj/item/storage/toolbox/mechanical,/obj/item/stack/nanopaste,/obj/item/stack/nanopaste,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera/network/research{c_tag = "Research - Robotics Lab - Surgery"; dir = 8},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"tIV" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/bed/chair/shuttle,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{dir = 4; frequency = 1380; id_tag = "escape_pod_11"; name = "escape pod eleven controller"; pixel_x = -20; tag_door = "escape_pod_11_hatch"},/turf/simulated/floor/tiled/techfloor,/area/space) -"tIX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"tJj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/spot,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/grass/cut,/area/space) -"tJs" = (/obj/floor_decal/corner/black/full,/obj/structure/table/steel_reinforced,/obj/item/storage/box/cups,/turf/simulated/floor/tiled/dark,/area/space) -"tJv" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"tJx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/bed/sofa/r/black,/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "bar_private_room_1"; name = "Lock"; pixel_x = 24; pixel_y = -7},/turf/simulated/floor/carpet/green,/area/space) -"tJz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"tJC" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id_tag = "cafe"; name = "Cafe Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"tJJ" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/outlet_injector{id = "fuel3p_in"; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1starboard) -"tJM" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/camera/network/research{c_tag = "Research - Toxins Storage"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tJY" = (/obj/structure/hygiene/shower{dir = 8; pixel_x = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/rnd/xenobiology/entry) -"tKa" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"tKr" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/hardstorage) -"tKy" = (/obj/structure/closet,/obj/item/melee/classic_baton,/obj/decal/cleanable/dirt,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood{icon_state = "wood_broken2"},/area/maintenance/firstdeck/forestarboard) -"tKC" = (/obj/floor_decal/corner/purple/mono,/obj/floor_decal/industrial/outline/yellow,/obj/random/vendor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"tKH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"tKO" = (/obj/machinery/light{dir = 1},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"tKP" = (/turf/simulated/wall/prepainted,/area/quartermaster/storage) -"tKQ" = (/turf/simulated/floor/bluegrid,/area/space) -"tKT" = (/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"tKX" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/machinery/light/small{dir = 4},/obj/machinery/alarm/monitor/isolation{alarm_id = "petrov2"; dir = 8; pixel_x = 24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"tLc" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"tLm" = (/obj/structure/catwalk,/obj/structure/handrail{dir = 4},/turf/space,/area/space) -"tLp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood/mahogany,/area/space) -"tLz" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"tLA" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/catwalk,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"tLH" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/corner/grey/border{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"tLU" = (/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tLY" = (/obj/structure/table/standard,/obj/item/aicard,/obj/item/aiModule/reset,/obj/structure/sign/warning/detailed{dir = 4; pixel_x = -32},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"tMa" = (/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3starboard) -"tMb" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/sleeper) -"tMe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"tMh" = (/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"tMl" = (/obj/random/closet,/turf/simulated/floor/plating,/area/space) -"tMr" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/industrial/outline/blue,/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"tMz" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"tMB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"tMD" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/table/marble,/obj/machinery/reagentgrinder/juicer{pixel_y = 8},/obj/structure/window/reinforced,/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 6},/obj/item/reagent_containers/glass/beaker/insulated,/turf/simulated/floor/tiled/white,/area/space) -"tMH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"tML" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/computer/arcade,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"tMU" = (/obj/item/storage/mirror{pixel_x = -26; pixel_y = 1},/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/valve/shutoff/supply,/turf/simulated/floor/tiled,/area/rnd/research) -"tMV" = (/obj/structure/closet/secure_closet/crew/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/white/monotile,/area/maintenance/fourthdeck/aft) -"tNf" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"tNg" = (/obj/machinery/door/blast/regular{dir = 8; id_tag = "toxins_petrov_exhaust"; name = "Toxins Exhaust Blast Doors"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tNn" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"tNo" = (/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"tNv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"tNA" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"tNN" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{pixel_y = 32},/obj/machinery/light{dir = 8},/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"tOd" = (/obj/machinery/shield_diffuser,/obj/machinery/door/blast/regular{dir = 4; id_tag = "chapel_shutters_md"; name = "Mass Driver Shutters"},/turf/simulated/floor/tiled/techfloor/grid,/area/chapel/main) -"tOi" = (/obj/wallframe_spawn/reinforced/titanium,/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"tOk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"tOl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"tOr" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/space) -"tOt" = (/obj/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tOw" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"tOx" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Robotics Laboratory Desk"; req_access = newlist()},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/structure/wall_frame/standard,/obj/structure/table/wallf{dir = 4},/turf/simulated/floor/plating,/area/assembly/robotics) -"tOC" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"tOD" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"tOK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/status_display{pixel_x = 32; pixel_y = 32},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"tON" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/space) -"tOO" = (/obj/floor_decal/industrial/traffic{dir = 1},/obj/floor_decal/corner/red/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tOU" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/holocontrol) -"tPf" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"tPh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"tPq" = (/obj/structure/closet/secure_closet{name = "Secure Evidence Locker"; req_access = list("ACCESS_SECURITY")},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/space) -"tPr" = (/obj/structure/inflatable/door,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"tPs" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/obj/structure/railing/mapped{dir = 8},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"tPx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"tPA" = (/obj/floor_decal/corner/black/full,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"tPH" = (/obj/machinery/floodlight{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"tPJ" = (/obj/floor_decal/industrial/outline/orange,/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/plating{burnt = 1; name = "burnt plating"},/area/crew_quarters/safe_room/bridge) -"tPK" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"tPO" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/random/mre,/obj/structure/table/woodentable/walnut,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/space) -"tPS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"tQf" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_port_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "sd_port"; name = "Second Deck Port Airlock Controller"; pixel_x = 20; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"tQj" = (/obj/machinery/vending/hydronutrients,/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/plating,/area/space) -"tQm" = (/obj/machinery/light_switch{dir = 4; on = 1; pixel_x = -23},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 10},/obj/floor_decal/corner/purple/bordercorner2{dir = 10},/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/item/storage/box/monkeycubes{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/space) -"tQu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating,/area/space) -"tQA" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/foreport) -"tQD" = (/obj/machinery/door/airlock/engineering{name = "Auxiliary Power Storage"; req_access = newlist()},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/auxpower) -"tQG" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "sd_starboard_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"tQH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"tQO" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"tQZ" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor/corner{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"tRf" = (/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1331; id_tag = "rescue_shuttle_dock_airlock_outer"; name = "Docking Port Airlock"},/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"tRg" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"tRq" = (/obj/structure/bed/sofa/l/teal{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"tRr" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"tRB" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/cyan,/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"tRD" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"tRF" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1starboard) -"tRG" = (/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"tRI" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Surgery - Operation Theatre Two"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tRN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/civilian{name = "Hydroponics Bay"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"tRS" = (/obj/structure/railing/mapped,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tRV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/engineering{c_tag = "Bluespace Drive - Chamber"; dir = 8},/turf/simulated/floor/bluegrid,/area/space) -"tSd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"tSs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"tSD" = (/obj/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tSK" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/obj/machinery/computer/modular/preset/dock{dir = 4},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"tSM" = (/obj/floor_decal/corner/yellow/half{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"tSN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"tSQ" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"tST" = (/obj/machinery/light/spot,/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"tSV" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/spline/fancy/black/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"tSW" = (/obj/machinery/light_switch{pixel_y = 29},/obj/structure/bed/chair/padded/blue,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"tTa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"tTc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"tTe" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass/civilian{name = "Central Stairwell"},/turf/simulated/floor/tiled/monotile,/area/space) -"tTh" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder,/obj/item/folder,/obj/item/folder,/obj/item/folder,/turf/simulated/floor/lino,/area/space) -"tTp" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/space) -"tTs" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"tTw" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tTy" = (/obj/structure/table/woodentable/walnut,/obj/item/storage/box/donut,/obj/floor_decal/carpet/blue{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/carpet/blue,/area/space) -"tTD" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"tTF" = (/obj/machinery/light/spot{dir = 1},/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/green/border{dir = 6},/turf/simulated/floor/tiled/monotile,/area/space) -"tTM" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"tTS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"tTU" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) -"tTX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"tUc" = (/obj/structure/table/rack,/obj/random/accessory,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"tUi" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "Fourth Deck - Port Necelle"; dir = 1},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"tUj" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "ai_core_pump"},/obj/machinery/light{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/space) -"tUm" = (/obj/floor_decal/industrial/warning/cee{dir = 8},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 1; id_tag = "solar_port_pump"},/obj/machinery/light/small,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"tUx" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"tUB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"tUC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/space) -"tUF" = (/obj/machinery/door/airlock/hatch{id_tag = "engine_electrical_maintenance"; locked = 1; name = "SMES Access"; req_access = newlist()},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_smes) -"tUH" = (/obj/structure/catwalk,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "auxair"; name = "Auxiliary Air Storage Exterior Access Console"; pixel_y = -20; req_access = list("ACCESS_ENGINEERING")},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"tUJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"tUS" = (/obj/floor_decal/corner/yellow/half{dir = 4},/obj/machinery/camera/network/supply{c_tag = "Supply Office - Quartermaster"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"tVb" = (/obj/floor_decal/corner/red,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"tVg" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"tVj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tVm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"tVp" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"tVr" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"tVt" = (/obj/floor_decal/spline/plain/black{dir = 1},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tVx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"tVD" = (/obj/machinery/computer/shuttle_control/explore/exploration_shuttle,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"tVL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"tVN" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"tVV" = (/obj/floor_decal/borderfloorwhite{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/bed/chair/office/comfy/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/space) -"tWg" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 1; id_tag = "prototype_controller"; name = "Fusion Maintenance Access Controller"; pixel_y = -21; req_access = list("ACCESS_ENGINE_EQUIP"); tag_exterior_door = "prototype_exterior"; tag_interior_door = "prototype_interior"},/obj/machinery/computer/air_control{dir = 1; input_tag = "rust_injector"; name = "R-UST Gas Injection Controls"; sensor_name = "Fusion Chamber"; sensor_tag = "rust_sensor"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"tWh" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "escape_pod_7_berth"; name = "escape pod seven berth controller"; pixel_x = -32; pixel_y = 21; tag_door = "escape_pod_7_berth_hatch"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralstarboard) -"tWj" = (/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"tWs" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/spline/fancy/wood{dir = 10},/turf/simulated/floor/carpet,/area/space) -"tWx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/space) -"tWK" = (/obj/structure/cryofeed,/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"tWT" = (/obj/machinery/door/airlock/research{dir = 4; name = "Robotics Laboratory"; req_access = newlist()},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"tWV" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/door/airlock/external{autoset_access = 0; dir = 4; frequency = 1331; id_tag = "guppy_shuttle_outer"; name = "Guppy External Access"; req_access = list("ACCESS_GUPPY")},/obj/machinery/door/blast/regular{id_tag = "guppy_hatch"; name = "Rear Hatch"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/blast_door{id_tag = "guppy_hatch"; name = "Rear Hatch Control"; pixel_x = 25; pixel_y = 1; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"tWW" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"tXc" = (/obj/machinery/light{dir = 8},/obj/machinery/lapvend,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"tXe" = (/obj/structure/catwalk,/turf/simulated/open,/area/space) -"tXg" = (/obj/floor_decal/corner/grey/border{dir = 10},/obj/structure/table/glass,/obj/item/towel/random,/obj/item/storage/box/detergent,/obj/machinery/recharger,/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"tXi" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green,/obj/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"tXm" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"tXp" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"tXG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"tXL" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/machinery/light/spot,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"tXM" = (/obj/structure/iv_stand,/obj/structure/roller_bed,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"tXS" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"tXW" = (/obj/floor_decal/corner/grey/full,/obj/structure/reagent_dispensers/water_cooler{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"tXY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"tXZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/r_wall/prepainted,/area/holocontrol) -"tYr" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/tiled/techfloor,/area/space) -"tYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_room) -"tYF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"tYJ" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/folder/nt,/obj/item/folder/blue{pixel_x = 5; pixel_y = 5},/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/stamp/denied,/obj/floor_decal/carpet/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/blue,/area/space) -"tYV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"tYX" = (/obj/structure/closet/shipping_wall/filled{pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"tZc" = (/obj/paint_stripe/red,/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/blast/shutters/open{id_tag = "visiting_room_windows_shutters"; name = "Brig's visiting room shutters"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/turf/simulated/floor/plating,/area/security/prison) -"tZs" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"tZt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics) -"tZw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/obstruction,/turf/simulated/floor/plating,/area/space) -"tZE" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/tank{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "o21p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3starboard) -"tZF" = (/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/port) -"tZJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"tZT" = (/obj/floor_decal/corner/paleblue/border{dir = 9},/obj/floor_decal/corner/paleblue/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/medbay{c_tag = "Infrimary - Staging"; dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"tZZ" = (/obj/machinery/shieldwallgen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"uao" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/space) -"uat" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"uau" = (/obj/structure/closet/secure_closet/virology,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/decal/cleanable/dirt,/obj/random/maintenance,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/space) -"uav" = (/obj/structure/table/rack,/obj/item/clothing/mask/breath/emergency,/obj/item/clothing/mask/breath/emergency,/obj/item/clothing/mask/breath/emergency,/obj/item/clothing/mask/breath/emergency,/obj/item/clothing/mask/breath/emergency,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"uaD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/space) -"uaK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uaM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uaO" = (/obj/floor_decal/corner/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"uaP" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/random/junk,/obj/floor_decal/techfloor{dir = 5},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"uaQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge) -"uaS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/space) -"uaW" = (/obj/floor_decal/industrial/warning,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ubk" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood{icon_state = "wood_broken4"},/area/maintenance/firstdeck/forestarboard) -"ubm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"ubp" = (/turf/simulated/wall/r_wall/hull,/area/space) -"ubr" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"ubB" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"ubG" = (/obj/item/stack/material/wood/walnut{amount = 2},/turf/simulated/floor/carpet,/area/space) -"ubH" = (/obj/machinery/door/window/brigdoor/northleft{autoset_access = 0; dir = 4; name = "Test Chamber"; req_access = list("ACCESS_TOXINS")},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "misclab"; name = "Test Chamber Blast Doors"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"ubP" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"ucf" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"uci" = (/obj/structure/table/marble,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/reagent_temperature,/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"uco" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"ucp" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/drinks/teapot{pixel_x = 4; pixel_y = 16},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"ucs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/foreport) -"ucu" = (/obj/structure/closet/crate/radiation,/obj/floor_decal/borderfloor/corner{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"ucx" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"ucy" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"ucE" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 8},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"ucQ" = (/obj/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ucR" = (/obj/random/trash,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"ucV" = (/obj/floor_decal/industrial/traffic{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ucW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/alarm{pixel_y = 24},/obj/machinery/camera/network/engineering{c_tag = "Fourth Deck - Starbound Necelle"},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"ucY" = (/obj/machinery/newscaster{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"uda" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"udc" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"udn" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"udr" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"udy" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"udF" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/wallframe_spawn/reinforced/polarized/full{id = "hop_windows"},/turf/simulated/floor/plating,/area/space) -"udI" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"udJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"udR" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/space) -"uea" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; dir = 8; id_tag = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutters"; pixel_x = 25; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"ueh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"uek" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uel" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/fourthdeck/center) -"uem" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"ueq" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/space) -"uet" = (/obj/machinery/light,/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/turretid/stun{control_area = list(/area/turret_protected/ai_maint); name = "Maintenance turret control panel"; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"uew" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"ueK" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "petrov_shuttle_sensor"; pixel_x = -24; pixel_y = 12},/obj/machinery/oxygen_pump{pixel_y = 32},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "petrov_shuttle_pump"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ueY" = (/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/foreport) -"ufa" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"ufg" = (/obj/machinery/atmospherics/valve{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ufm" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ufo" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"ufy" = (/obj/paint_stripe/blue,/obj/structure/sign/nanotrasen{dir = 8},/turf/simulated/wall/r_titanium,/area/space) -"ugb" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "eng4"; name = "First Deck Port Nacelle Access"; pixel_x = -20; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green,/obj/machinery/power/apc/high/critical{name = "south bump"; pixel_y = -24},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"ugd" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_10"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ugw" = (/obj/machinery/door/airlock/research{dir = 4; name = "Robotics Laboratory"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/machinery/holosign/surgery{dir = 1; id_tag = "robosurg"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"ugG" = (/obj/machinery/cryopod,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ugK" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/incinerator) -"ugM" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/floor_decal/spline/fancy/black/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"ugQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"ugW" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"uhk" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d3port) -"uhv" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/tank/air{dir = 8},/turf/simulated/floor/tiled/monotile,/area/space) -"uhC" = (/obj/floor_decal/corner/red{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 40},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"uhE" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uhJ" = (/turf/simulated/floor/tiled/white/monotile,/area/space) -"uhR" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/techfloor/orange{dir = 5},/obj/structure/railing/mapped{dir = 1; icon_state = "railing0-1"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"uhW" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"uhY" = (/obj/structure/window/basic{dir = 1},/obj/random/ironing_board_structure,/turf/simulated/floor/tiled/freezer,/area/space) -"uib" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"uim" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/machinery/camera/network/security{c_tag = "Longterm - Hydroponics"; dir = 8},/turf/simulated/floor/tiled,/area/space) -"uiv" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/sign/poster{pixel_x = -32},/obj/structure/closet/bombclosetsecurity,/turf/simulated/floor/tiled/techfloor,/area/space) -"uiA" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps/airtight,/turf/simulated/floor/plating,/area/space) -"uiB" = (/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = 16},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"uiC" = (/obj/structure/railing/mapped,/obj/machinery/camera/network/research{c_tag = "Xenobio - aqua chamber"},/turf/simulated/floor/reinforced,/area/space) -"uiE" = (/obj/item/storage/box/cups,/obj/floor_decal/spline/fancy/black,/obj/structure/table/standard,/obj/machinery/light/spot,/turf/simulated/floor/wood/walnut,/area/space) -"uiJ" = (/obj/floor_decal/steeldecal/steel_decals_central6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"uiQ" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/machinery/computer/modular/preset/cardslot/command_eng{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"ujc" = (/obj/structure/catwalk,/obj/structure/ladder/up,/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"ujk" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/space) -"ujt" = (/obj/structure/table/rack,/obj/item/stock_parts/console_screen,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser/high,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"uju" = (/obj/floor_decal/corner/yellow/half{dir = 1},/obj/structure/bed/chair/office/brown{dir = 8},/turf/simulated/floor/tiled,/area/space) -"ujv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"ujx" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/fuel,/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"ujy" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ujE" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"ujN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"ujZ" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"uke" = (/obj/structure/disposalpipe/up{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"ukj" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/green,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"ukl" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; id = "o22p_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3port) -"ukn" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ukq" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"ukv" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"ukw" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ukA" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lightgrey/border{dir = 5},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"ukG" = (/obj/structure/table/standard,/obj/floor_decal/corner/paleblue,/obj/item/flora/pottedplantsmall/leaf{pixel_x = -5; pixel_y = 2},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"ukQ" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"ukT" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"ukV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/bluespace) -"ukZ" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/camera_assembly,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"ulg" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"uli" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ult" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"ulv" = (/obj/floor_decal/corner/purple{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"ulw" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_11_berth_hatch"; name = "Escape Pod Eleven"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"uly" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ulA" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/machinery/light/spot,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"ulC" = (/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/maintenance/firstdeck/foreport) -"ulE" = (/obj/structure/noticeboard{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ulM" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftport) -"ulQ" = (/obj/machinery/suit_storage_unit/science,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/brown/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"ulS" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"ulT" = (/obj/machinery/seed_extractor,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{pixel_x = -6; pixel_y = 24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"ulW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"ulX" = (/obj/floor_decal/corner/red,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"uma" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/maintenance{autoset_access = 0; dir = 4; name = "Dormitory Maintenance"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"umm" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/space) -"umo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"ums" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"umw" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"umI" = (/obj/random/vendor{dir = 1},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"umT" = (/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"umU" = (/obj/machinery/flasher{pixel_x = 32; pixel_y = 32},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"una" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"une" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/civilian{dir = 8; name = "Holodeck"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/holocontrol) -"ung" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"uni" = (/obj/structure/lattice,/obj/structure/disposalpipe/down,/obj/structure/cable/green{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/turf/simulated/open,/area/space) -"unm" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"unn" = (/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/foreport) -"unp" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"uns" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"unu" = (/obj/floor_decal/techfloor{dir = 9},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"unx" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"unF" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"unH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"unN" = (/obj/structure/grille,/obj/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"unU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"unX" = (/turf/simulated/floor/tiled,/area/maintenance/firstdeck/aftstarboard) -"uod" = (/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"uoi" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"uoD" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan,/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"uoG" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "iaaleft"},/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack/corner2,/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/structure/holoplant,/turf/simulated/floor/tiled/dark,/area/space) -"uoH" = (/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1port) -"uoI" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uoJ" = (/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"uoK" = (/obj/wallframe_spawn/reinforced,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"uoL" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uoM" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"uoZ" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"uph" = (/obj/machinery/door/blast/regular/escape_pod{dir = 8; id_tag = "escape_pod_5"},/turf/simulated/floor/reinforced{map_airless = 1},/area/maintenance/firstdeck/foreport) -"upm" = (/obj/structure/railing/mapped,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/space) -"upq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"upr" = (/obj/structure/table/steel_reinforced,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ups" = (/obj/structure/closet/emcloset,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"upE" = (/obj/item/stool/bar/padded,/obj/floor_decal/corner/red{dir = 10},/obj/floor_decal/corner/red{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"upI" = (/obj/machinery/air_sensor{id_tag = "h2_sensor"},/turf/simulated/floor/reinforced/hydrogen,/area/engineering/atmos) -"upK" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"upM" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"upN" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"upO" = (/obj/machinery/computer/shuttle_control{dir = 4; req_access = list("ACCESS_PETROV_HELM"); shuttle_tag = "Petrov"},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"upT" = (/obj/structure/towel/black{pixel_y = -12},/obj/structure/hygiene/toilet,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/freezer,/area/space) -"upY" = (/obj/structure/table/standard,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled,/area/space) -"uqa" = (/obj/machinery/portable_atmospherics/canister/chlorine,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"uqd" = (/obj/floor_decal/corner/red/border{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uqg" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/floor_decal/corner/red/bordercee{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uql" = (/obj/floor_decal/corner/purple,/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"uqm" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"uqr" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "centcom_shuttle_dock_inner"; name = "Docking Port Airlock"},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uqy" = (/obj/floor_decal/techfloor{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"uqC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"uqE" = (/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/locker) -"uqJ" = (/obj/structure/table/steel,/obj/item/storage/box/condimentbottles,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"uqL" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 8},/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"uqZ" = (/obj/machinery/light{dir = 8},/obj/machinery/artifact_harvester,/turf/simulated/floor/tiled/white/monotile,/area/space) -"ura" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow,/obj/machinery/power/tracker,/turf/simulated/floor/reinforced,/area/space) -"urd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/yellow/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"urq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"urs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"urv" = (/obj/machinery/button/holosign{dir = 1; id_tag = "robosurg"; pixel_x = -6; pixel_y = -21},/obj/machinery/button/windowtint{dir = 1; id = "robotics_surgery"; pixel_x = 6; pixel_y = -21},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/external_cooling_device,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"urw" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{id_tag = "cedoor"; name = "Chief Engineer"; req_access = newlist(); secured_wires = 1; stripe_color = "#ffbf00"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/heads/office/ce) -"urz" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"urE" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"urH" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"urK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{autoset_access = 0; dir = 4; name = "Security Maintenance"; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"urR" = (/obj/floor_decal/corner/purple{dir = 1},/obj/machinery/camera/network/research{c_tag = "Xenobiology - Lower - Containment Aft"; dir = 1},/turf/simulated/floor/tiled,/area/space) -"usb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"usc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"usl" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/shuttle_control/lift/medical,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"usp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24; req_access = list(list("ACCESS_ATMOS","ACCESS_ENGINE_EQUIP","ACCESS_GUPPY"))},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"usr" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{dir = 4; name = "Adjutants Room"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"usv" = (/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green,/obj/paint_stripe/red,/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized{id = "cadetwindow"},/turf/simulated/floor/plating,/area/space) -"usx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood/walnut,/area/space) -"usD" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/space) -"usG" = (/obj/machinery/suit_cycler/medical/alt,/obj/structure/window/basic{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"usI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/space) -"usQ" = (/obj/machinery/jukebox/custom_tape/old,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"usS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"usU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"utb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/multi_tile/glass/research{dir = 8; id_tag = "PetrovAccess"; name = "Petrov Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"utv" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"utC" = (/obj/machinery/power/smes/batteryrack,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"utD" = (/obj/floor_decal/corner/black/three_quarters{dir = 4},/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 5},/obj/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/space) -"utF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"utP" = (/obj/floor_decal/industrial/traffic/corner{dir = 4},/obj/floor_decal/corner/black/border{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"utW" = (/obj/machinery/vending/cigarette{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/holocontrol) -"utX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "toxin_lab_access"; name = "Toxin Lab Access Console"; pixel_x = -24; req_access = list("ACCESS_TOX_STORAGE")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uuA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uuL" = (/obj/machinery/door/firedoor,/obj/random/obstruction,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/vacant/infirmary) -"uuS" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/accessory,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"uuV" = (/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"uvj" = (/obj/machinery/radiocarbon_spectrometer,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"uvl" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/catwalk,/obj/machinery/disposal/deliveryChute,/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/reinforced,/area/exploration_shuttle/airlock) -"uvE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"uvJ" = (/obj/floor_decal/industrial/hatch/red,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"uvK" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"uvV" = (/obj/machinery/organ_printer/flesh/mapped,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/surgery) -"uvY" = (/obj/item/stool,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"uwd" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) -"uwf" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/science{name = "Exploration Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uwh" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uwk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"uwl" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "calypso_shuttle_pump"},/obj/structure/handrail{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/exploration_shuttle/airlock) -"uwr" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/item/folder/envelope/captain,/obj/floor_decal/spline/fancy/wood,/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/blue2,/area/space) -"uwx" = (/obj/structure/table/standard,/obj/item/storage/box/cups,/obj/machinery/light_switch{pixel_x = -10; pixel_y = 28},/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/corner/black/half{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"uwA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Expedition Leader's Office"; sort_type = "Expedition Leader's Office"},/turf/simulated/floor/tiled,/area/space) -"uwC" = (/obj/machinery/telecomms/processor/preset_two,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped,/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"uwG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uwI" = (/obj/structure/closet/walllocker{pixel_x = 28},/obj/item/reagent_containers/food/snacks/proteinbar,/obj/item/reagent_containers/food/snacks/proteinbar,/obj/item/reagent_containers/food/snacks/proteinbar,/obj/item/reagent_containers/food/snacks/proteinbar,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/reagent_containers/food/drinks/cans/waterbottle,/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/regular,/turf/simulated/floor/tiled/steel_grid,/area/space) -"uwR" = (/obj/floor_decal/ntlogo{dir = 4},/turf/simulated/floor/tiled,/area/space) -"uwY" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 10},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"uxa" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"uxd" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"uxe" = (/obj/machinery/light/small{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uxg" = (/obj/structure/railing/mapped{dir = 1},/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"uxi" = (/obj/structure/girder,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uxj" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"uxl" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"uxm" = (/obj/machinery/door/airlock/highsecurity{dir = 4; name = "Armory"; req_access = newlist()},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uxr" = (/obj/random/obstruction,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/space) -"uxv" = (/obj/machinery/chemical_dispenser/full,/obj/floor_decal/corner/beige{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"uxx" = (/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"uxy" = (/obj/machinery/firealarm{pixel_y = 24},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/holocontrol) -"uxB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"uxN" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/floor_decal/corner/green/half{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"uxP" = (/obj/machinery/sleeper/survival_pod{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/machinery/pager/medical{name = "Call Medics button"; pixel_y = 24},/obj/structure/sign/emergonly{dir = 4; pixel_x = -32},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"uxQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/foreport) -"uyd" = (/obj/structure/lattice,/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/cable{d1 = 32; icon_state = "32-1"},/obj/machinery/atmospherics/pipe/zpipe/down/fuel,/turf/simulated/open,/area/maintenance/firstdeck/aftstarboard) -"uyf" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uyB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"uyI" = (/obj/structure/table/standard,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/orange{dir = 8},/obj/item/storage/box/cups,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/research{c_tag = "Research - Devlab"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/development) -"uyK" = (/obj/structure/lattice,/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"uyP" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/turf/simulated/floor/plating,/area/space) -"uyQ" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall/r_wall/prepainted,/area/space) -"uzc" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{target_pressure = 3500},/obj/floor_decal/corner/red{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"uzk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uzm" = (/obj/machinery/floodlight{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"uzq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"uzw" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"uzC" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"uzD" = (/obj/machinery/washing_machine,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"uzI" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa3"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"uzL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/reinforced,/area/space) -"uzM" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uzR" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/brown/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/brown/bordercorner2{dir = 9},/obj/structure/bed/chair/padded/brown{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"uzU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"uzY" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"uAb" = (/obj/paint/red,/obj/paint_stripe/white,/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"uAd" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/light_construct,/obj/floor_decal/spline/fancy/wood,/turf/simulated/floor/wood/walnut,/area/space) -"uAg" = (/obj/machinery/door/airlock/glass/command{name = "E.V.A."; req_access = newlist(); secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uAj" = (/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "briefing_windows"},/turf/simulated/floor/plating,/area/space) -"uAo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{dir = 4; id_tag = "bridge_hallway_doors_port"; name = "Bridge Access"},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"uAp" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uAv" = (/obj/structure/cable,/obj/machinery/power/terminal{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/fourthdeck) -"uAB" = (/obj/structure/bed/chair/pew,/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/space) -"uAC" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uAJ" = (/obj/floor_decal/corner/black/border{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uAN" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uAU" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/r_wall/hull,/area/thruster/d1starboard) -"uAY" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"uAZ" = (/obj/structure/table/woodentable/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 15},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"uBb" = (/obj/structure/closet/hydrant{pixel_y = -28},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"uBf" = (/obj/machinery/computer/modular/preset/security{dir = 4},/obj/machinery/light/small,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"uBi" = (/obj/machinery/vending/coffee{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"uBj" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uBB" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"uBD" = (/obj/machinery/door/airlock/civilian{dir = 4; id_tag = "toilet_eng_2"; name = "Toilet"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"uBE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uBI" = (/obj/structure/iv_stand,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light,/turf/simulated/floor/tiled/white/monotile,/area/space) -"uBS" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/vending/security,/turf/simulated/floor/tiled/steel_grid,/area/space) -"uBX" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 1},/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood/bamboo,/area/space) -"uBY" = (/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/thirddeck/center) -"uCg" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1331; id_tag = "guppy_shuttle_inner"; name = "Guppy Internal Access"; req_access = list("ACCESS_GUPPY")},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"uCk" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"uCl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/civilian{name = "Actor's Room"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/walnut,/area/space) -"uCq" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 2; tag_north = 1; tag_north_con = 0.33; tag_south = 1; tag_south_con = 0.33; tag_west = 1; tag_west_con = 0.34},/obj/machinery/button/ignition{id_tag = "toxlab_petrov"; pixel_x = 6; pixel_y = -23},/turf/simulated/floor/tiled/white/monotile,/area/space) -"uCr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/walnut,/area/chapel/main) -"uCw" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"uCy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{autoset_access = 0; name = "Bridge Checkpoint"; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uCB" = (/turf/simulated/wall/prepainted,/area/vacant/infirmary) -"uCK" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{id_tag = "BSD_windows"; name = "Bluespace Chamber Lockdown"},/turf/simulated/floor/plating,/area/space) -"uCN" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uCO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple/bordercorner,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uCT" = (/turf/simulated/wall/r_wall/prepainted,/area/chapel/main) -"uCW" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"uDc" = (/obj/structure/table/woodentable/walnut,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1; pixel_y = 3},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"uDo" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"uDp" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/stack/cable_coil,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"uDG" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/blast/regular/open{id_tag = "xenobio1"; name = "Containment Blast Doors"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/space) -"uDK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"uDL" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/turf/simulated/floor/wood/bamboo,/area/space) -"uDN" = (/obj/structure/largecrate,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/techfloor/orange{dir = 9},/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"uDO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"uDZ" = (/obj/structure/flora/pottedplant/thinbush,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/space) -"uEb" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron/fifty,/obj/item/stack/material/phoron/fifty,/obj/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"uEh" = (/obj/machinery/atmospherics/valve{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"uEk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/bed/chair/padded/red{dir = 8},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uEl" = (/obj/machinery/bodyscanner,/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/nosmoking_1{dir = 8; pixel_x = 32; pixel_y = 5},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"uEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"uEp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uFc" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"uFe" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"uFk" = (/obj/floor_decal/carpet/purple,/turf/simulated/floor/carpet/purple,/area/chapel/office) -"uFw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"uFL" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/reinforced,/area/space) -"uFR" = (/obj/machinery/conveyor{dir = 9; id = "mining_internal"},/turf/simulated/floor,/area/quartermaster/hangar) -"uFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/crew_quarters/sleep/bunk) -"uGe" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uGf" = (/obj/floor_decal/corner/black/border{dir = 6},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uGm" = (/obj/floor_decal/corner/black/mono,/obj/structure/bed/chair/rounded/blue{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"uGq" = (/obj/structure/towel/black{pixel_y = 18},/obj/structure/hygiene/toilet{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/space) -"uGu" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/storage) -"uGv" = (/obj/machinery/light{dir = 4},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"uGw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"uGz" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"uGA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"uGD" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining{name = "Delivery Office"; req_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/space) -"uGF" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"uGI" = (/turf/simulated/floor/wood/ebony,/area/space) -"uGJ" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/machinery/barrier,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uGK" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor,/area/space) -"uGM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"uGN" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/plating,/area/engineering/engine_room) -"uGS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"uGT" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"uGY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/valve/shutoff/supply{name = "supply valve to Deck 4, Hangar"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"uHd" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/fore) -"uHi" = (/obj/item/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/techfloor,/area/space) -"uHj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "toilet1"; name = "Lock"; pixel_x = -24},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"uHw" = (/obj/machinery/light/small{dir = 4},/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uHB" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/obj/random/cash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uHE" = (/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"uHG" = (/obj/floor_decal/corner/red,/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/third_deck{c_tag = "Third Deck - Bar - Entry"; dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"uHH" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/techfloor,/area/space) -"uHL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"uHQ" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"uHX" = (/obj/structure/table/steel,/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"uHZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uIc" = (/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/obj/structure/railing/mapped{color = "#8c911d"; dir = 4; init_color = "#8c911d"},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"uIe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/floor_decal/corner/purple/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uIk" = (/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"uIl" = (/obj/structure/sign/poster{pixel_y = -32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"uIp" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/space) -"uIr" = (/obj/machinery/light{dir = 1},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; frequency = 1380; id_tag = "petrov_shuttle_airlock"; pixel_x = -24; req_access = list("ACCESS_PETROV_HELM"); tag_airpump = "petrov_shuttle_pump"; tag_chamber_sensor = "petrov_shuttle_sensor"; tag_exterior_door = "petrov_shuttle_outer"; tag_interior_door = "petrov_shuttle_inner"},/obj/floor_decal/industrial/outline/yellow,/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/turf/simulated/floor/tiled/white,/area/space) -"uIu" = (/obj/structure/bed/sofa/r/teal{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Personnel - Recreation"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"uIv" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/structure/sign/deck/bridge{pixel_y = 35},/turf/simulated/floor/tiled/dark,/area/space) -"uIA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Cell Three"; dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uIC" = (/obj/machinery/cryopod,/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/cryo) -"uIE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/space) -"uIF" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 4; id_tag = "guppy_emergency_exit"; name = "Emergency Exit"},/obj/machinery/button/blast_door{dir = 1; id_tag = "guppy_emergency_exit"; name = "Emergency Exit Control"; pixel_y = -24; req_access = list("ACCESS_GUPPY")},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"uIG" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"uIO" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"uIP" = (/obj/machinery/button/blast_door{dir = 4; id_tag = "bsa_door2"; name = "Obstruction Field Disperser Blast Door"; pixel_x = -24; req_access = list("ACCESS_GUN")},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uIX" = (/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"uIY" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/space,/area/space) -"uJe" = (/obj/machinery/door/airlock/civilian{name = "Sauna"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/space) -"uJh" = (/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/dark,/area/space) -"uJj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uJl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"uJo" = (/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"uJr" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"uJt" = (/obj/machinery/atmospherics/unary/heater,/obj/machinery/light{dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"uJu" = (/obj/floor_decal/corner/blue{dir = 5},/obj/machinery/computer/air_control{input_tag = "o21p_in"; name = "Oxygen Supply Control"; output_tag = "o21p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngOxygen1"},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 4},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"uJv" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/machinery/sparker{id_tag = "engines-3"; pixel_x = -24},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"uJz" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "abahyd_blast"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"uJF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"uJG" = (/obj/floor_decal/corner/black/half,/obj/floor_decal/corner/red/bordercorner2,/obj/floor_decal/corner/red/bordercorner2{dir = 9},/obj/floor_decal/corner/red/bordercorner,/obj/structure/closet/walllocker{pixel_y = -28},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"uJR" = (/obj/structure/reagent_dispensers/water_cooler,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/office) -"uJV" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"uJY" = (/obj/floor_decal/corner/grey/full,/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/space) -"uKe" = (/obj/machinery/door/blast/regular{id_tag = "petrovcell2"; name = "Test Chamber Blast Doors"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"uKk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uKo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/space) -"uKq" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"uKr" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/command{c_tag = "Command - Starboard Hallway Entry"},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"uKy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/maintenance{autoset_access = 0; dir = 8},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"uKz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"uKA" = (/obj/item/ore/iron,/turf/simulated/floor/plating,/area/space) -"uKL" = (/obj/paint_stripe/blue,/obj/structure/sign/nanotrasen{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"uKY" = (/obj/machinery/chemical_dispenser/full,/obj/machinery/light{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uLa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"uLi" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/item/storage/mirror{pixel_x = 29},/turf/simulated/floor/tiled/freezer,/area/space) -"uLm" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"uLo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"uLp" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/brown/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"uLu" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"uLv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uLH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/item/taperoll/engineering/applied,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"uLI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"uLR" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/space) -"uLY" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"uMe" = (/obj/floor_decal/corner/red/border,/obj/machinery/light/led/small,/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark,/area/space) -"uMi" = (/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/space) -"uMn" = (/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/space) -"uMs" = (/obj/floor_decal/borderfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"uMt" = (/obj/structure/sign/warning/hot_exhaust{dir = 4; pixel_x = -32},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uMu" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uMF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"uMG" = (/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Sorting Office"; sort_type = "Sorting Office"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"uMK" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"uMU" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"uNk" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/device/flashlight/lamp{pixel_x = 3; pixel_y = 19},/obj/floor_decal/carpet/blue{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"uNn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uNq" = (/obj/machinery/door/blast/shutters{dir = 2; id_tag = "qm_warehouse2"; name = "Warehouse Shutters"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) -"uNw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"uNx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"uND" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/structure/bookcase/manuals/xenoarchaeology,/turf/simulated/floor/tiled,/area/space) -"uNF" = (/obj/machinery/recharger/wallcharger{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/techfloor{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"uNG" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uNI" = (/obj/machinery/door/airlock/security{autoset_access = 0; name = "Security Checkpoint"; req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); secured_wires = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uNO" = (/obj/machinery/light{dir = 8},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"uNU" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "ai_bridge_airlock"; pixel_x = 2; pixel_y = 24; req_access = list("ACCESS_EXTERNAL"); tag_airpump = "ai_bridge_pump"; tag_chamber_sensor = "ai_bridge_sensor"; tag_exterior_door = "ai_bridge_outer"; tag_interior_door = "ai_bridge_inner"},/obj/machinery/airlock_sensor{id_tag = "ai_bridge_sensor"; pixel_x = -12; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "ai_bridge_pump"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/plating,/area/space) -"uOc" = (/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uOd" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/window/reinforced{dir = 4},/obj/machinery/microwave,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uOe" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/computer/modular/preset/security,/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"uOm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"uOv" = (/obj/paint_stripe/red,/obj/paint/red,/turf/simulated/wall/r_titanium,/area/space) -"uOw" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/spot{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"uOQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"uOR" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"uOS" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"uOV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"uOX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/space) -"uPb" = (/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/camera/network/research{c_tag = "Research - RD Enter"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uPc" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/item/device/gps,/turf/simulated/floor/tiled/steel_grid,/area/space) -"uPh" = (/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uPj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"uPl" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"uPn" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small{dir = 4},/obj/machinery/portable_atmospherics/canister/hydrogen,/turf/simulated/floor/tiled/techfloor/grid,/area/quartermaster/shuttlefuel) -"uPo" = (/obj/random/closet,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"uPB" = (/obj/decal/cleanable/dirt,/obj/structure/table/woodentable,/obj/item/deck/cards,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/green{pixel_y = 11},/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = 10; pixel_y = 11},/obj/item/trash/chips{pixel_x = -11; pixel_y = 8},/turf/simulated/floor/wood/walnut,/area/space) -"uPD" = (/obj/item/taperoll/engineering/applied,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"uPM" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"uPQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"uPX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"uPY" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"uQe" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/outlet_injector{id = "o23p_in"; use_power = 1},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1starboard) -"uQl" = (/obj/structure/undies_wardrobe,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/camera/network/second_deck{c_tag = "Actors - Dressing room"; dir = 8},/turf/simulated/floor/wood/ebony,/area/space) -"uQp" = (/obj/floor_decal/corner/red{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"uQt" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"uQx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"uQE" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{locked = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/taperoll/engineering/applied,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/bar) -"uQF" = (/turf/simulated/wall/r_wall/prepainted,/area/turret_protected/ai) -"uQI" = (/obj/wallframe_spawn/no_grille,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/medical/locker) -"uQR" = (/obj/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"uQX" = (/obj/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/storage/primary) -"uRf" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"uRg" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"uRj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"uRn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"uRo" = (/obj/structure/bookcase/manuals/xenoarchaeology,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"uRw" = (/obj/structure/sign/warning/docking_area{dir = 1},/turf/simulated/wall/r_wall/hull,/area/hallway/primary/fourthdeck/center) -"uRz" = (/obj/random/obstruction,/obj/structure/largecrate,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"uRI" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"uRR" = (/obj/machinery/telecomms/server/presets/security,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"uRY" = (/obj/floor_decal/corner/black/border,/obj/floor_decal/corner/black/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"uSa" = (/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/fluid_mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"uSb" = (/obj/item/storage/mirror{pixel_x = -1; pixel_y = 32},/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/floor_decal/industrial/warning,/obj/decal/cleanable/blood/drip,/obj/decal/cleanable/blood/splatter,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uSj" = (/obj/machinery/oxygen_pump{pixel_x = -32},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology/xenoflora) -"uSn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{dir = 4; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uSt" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"uSA" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/quartermaster/hangar) -"uSB" = (/obj/machinery/atmospherics/binary/pump/on{target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"uSJ" = (/obj/floor_decal/stairs{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/bamboo{name = "stairs"},/area/space) -"uSS" = (/obj/machinery/door/blast/regular{id_tag = "petrovcell1"; name = "Test Chamber Blast Doors"},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell1) -"uTd" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/green/border{dir = 6},/obj/structure/stairs/south,/turf/simulated/floor/tiled/monotile,/area/space) -"uTf" = (/obj/structure/railing/mapped,/obj/floor_decal/industrial/warning/cee{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uTg" = (/obj/structure/sign/nanotrasen{dir = 4},/turf/simulated/wall/r_wall/hull,/area/vacant/infirmary) -"uTw" = (/obj/structure/closet/l3closet/scientist,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/research{c_tag = "Xenobiology - Lower - Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/space) -"uTy" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "interrogation_no2_windows"},/turf/simulated/floor/plating,/area/space) -"uTz" = (/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/corner/red/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"uTA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"uTE" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "bridge_windows"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/bridge) -"uTP" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/hologram/holopad,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"uTR" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"uTY" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_room) -"uUc" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/floor_decal/borderfloorwhite{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"uUh" = (/obj/floor_decal/corner/green/diagonal,/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/recharger,/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/white,/area/space) -"uUl" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/computer/modular/preset/aislot/research{dir = 4},/obj/machinery/camera/network/research{c_tag = "Xenobiology - Desk"; dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"uUH" = (/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"uUK" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light/small,/obj/machinery/light_switch{pixel_x = 10; pixel_y = -21},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"uUN" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/camera/network/petrov{c_tag = "Petrov - Anomaly Lab"},/turf/simulated/floor/tiled/white,/area/space) -"uVa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass/cut,/area/space) -"uVb" = (/obj/structure/table/marble,/obj/machinery/microwave,/obj/floor_decal/corner/red/diagonal,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"uVi" = (/obj/machinery/cryopod{dir = 2},/obj/machinery/computer/cryopod{pixel_x = -32},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uVs" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/glass,/obj/item/storage/secure/briefcase,/obj/floor_decal/spline/fancy/black,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"uVt" = (/obj/machinery/button/blast_door{dir = 4; id_tag = "hangar_atmos_storage"; name = "Storage Door Control"; pixel_x = -24; req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP"))},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uVD" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"uVF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; injecting = 1; use_power = 1},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1starboard) -"uVJ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"uVV" = (/obj/structure/table/standard,/obj/random/firstaid,/obj/machinery/light/small/emergency{dir = 8},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/space) -"uWa" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/green/bordercorner,/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"uWf" = (/obj/floor_decal/corner/green/half{dir = 1},/obj/machinery/smartfridge/drying_rack,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"uWi" = (/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"uWj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"uWs" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"uWu" = (/turf/simulated/wall/r_wall/hull,/area/crew_quarters/head) -"uWA" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/spline/fancy/wood,/obj/structure/flora/pottedplant,/turf/simulated/floor/wood/walnut,/area/space) -"uWB" = (/obj/floor_decal/corner/green/bordercee{dir = 1},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uWD" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"uWK" = (/obj/landmark{name = "carpspawn"},/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"uWM" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"uWO" = (/obj/machinery/door/firedoor,/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced/polarized{id = "hos_windows"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/space) -"uXb" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/item/stool/wood,/turf/simulated/floor/wood/walnut,/area/space) -"uXj" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"uXm" = (/obj/structure/cable/yellow,/obj/machinery/power/solar_control{id = "auxsolarbridge"; name = "Bridge Solar Control"; track = 1},/obj/machinery/camera/network/engineering{c_tag = "Solar Control - Bridge Deck - Port"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"uXq" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/flora/pottedplant/tall,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"uXH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"uXO" = (/obj/machinery/door/firedoor,/obj/structure/sign/warning/high_voltage{dir = 1; pixel_y = -32},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/center) -"uXP" = (/obj/structure/table/rack,/obj/item/storage/belt/utility/full,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/machinery/camera/network/research{c_tag = "Research - Robotics Fabricators"},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"uXR" = (/obj/structure/sign/warning/high_voltage{dir = 8},/turf/simulated/wall/prepainted,/area/space) -"uXX" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"uXY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/multi_tile/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/hallway/primary/seconddeck/fore) -"uYf" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"uYl" = (/obj/machinery/door/firedoor,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/wallframe_spawn/reinforced_phoron/hull,/turf/simulated/floor/plating,/area/engineering/engine_room) -"uYq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"uYs" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/shuttle/petrov/eva) -"uYt" = (/obj/floor_decal/techfloor/orange{dir = 10},/obj/structure/reagent_dispensers/watertank,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"uYw" = (/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"uYA" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"uYB" = (/obj/machinery/door/firedoor,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore) -"uYI" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"uYL" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"uYM" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/white/monotile,/area/space) -"uYT" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"uYU" = (/obj/floor_decal/techfloor{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/power/smes/batteryrack,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"uYX" = (/obj/structure/table/steel,/obj/item/paper/monitorkey,/obj/item/stamp/ce,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"uYY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"uZh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/reinforced,/area/space) -"uZq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"uZt" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"uZu" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"uZx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"uZz" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/firstdeck/center) -"uZC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"uZH" = (/obj/structure/table/standard,/obj/item/scalpel/basic,/obj/item/circular_saw,/obj/machinery/vending/wallmed2{dir = 8; pixel_x = 24; pixel_y = 1},/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/space) -"uZJ" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/floor_decal/corner/grey{dir = 10},/obj/machinery/computer/air_control{dir = 1; input_tag = "CO23p_in"; name = "Propellent Supply Control"; output_tag = "CO23p_out"; sensor_name = "Tank"; sensor_tag = "ReacEngCO23"},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"uZL" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"uZT" = (/obj/paint_stripe/blue,/turf/simulated/wall/r_titanium,/area/space) -"uZU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/space) -"uZW" = (/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "firingspace"; name = "Firing Range Shields"},/obj/machinery/door/blast/regular/open{id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/paint_stripe/red,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/space) -"vaa" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vab" = (/obj/floor_decal/carpet,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/space) -"vah" = (/obj/structure/closet/crate/radiation_gear,/turf/simulated/floor/plating,/area/space) -"vas" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"vau" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/space) -"vaw" = (/obj/structure/catwalk,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/plating,/area/space) -"vaA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"vaD" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"vaF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vaH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/civilian{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vaI" = (/obj/structure/table/steel_reinforced,/obj/item/storage/box/armband/engine,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vaJ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Research and Development"; sort_type = "Research and Development"},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"vaO" = (/turf/simulated/wall/prepainted,/area/rnd/locker) -"vaQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"vaT" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Scrubber to Waste"},/turf/simulated/floor/plating,/area/space) -"vbe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/space_heater,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"vbg" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock"; pixel_x = 32; pixel_y = 21; req_access = list("ACCESS_EXTERNAL")},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vbh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/rnd/entry) -"vbi" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "sierra_surgery2"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/space) -"vbj" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vbl" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"vbm" = (/obj/floor_decal/industrial/outline/grey,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/closet/crate,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"vbs" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"vbG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"vbQ" = (/obj/structure/table/standard,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/camera/network/command{c_tag = "Command - Teleporter"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"vbR" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vbU" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/tiled,/area/space) -"vbV" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vcg" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vcl" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"vcm" = (/obj/structure/closet/emcloset,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/holocontrol) -"vcn" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"vco" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/wood/ebony,/area/space) -"vcq" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "Skynet_launch"; name = "Mech Bay"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/assembly/chargebay) -"vcv" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"vcz" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/space) -"vcA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"vcB" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"vcH" = (/obj/structure/railing/mapped,/obj/machinery/body_scanconsole{dir = 4},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"vcI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"vcJ" = (/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"vcO" = (/obj/machinery/door/airlock/command{dir = 1; id_tag = "pmdoor"; name = "Head of Personnel Maintaince"; secured_wires = 1; stripe_color = "#b7f27d"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vcQ" = (/obj/floor_decal/corner/grey/border{dir = 5},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"vcS" = (/obj/structure/bed/sofa/m/black{dir = 6},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/carpet/green,/area/space) -"vcT" = (/obj/floor_decal/corner/black/half{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/folder/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"vcZ" = (/obj/machinery/uniform_vendor{dir = 4; icon_state = "robotics"},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vdd" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"vdj" = (/obj/machinery/door/window/brigdoor/westleft{dir = 4; id_tag = "iaaright"; req_access = newlist()},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"vdr" = (/obj/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/explorer/engineer,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/exploration) -"vdu" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/forestarboard) -"vdv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/full,/obj/structure/table/steel,/obj/item/storage/toolbox/electrical,/obj/item/clothing/gloves/insulated,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"vdx" = (/obj/floor_decal/spline/fancy/black/corner{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"vdA" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/white/monotile,/area/space) -"vdC" = (/obj/item/device/radio/intercom/locked/ai_private{pixel_y = 22},/obj/machinery/flasher{pixel_x = -32; pixel_y = 32},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"vdI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/obj/structure/table/steel_reinforced,/obj/item/device/taperecorder,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/tape,/obj/item/device/tape,/obj/item/device/tape,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vdJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vdL" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"vdS" = (/obj/item/stool,/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"vdU" = (/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"vdV" = (/obj/machinery/air_sensor{id_tag = "containment_sensor"},/turf/simulated/floor/reinforced,/area/space) -"vdW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vdZ" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/wood/ebony,/area/space) -"vec" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"veg" = (/obj/structure/table/rack,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/random/maintenance,/obj/random/single/playing_cards,/obj/machinery/door/window/westleft{name = "Commissary rack"; req_access = newlist()},/obj/floor_decal/corner/black/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"vek" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"vem" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ves" = (/obj/structure/table/steel,/obj/structure/bedsheetbin,/obj/structure/sign/poster/nyc/space_escort{pixel_y = 32},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"vez" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"veC" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"veV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"veY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vfb" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/storage/primary) -"vfj" = (/obj/machinery/pipedispenser,/obj/machinery/light/spot{dir = 8},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"vfn" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window/northright{name = "Excavation suit storage"; req_access = newlist()},/obj/item/rig/industrial/equipped,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"vfs" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vfy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lightgrey/border,/obj/machinery/newscaster{pixel_y = -28},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"vfC" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"vfD" = (/obj/item/modular_computer/telescreen/preset/engineering{pixel_y = 26},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vfI" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"vfK" = (/obj/floor_decal/spline/fancy/black{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/grass/cut,/area/space) -"vfQ" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/orange/diagonal,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/warning/high_voltage{dir = 8; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"vfY" = (/obj/structure/closet/wardrobe/virology_white,/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/obj/machinery/camera/network/medbay{c_tag = "Virology - Decontamination"; dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"vgc" = (/obj/item/reagent_containers/glass/bucket,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/random/soap,/obj/item/storage/box/lights/led_neon,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/foreport) -"vgk" = (/obj/structure/sign/warning/airlock{pixel_y = 32},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vgl" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vgm" = (/obj/structure/rubble,/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/decal/cleanable/filth,/obj/decal/cleanable/greenglow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vgw" = (/obj/structure/table/marble,/obj/floor_decal/corner/red/diagonal,/obj/decal/cleanable/cobweb{dir = 1},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"vgx" = (/obj/machinery/radiocarbon_spectrometer,/turf/simulated/floor/tiled/dark,/area/space) -"vgF" = (/obj/floor_decal/corner/mauve/mono,/obj/machinery/computer/ship/navigation{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"vgH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/starboard) -"vgO" = (/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"vgU" = (/obj/machinery/door/airlock/hatch{autoset_access = 0; dir = 4; name = "Cockpit"; req_access = list("ACCESS_EXPEDITION_SHUTTLE")},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"vgV" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/paleblue/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"vgW" = (/obj/floor_decal/techfloor{dir = 9},/obj/floor_decal/techfloor/corner,/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/industrial/outline/grey,/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"vha" = (/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vhj" = (/obj/structure/catwalk,/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"vho" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"vhv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"vhy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/paper_bin,/obj/item/pen,/turf/simulated/floor/tiled/dark,/area/space) -"vhE" = (/obj/machinery/atmospherics/valve/shutoff/supply,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"vhF" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"vhH" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_3"},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/foreport) -"vhK" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"vhP" = (/obj/machinery/seed_storage/garden,/obj/machinery/button/blast_door{id_tag = "abahyd_blast"; name = "Hydro Blast Door"; pixel_y = 24},/turf/simulated/floor/tiled,/area/space) -"vhZ" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"via" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood/maple,/area/space) -"vig" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vii" = (/obj/structure/sign/warning/high_voltage{dir = 1},/turf/simulated/wall/prepainted,/area/space) -"vik" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vio" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"vir" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled,/area/space) -"vit" = (/obj/floor_decal/borderfloor{dir = 10},/obj/machinery/disposal/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/airlock{color = "#ff9900"; dir = 4; name = "\improper WAY TO SPACE"; pixel_x = -32},/obj/floor_decal/corner/black/border{dir = 10},/turf/simulated/floor/tiled/dark,/area/space) -"viz" = (/obj/structure/bed/chair/armchair/blue,/obj/landmark/start{name = "Internal Affairs Agent"},/turf/simulated/floor/carpet/blue,/area/space) -"viI" = (/obj/structure/sign/warning/vent_port{pixel_y = 32},/obj/floor_decal/corner/green/bordercorner,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"viJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"viL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"viM" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/westleft{dir = 1; name = "Commissary rack"; req_access = newlist()},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/corner/black/full,/obj/floor_decal/industrial/outline/yellow,/obj/random/single/lighter,/turf/simulated/floor/tiled,/area/crew_quarters/commissary) -"viS" = (/obj/item/trash/liquidfood,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"viU" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"vja" = (/turf/simulated/wall/r_wall/hull{can_open = 1},/area/maintenance/firstdeck/foreport) -"vjl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"vjn" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"vjs" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"vjE" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/device/binoculars,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{pixel_y = 11},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"vjF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"vjJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"vjK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vjM" = (/obj/structure/largecrate,/obj/random/junkfood,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vjP" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"vjQ" = (/obj/machinery/space_heater,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"vke" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"vkf" = (/obj/structure/table/standard,/obj/item/device/scanner/reagent,/obj/item/device/scanner/spectrometer/adv,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"vku" = (/obj/floor_decal/spline/fancy/wood,/obj/structure/table/woodentable_reinforced/ebony,/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/wood/walnut,/area/space) -"vky" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/chapel/main) -"vkD" = (/obj/machinery/door/airlock/mining{name = "Supply Office"; req_access = newlist()},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/quartermaster/office) -"vkF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vkI" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/civilian{name = "Toilet"; secured_wires = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vkL" = (/obj/paint_stripe/red,/turf/simulated/wall/prepainted,/area/space) -"vkR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vkV" = (/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/corner/paleblue/border,/obj/structure/bed/chair/padded/teal{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"vkW" = (/obj/machinery/hologram/holopad/longrange,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/random_multi/single_item/space_rabbit,/obj/structure/handrail{dir = 1; pixel_y = -6},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"vlb" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa2"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"vlh" = (/obj/floor_decal/techfloor{dir = 10},/obj/structure/closet/crate,/obj/decal/cleanable/cobweb{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"vln" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/lime/border{dir = 5},/obj/structure/sign/warning/pods/east{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"vlq" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"vls" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/standard,/obj/machinery/recharger,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"vlt" = (/obj/structure/table/standard,/obj/item/defibrillator/loaded,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"vlw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vlx" = (/obj/machinery/door/firedoor{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"vlH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vlK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"vlL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vlO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/junction/mirrored{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"vlT" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vlW" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/open,/area/space) -"vmb" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vmf" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"vmp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/light,/obj/machinery/button/ignition{id_tag = "Isocell2"; pixel_x = -6; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/space) -"vmq" = (/obj/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"vmx" = (/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/structure/rubble/war,/obj/fluid_mapped,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"vmy" = (/obj/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"vmB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"vmE" = (/obj/floor_decal/plaque,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"vmL" = (/obj/floor_decal/corner/yellow/half,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/space) -"vmN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/space) -"vmR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/multi_tile/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"vna" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition) -"vnc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"vnl" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/closet/firecloset,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"vnm" = (/obj/structure/mattress/dirty,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"vnn" = (/turf/simulated/floor/wood/maple,/area/space) -"vno" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"vnr" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/window/westleft{dir = 4; name = "Autopsy"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"vnt" = (/obj/machinery/computer/modular/preset/library{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"vnD" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"vnK" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"vnL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/table/steel{flipped = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"vnV" = (/obj/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/padded/blue{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"vnW" = (/obj/machinery/sleeper/survival_pod{dir = 4},/turf/simulated/floor/tiled/white,/area/vacant/infirmary) -"voa" = (/obj/machinery/vending/security{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/obj/machinery/camera/network/security{c_tag = "Longterm - Checkpoint"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vog" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"voh" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"voi" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/corner/lightgrey/mono,/obj/machinery/light{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vok" = (/obj/item/taperoll/engineering/applied,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"voo" = (/obj/structure/table/glass,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/toner,/obj/item/device/taperecorder,/obj/item/device/taperecorder,/obj/item/device/tape,/obj/item/pen/multi,/obj/item/pen/multi,/obj/item/paper_bin,/obj/item/device/tape,/obj/item/device/tape,/obj/structure/window/reinforced,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vox" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"voy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"voA" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"voC" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "do_windows"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters/open{id_tag = "qm_office"; name = "QM Office Shutters"},/turf/simulated/floor/plating,/area/space) -"voL" = (/obj/floor_decal/corner/red/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"voO" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/b_green/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/b_green/bordercorner2{dir = 4},/obj/structure/bed/chair/shuttle/green{dir = 8},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"voP" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/obj/decal/cleanable/cobweb2,/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/corner/red/bordercorner{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"voQ" = (/obj/structure/table/woodentable/walnut,/obj/item/towel/fleece,/obj/item/towel/fleece,/obj/item/towel/fleece,/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"voS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"voT" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"vpe" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/table/rack,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vpm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"vpp" = (/obj/machinery/computer/modular/preset/security{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"vpr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vpJ" = (/obj/floor_decal/carpet/purple{dir = 1},/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/purple,/area/chapel/main) -"vpQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"vqc" = (/obj/floor_decal/industrial/traffic/corner{color = "#a2819e"; detail_color = "#a2819e"},/turf/simulated/floor/tiled/white,/area/rnd/office) -"vqf" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/monotile,/area/space) -"vqg" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/papershredder,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/space) -"vqq" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"vqL" = (/obj/structure/table/standard,/obj/floor_decal/borderfloorwhite,/obj/floor_decal/corner/paleblue/border,/obj/item/paper_bin,/obj/item/pen{pixel_y = 4},/obj/item/pen/red,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"vqR" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 4; name = "CO2 Supply"; target_pressure = 10000},/obj/structure/closet/hydrant{pixel_y = -28},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"vrd" = (/obj/structure/bed/chair/shuttle{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"vre" = (/obj/paint_stripe/red,/turf/simulated/wall/r_wall/prepainted,/area/space) -"vrg" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{dir = 1; id_tag = "guppy_shuttle_pump_out_internal"},/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/airlock_sensor{frequency = 1331; id_tag = "guppy_shuttle_sensor"; master_tag = "guppy_shuttle"; pixel_x = 25; pixel_y = 26},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/guppy_hangar/start) -"vri" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/computer/modular/preset/cardslot/command,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"vru" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d3port) -"vrx" = (/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/plating,/area/space) -"vry" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"vrD" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/turret_protected/ai) -"vrE" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/conveyor{id = "charon_cargo_out"; name = "charon interior conveyor belt"},/turf/simulated/floor/tiled,/area/space) -"vrF" = (/obj/machinery/door/airlock/research{name = "Spectrometry Lab"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white/monotile,/area/space) -"vrG" = (/obj/structure/bed/chair/office/comfy/blue,/obj/landmark/start{name = "Internal Affairs Agent"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"vrS" = (/obj/structure/bed,/obj/item/bedsheet/brown,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/aftstarboard) -"vrX" = (/obj/floor_decal/techfloor/orange{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"vsd" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/space) -"vsh" = (/obj/item/storage/mirror{pixel_x = -26; pixel_y = 1},/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/gym) -"vsn" = (/obj/structure/table/steel_reinforced,/obj/item/wrench,/obj/item/storage/mre/random,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal,/obj/floor_decal/corner/black/full,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/space) -"vso" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/holoplant,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"vsz" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/green/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/space) -"vsB" = (/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/glass/civilian{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"vsE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vsF" = (/obj/structure/ladder/up,/obj/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vsI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vsJ" = (/obj/structure/bed/chair/padded/yellow{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"vsL" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vsN" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/structure/table/standard,/obj/item/storage/box/cups,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/dark,/area/space) -"vsO" = (/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"vsX" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/space) -"vtl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = 16},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"vtp" = (/obj/machinery/door/airlock/command{id_tag = "iaadoorright"; name = "Internal Affairs Agent"; secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vtr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"vts" = (/obj/structure/lattice,/obj/random/trash,/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"vtD" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced,/area/space) -"vtH" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"vtT" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/secure_closet/personal,/obj/machinery/light,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"vtZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/warning,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vuc" = (/obj/structure/lattice,/turf/simulated/wall/r_wall/prepainted,/area/thruster/d1starboard) -"vud" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_port"},/obj/floor_decal/industrial/warning/cee,/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"vuf" = (/obj/structure/table/woodentable/walnut,/obj/item/book/manual/anomaly_testing,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"vut" = (/obj/structure/table/rack,/obj/item/storage/firstaid/radiation{pixel_y = 10},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/stab{pixel_y = -10},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"vuu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "bar<-cafe"; name = "Bar Shutters"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vuA" = (/obj/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"vuC" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell3) -"vuI" = (/obj/floor_decal/industrial/hatch/red,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"vuW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"vuZ" = (/obj/structure/sign/warning/fire{dir = 1; pixel_y = -40},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/reagent_dispensers/watertank,/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vvb" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{dir = 4; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d1port) -"vvj" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/maintenance{id_tag = "crusher"; name = "Compactor Zone"},/obj/item/taperoll/engineering/applied,/turf/simulated/floor/tiled/techmaint,/area/space) -"vvp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/civilian{dir = 4; name = "Restroom"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vvs" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"vvw" = (/obj/floor_decal/solarpanel,/obj/machinery/power/solar{id = "auxsolarsport"; name = "Aft Port Solar Array"},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless,/area/solar/port) -"vvz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"vvB" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vvM" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/item/flame/lighter/zippo/brass,/obj/machinery/firealarm{pixel_y = 24},/obj/item/storage/candle_box,/obj/item/storage/candle_box,/obj/item/storage/box/lights/led_neon,/obj/item/storage/box/lights/led_neon,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/material/clipboard,/turf/simulated/floor/wood/walnut,/area/space) -"vvO" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"vvR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"vvV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vvX" = (/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/structure/fitness/weightlifter,/turf/simulated/floor/tiled,/area/space) -"vwa" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/port) -"vwi" = (/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish/grump,/obj/structure/flora/seaweed/mid,/turf/simulated/floor/beach/sand,/area/space) -"vwm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/green/border{dir = 8},/obj/random/ironing_board_structure,/obj/item/ironing_iron,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"vwn" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/space) -"vwv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/item/bedsheet/brown,/obj/item/beartrap{anchored = 1; deployed = 1; icon_state = "beartrap1"},/turf/simulated/floor/plating,/area/space) -"vwy" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/seconddeck/aftstarboard) -"vwE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"vwH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"vwI" = (/obj/structure/flora/pottedplant/orientaltree,/obj/floor_decal/corner/blue/three_quarters{dir = 4},/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"vwP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/port) -"vxa" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/plating,/area/engineering/engine_room) -"vxc" = (/obj/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vxd" = (/obj/structure/sign/nanotrasen{dir = 1},/turf/simulated/wall/r_wall/hull,/area/space) -"vxf" = (/obj/structure/bed/sofa/r/black{dir = 4},/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blue,/area/space) -"vxn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng3_inner"; name = "First Deck Starboard Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d1starboard) -"vxq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vxI" = (/obj/machinery/power/solar_control{id = "auxsolarstrbbridge"; name = "Bridge Solar Control"; track = 1},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/network/engineering{c_tag = "Solar Control - Bridge Deck - Starboard"},/turf/simulated/floor/tiled/techfloor,/area/space) -"vxN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/floor_decal/corner/yellow/half{dir = 4},/obj/floor_decal/steeldecal/steel_decals4,/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"vxP" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"vxW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = newlist()},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"vxY" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "solar_bridge_port_inner"; locked = 1; name = "Engineering External Access"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vxZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{controlled = 0; dir = 1; internal_pressure_bound = 35000; internal_pressure_bound_default = 35000; pressure_checks = 2; pressure_checks_default = 2; use_power = 1},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/thruster/d3port) -"vya" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vyb" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized/full,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/crew_quarters/heads/office/ce) -"vyd" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/center) -"vyf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"vyh" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"vyo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/bridge/meeting_room) -"vyr" = (/obj/structure/table/rack,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/storage) -"vyy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{pixel_y = 26},/obj/machinery/button/alternate/door/bolts{dir = 1; id_tag = "toilet_eng_2"; name = "Lock"; pixel_y = -24},/turf/simulated/floor/tiled/freezer,/area/space) -"vyz" = (/obj/machinery/door/airlock/vault/bolted{name = "AI Core External Access"},/obj/item/airlock_brace{req_access = list("ACCESS_BRIDGE")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vyF" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vyI" = (/obj/structure/closet{anchored = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"vyK" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"vyS" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced/polarized/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/office/ce) -"vzp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vzx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"vzz" = (/obj/decal/cleanable/dirt,/obj/structure/closet/cabinet,/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/plating,/area/space) -"vzD" = (/obj/floor_decal/corner/purple{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"vzJ" = (/obj/machinery/light/spot{dir = 1},/turf/space,/area/space) -"vzO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 1},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"vzX" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/handrail{dir = 1},/turf/simulated/floor/airless,/area/space) -"vAf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/meter,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vAk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/holocontrol) -"vAp" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/spline/fancy/black/corner,/obj/floor_decal/spline/fancy/black/corner{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/bridge) -"vAH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"vAJ" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1; target_pressure = 15000},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"vAL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"vAM" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vAP" = (/obj/floor_decal/borderfloor{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"vAU" = (/obj/floor_decal/techfloor{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"vAV" = (/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"vBb" = (/obj/machinery/washing_machine,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/freezer,/area/space) -"vBe" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vBi" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"vBj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/coatrack,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"vBm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vBp" = (/obj/structure/sign/poster,/turf/simulated/wall/prepainted,/area/space) -"vBw" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"vBB" = (/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = -8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"vBC" = (/obj/machinery/recharge_station,/obj/machinery/light/spot{dir = 8},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"vBH" = (/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"vBM" = (/obj/machinery/door/blast/regular/escape_pod{id_tag = "escape_pod_9"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vBP" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/structure/window/boron_reinforced{dir = 4},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d1starboard) -"vBY" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Solar - Bridge Starboard"},/turf/simulated/floor/plating,/area/space) -"vCd" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vCq" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"vCu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vCB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"vCC" = (/obj/structure/flora/ausbushes/palebush,/obj/floor_decal/spline/fancy/black{dir = 8},/turf/simulated/floor/grass/cut,/area/space) -"vCG" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/corner/green/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_construct{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"vCI" = (/obj/machinery/vending/wallmed2{dir = 8; pixel_x = 23},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vCK" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/door/blast/regular{id_tag = "d4portnacelle"},/obj/wallframe_spawn/reinforced_phoron,/turf/simulated/floor/reinforced,/area/thruster/d1port) -"vCR" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/storage/primary) -"vCS" = (/obj/structure/lattice,/turf/space,/area/space) -"vCV" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/civilian{autoset_access = 0; name = "Long Term Bathroom"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"vDa" = (/obj/machinery/suit_cycler/engineering,/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot,/turf/simulated/floor/tiled/steel_grid,/area/space) -"vDg" = (/obj/structure/table/standard,/obj/item/folder/nt,/obj/machinery/button/blast_door{dir = 8; id_tag = "xenobio_desk"; name = "Containment Blast Doors"; pixel_x = 21; req_access = list("ACCESS_RESEARCH")},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/turf/simulated/floor/tiled/white,/area/space) -"vDj" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/shuttle/petrov/eva) -"vDm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/space) -"vDr" = (/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"vDv" = (/obj/wallframe_spawn/reinforced_phoron/hull,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"vDB" = (/obj/structure/grille/broken,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vDC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 5},/obj/machinery/door/blast/shutters{dir = 2; id_tag = "eng_QAW"; name = "Quick Access Warehouse"},/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vDK" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"vDN" = (/obj/structure/catwalk,/obj/machinery/access_button/airlock_exterior{frequency = 1380; master_tag = "td_port"; name = "exterior access button"; pixel_x = -32; pixel_y = 24; req_access = list("ACCESS_EXTERNAL")},/turf/simulated/open,/area/space) -"vDO" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"vDS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"vDT" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/light/spot{dir = 1},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vDV" = (/obj/structure/table/rack,/obj/item/storage/mre/random,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"vDW" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id_tag = "mine_warehouse"; name = "Storage Shutters"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vDY" = (/obj/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"vEe" = (/turf/simulated/floor/pool,/area/space) -"vEf" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"vEg" = (/obj/floor_decal/corner/grey{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"vEv" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark/monotile,/area/chapel/main) -"vED" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/maintenance,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_to_maint"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/techfloor/grid,/area/medical/sleeper) -"vEO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 4; id_tag = "td_fore_starboard_pump"},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 4; display_name = "Second Deck Auxillary Dock"; id_tag = "td_fore_starboard"; name = "Third Deck Fore Starboard Airlock Controller"; pixel_x = -20; req_access = list("ACCESS_EXTERNAL")},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"vEU" = (/obj/machinery/door/window/eastleft,/obj/decal/cleanable/dirt,/obj/structure/barricade,/turf/simulated/floor/plating,/area/space) -"vEW" = (/obj/paint/hull,/turf/simulated/wall/ocp_wall,/area/space) -"vEX" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/structure/sign/directions/science{dir = 4; pixel_y = 24},/obj/structure/sign/directions/infirmary{dir = 4; pixel_y = 31},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"vFf" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/b_green/border{dir = 6},/obj/item/paper_bin,/obj/item/pen,/obj/item/sticky_pad/random,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel,/obj/machinery/light,/turf/simulated/floor/tiled,/area/space) -"vFk" = (/obj/floor_decal/techfloor{dir = 1},/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/suit_cycler/pilot,/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"vFq" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/thirddeck/fore) -"vFr" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/incinerator) -"vFt" = (/obj/machinery/atmospherics/unary/tank/hydrogen,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"vFu" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"vFw" = (/obj/floor_decal/industrial/outline/yellow,/obj/random/closet,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"vFA" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/space) -"vFB" = (/obj/structure/mopbucket,/obj/item/mop,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/foreport) -"vFE" = (/obj/machinery/sleeper,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"vFH" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/command{dir = 4; id_tag = "cmodoor"; name = "Chief Medical Officer Dorm"; secured_wires = 1; stripe_color = "#00e1ff"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vFJ" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/grey,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/starboard) -"vFO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/space) -"vFR" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"vGb" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/floor/wood/walnut,/area/space) -"vGc" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/wall/r_wall/hull,/area/thruster/d1port) -"vGk" = (/obj/machinery/door/firedoor,/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/engineering{dir = 4; name = "Quick Access Warehouse"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "eng_lockdown"; name = "Engineering Lockdown"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vGl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vGm" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vGn" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"vGv" = (/obj/structure/sign/directions/bridge{dir = 8; pixel_y = 24},/obj/structure/railing/mapped,/turf/simulated/floor/tiled,/area/space) -"vGI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"vGR" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 1; frequency = 1380; id_tag = "escape_pod_9_berth"; name = "escape pod nine berth controller"; pixel_x = -32; pixel_y = -28; tag_door = "escape_pod_9_berth_hatch"},/obj/floor_decal/industrial/warning,/obj/floor_decal/steeldecal/steel_decals_central4,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"vGU" = (/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vGX" = (/obj/machinery/cryopod{dir = 1},/obj/floor_decal/techfloor/orange{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vGY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"vHa" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/research{name = "Development Laboratory"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"vHc" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "xenobio_surg"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"vHe" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = -32},/obj/decal/cleanable/dirt,/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/obj/item/folder/red,/turf/simulated/floor/lino,/area/maintenance/firstdeck/forestarboard) -"vHg" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "test_xenoflora_in"; use_power = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology/xenoflora) -"vHm" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/recharge_station,/obj/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"vHM" = (/obj/floor_decal/corner/purple/half{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"vHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/civilian{id_tag = "toilet2"; name = "Stall Two"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"vHY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/fore) -"vId" = (/obj/random/vendor,/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/lime/border{dir = 9},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/space) -"vIj" = (/obj/structure/table/marble,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/reagent_temperature,/obj/item/reagent_containers/food/drinks/milk{pixel_x = -1},/obj/item/reagent_containers/food/drinks/soymilk{pixel_x = 6},/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/tiled/white,/area/space) -"vIq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"vIG" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"vIL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/mining,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"vIP" = (/obj/floor_decal/corner/blue{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d3port) -"vJb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/space) -"vJj" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/space) -"vJu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vJA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/yellow/border{dir = 6},/obj/machinery/light,/obj/structure/table/steel_reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/item/folder/yellow,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"vJC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/aft) -"vJD" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/floor_decal/industrial/warning/cee,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"vJE" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{pixel_x = 7; pixel_y = 11},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{pixel_x = 6; pixel_y = -3},/obj/decal/cleanable/dirt,/turf/simulated/floor/wood/mahogany,/area/space) -"vJQ" = (/obj/floor_decal/ntlogo{dir = 8},/obj/landmark/start{name = "Research Director"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/entry) -"vJS" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"vJV" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/shutters/open{id_tag = "med_to_maint"},/obj/machinery/door/blast/regular/open{id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/techfloor/grid,/area/medical/locker) -"vKa" = (/obj/floor_decal/corner/purple{pixel_y = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/janitor) -"vKg" = (/obj/machinery/r_n_d/server/core,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/research{c_tag = "Research - Servers"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/bluegrid,/area/space) -"vKD" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/floor_decal/techfloor/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"vKI" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1379; heat_proof = 1; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/plating,/area/maintenance/incinerator) -"vKK" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Cadets"; dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"vKU" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/industrial/warning/fulltile,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vKY" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/wallframe_spawn/reinforced/polarized{id = "cap_windows"},/turf/simulated/floor/plating,/area/space) -"vLh" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/hallway/primary/fourthdeck/center) -"vLj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"vLr" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/obj/landmark{name = "JoinLateCryo"},/turf/simulated/floor/tiled/techfloor,/area/space) -"vLt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"vLv" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/red/bordercorner,/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vLG" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/turf/simulated/wall/ocp_wall{heat_capacity = 412500},/area/thruster/d1port) -"vLM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/purple,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/simulated/floor/tiled/white,/area/space) -"vLT" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/table/rack,/obj/item/stack/material/plastic/fifty{amount = 30},/obj/item/stack/material/aluminium{amount = 30},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"vMe" = (/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/command{dir = 1; name = "Head Of Security"; req_access = newlist(); secured_wires = 1; stripe_color = "#9d2300"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vMg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"vMl" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"vMm" = (/obj/floor_decal/corner/green/bordercorner{dir = 1},/obj/floor_decal/corner/green/bordercorner{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vMx" = (/obj/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3port) -"vMB" = (/obj/floor_decal/corner/red/half{dir = 8},/obj/floor_decal/borderfloorblack/corner,/turf/simulated/floor/tiled/techfloor,/area/space) -"vME" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"vMR" = (/obj/item/reagent_containers/food/snacks/egg/lizard{color = "black"},/obj/structure/table/rack,/obj/item/bedsheet,/obj/item/reagent_containers/food/snacks/egg/lizard,/obj/item/reagent_containers/food/snacks/egg/lizard{color = "black"},/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"vMS" = (/obj/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/hygiene/shower,/obj/structure/closet/walllocker{pixel_x = 28},/obj/random/soap,/obj/item/towel/random,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/towel/random,/obj/item/flame/lighter/zippo/random,/obj/item/haircomb/random,/obj/item/lipstick/random,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/vacant/cargo) -"vMX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"vMY" = (/obj/floor_decal/spline/plain/brown{dir = 8},/obj/structure/table/rack,/obj/item/hand_labeler,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/walnut,/area/space) -"vNe" = (/obj/floor_decal/borderfloorblack{dir = 5},/obj/floor_decal/corner/purple/border{dir = 5},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/button/windowtint{id = "rd_windows"; pixel_x = 12; pixel_y = 21; range = 11},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "rddoor"; name = "Office Door Control"; pixel_x = -10; pixel_y = 21; req_access = list("ACCESS_RESEARCH_DIRECTOR")},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"vNl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vNm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"vNq" = (/obj/floor_decal/techfloor/orange{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vNt" = (/obj/decal/cleanable/cobweb2{dir = 4},/obj/random/vendor,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"vNv" = (/obj/structure/bed/padded,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"vNw" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/steel,/obj/item/paper_bin,/obj/item/pen,/obj/item/device/eftpos{eftpos_name = "Warden's EFTPOS scanner"},/turf/simulated/floor/tiled/dark,/area/space) -"vNz" = (/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = -22},/obj/floor_decal/borderfloor{color = null; dir = 8},/obj/floor_decal/corner/blue/border{dir = 8},/obj/floor_decal/borderfloor/corner2{color = null; dir = 10},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 10},/obj/machinery/sleeper/survival_pod{dir = 4},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"vNC" = (/obj/structure/table/standard,/obj/item/deck/cards,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/aftstarboard) -"vNF" = (/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"vNH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/woodentable/walnut,/obj/item/storage/box/donkpocket_dessert,/turf/simulated/floor/wood/walnut,/area/space) -"vNM" = (/obj/machinery/chemical_dispenser/full,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"vNO" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"vOs" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/civilian{name = "Actor's Room"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vOy" = (/obj/structure/railing/mapped,/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vOC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/yellow/bordercorner2{dir = 10},/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"vON" = (/obj/structure/railing/mapped{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"vOQ" = (/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vPd" = (/obj/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "fuel4p_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1port) -"vPj" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_smes) -"vPu" = (/turf/simulated/open,/area/maintenance/firstdeck/aftstarboard) -"vPw" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Forensics"},/turf/simulated/floor/tiled/monotile,/area/space) -"vPH" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/reinforced,/area/maintenance/fourthdeck/foreport) -"vPI" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vPL" = (/obj/structure/table/standard,/obj/floor_decal/corner/yellow/three_quarters,/obj/item/storage/belt/utility{pixel_x = 2; pixel_y = 11},/obj/item/storage/belt/utility{pixel_x = 3; pixel_y = 6},/obj/item/storage/belt/utility,/turf/simulated/floor/tiled,/area/quartermaster/office) -"vPO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"vQb" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_11_hatch"; name = "Escape Pod Eleven Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vQd" = (/obj/structure/table/steel_reinforced,/obj/item/folder/nt,/obj/item/folder/nt{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled,/area/space) -"vQj" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular/open{density = 0; id_tag = "hydroponics_space"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hydroponics) -"vQl" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"vQo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "solar_bridge_inner"; locked = 1; name = "Engineering External Access"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vQu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"vQv" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"vQJ" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/multi_tile/maintenance,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/foreport) -"vQO" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/machinery/drone_pad{desc = "A small pad for transport drones to deposit their payloads at. Requires network reestablishment after Bluespace jump via multitool"},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"vQU" = (/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"vQW" = (/obj/floor_decal/corner/red/half{dir = 4},/obj/floor_decal/corner/red{dir = 9},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/space) -"vRa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"vRd" = (/obj/floor_decal/corner/black{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/bed/chair/comfy/teal,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/space) -"vRg" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/standard,/obj/floor_decal/corner/grey/diagonal,/obj/item/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/rnd/research) -"vRh" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/obj/floor_decal/techfloor/orange{dir = 10},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"vRl" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"vRo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vRw" = (/obj/structure/bed/padded,/obj/item/bedsheet/green,/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"vRA" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"vRU" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/waterstore) -"vRY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"vSg" = (/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/rnd/entry) -"vSl" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/floor_decal/corner/blue{dir = 5},/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"vSn" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/decal/cleanable/greenglow,/turf/simulated/floor/tiled/techfloor,/area/engineering/fuelbay) -"vSo" = (/obj/structure/handrail{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"vSp" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/item/storage/toolbox/electrical,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner/yellow/mono,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"vSw" = (/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/blood/oil,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/camera/network/research{c_tag = "Research - Containment Control"; dir = 8; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vSE" = (/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vSF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"vSJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vSO" = (/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"vSQ" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"vSR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"vTd" = (/obj/machinery/computer/ship/navigation{dir = 4},/obj/floor_decal/corner/black/full,/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"vTf" = (/obj/machinery/newscaster{pixel_x = -28},/obj/structure/table/marble,/obj/machinery/fabricator/micro/bartender{pixel_x = 4},/obj/item/stack/material/glass/ten{pixel_x = 4; pixel_y = -4},/obj/item/stack/material/aluminium/ten{pixel_y = -4},/obj/item/stack/material/plastic/ten{pixel_x = -4; pixel_y = -4},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"vTg" = (/obj/structure/table/rack{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"vTj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"vTn" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_10_berth_hatch"; name = "Escape Pod Ten"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralport) -"vTp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vTq" = (/obj/machinery/mech_recharger,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"vTs" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vTy" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/multi_tile/glass/civilian{dir = 8; name = "Hallway"},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"vTB" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor{dir = 1},/obj/structure/sign/xenobio_1{dir = 8; pixel_y = -32},/turf/simulated/floor/tiled,/area/space) -"vTC" = (/obj/structure/table/standard,/obj/random/single/playing_cards,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG,/turf/simulated/floor/tiled/techfloor,/area/space) -"vTJ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/floor_decal/industrial/outline/blue,/obj/structure/reagent_dispensers/watertank,/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/space) -"vTQ" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"vTY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"vTZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"vUf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/purple,/area/crew_quarters/sleep/bunk) -"vUh" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/plating,/area/engineering/fuelbay) -"vUn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/valve/shutoff/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/floor_decal/steeldecal/steel_decals_central6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"vUs" = (/obj/floor_decal/techfloor/orange,/obj/machinery/conveyor{dir = 4; id = "compactor"},/obj/machinery/recycler,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vUu" = (/obj/random/maintenance,/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"vUv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/filingcabinet/wallcabinet{pixel_y = -30},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/light/small,/obj/machinery/camera/network/security{c_tag = "Security - Evidences"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/space) -"vUB" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/ebony,/area/space) -"vUL" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"vUO" = (/obj/floor_decal/spline/fancy/wood/corner,/turf/simulated/floor/wood/bamboo,/area/space) -"vUQ" = (/obj/machinery/light/spot{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"vUU" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/mahogany,/area/space) -"vUZ" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder/juicer{pixel_y = 8},/obj/item/reagent_containers/glass/beaker/large{pixel_y = 6},/obj/item/reagent_containers/glass/beaker/large{pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"vVb" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"vVc" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/space) -"vVg" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/centralport) -"vVu" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vVv" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/wallframe_spawn/reinforced/polarized/full{id = "hop_windows"},/turf/simulated/floor/plating,/area/space) -"vVx" = (/obj/machinery/sleeper/survival_pod{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/closet/medical_wall{pixel_x = -32},/obj/item/storage/firstaid/regular,/obj/item/storage/med_pouch/oxyloss,/obj/item/storage/med_pouch/oxyloss,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"vVM" = (/obj/structure/closet/crate/trashcart,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"vVN" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/floor_decal/borderfloorblack,/obj/item/device/binoculars,/turf/simulated/floor/tiled/dark,/area/space) -"vVR" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"vVY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vWk" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"vWm" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/space) -"vWn" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Syntetics Compartment"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"vWo" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/structure/cable{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/railing/mapped,/turf/simulated/floor/reinforced,/area/maintenance/firstdeck/forestarboard) -"vWr" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/computer/upload/robot{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vWt" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/black/border,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"vWu" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/outlet_injector{id = "CO22p_in"; injecting = 1; use_power = 1},/turf/simulated/floor/reinforced/carbon_dioxide,/area/thruster/d3port) -"vWv" = (/obj/floor_decal/industrial/hatch/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vWx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/steel_reinforced,/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine charging port."; id_tag = "SupermatterPort"; name = "Reactor Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id_tag = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_y = -3; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/button/toggle/alternate{id_tag = "EngineEmitter"; name = "Emitter Control"; pixel_x = 6; pixel_y = 7},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"vWC" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/glass,/obj/machinery/newscaster{pixel_y = -28},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/spline/fancy/black{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"vWF" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 4},/obj/floor_decal/corner/green/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"vWG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vWI" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/space) -"vWK" = (/obj/machinery/bluespacedrive,/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/space) -"vWL" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"vWR" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"vWT" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"vWW" = (/obj/structure/hygiene/sink{dir = 8; pixel_x = -12},/obj/item/storage/mirror{pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/space) -"vWX" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/item/device/camera_film,/obj/item/device/camera,/obj/item/storage/photo_album,/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/b_green/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled,/area/exploration_shuttle/airlock) -"vWZ" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/door/blast/shutters{dir = 2; id_tag = "eva_shutters"; name = "EVA Shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vXb" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/item/folder/nt,/obj/item/folder/nt,/obj/item/folder/white,/obj/item/folder/white,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/research{c_tag = "Research - Robotics Office"},/turf/simulated/floor/tiled,/area/space) -"vXi" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d3starboard) -"vXk" = (/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vXm" = (/obj/machinery/door/airlock/medical{dir = 8; id_tag = "sierra_surgery1"; name = "Operation room 1"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/holosign/surgery{dir = 8; id_tag = "surgery1"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"vXn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"vXp" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vXC" = (/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/regular{dir = 8; id_tag = "miners_restroom_sierra"},/turf/simulated/floor/plating,/area/space) -"vXE" = (/obj/structure/bed/chair/office/teal{dir = 8},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/space) -"vXJ" = (/obj/floor_decal/corner/paleblue/border,/obj/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"vXP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/bluegrid,/area/space) -"vXR" = (/obj/machinery/door/airlock/highsecurity{id_tag = "capt_safe_room"; locked = 1},/obj/machinery/door/firedoor,/obj/item/airlock_brace{req_access = list("ACCESS_CAPTAIN")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"vXT" = (/obj/structure/table/marble,/obj/machinery/cooker/candy,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"vXU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"vXV" = (/obj/structure/cable/green,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/table/rack,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light_switch{dir = 4; on = 1; pixel_x = -25},/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/purple/border{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/purple/bordercorner2{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/space) -"vYc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/space) -"vYu" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall/hull,/area/space) -"vYz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "eng1_outer"; name = "Third Deck Starboard Nacelle Access"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/thruster/d3starboard) -"vYG" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/grey/border{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/space) -"vYP" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"vYV" = (/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"vYX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/machinery/light/spot,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"vYY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"vZb" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/turf/space,/area/space) -"vZh" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"vZx" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/floor_decal/corner/blue/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"vZz" = (/obj/item/stock_parts/circuitboard/shield_diffuser,/obj/item/stock_parts/circuitboard/shield_diffuser,/obj/item/stock_parts/circuitboard/shield_diffuser,/obj/item/stock_parts/circuitboard/shield_generator,/obj/item/stock_parts/circuitboard/shield_generator,/obj/item/stock_parts/circuitboard/shield_generator,/obj/item/stock_parts/circuitboard/shield_generator,/obj/item/stock_parts/circuitboard/shield_generator,/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"vZB" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/item/storage/mirror{pixel_x = 32},/turf/simulated/floor/tiled/freezer,/area/space) -"vZF" = (/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/space) -"vZK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/folder/blue,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/spline/fancy/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"vZL" = (/obj/floor_decal/spline/fancy/black{dir = 5},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"vZO" = (/obj/structure/table/reinforced,/obj/structure/railing/mapped{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/firealarm{dir = 1; pixel_y = -20},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/holocontrol) -"vZQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"vZS" = (/obj/decal/cleanable/cobweb2{dir = 8},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"vZT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"vZW" = (/obj/floor_decal/carpet{dir = 4},/mob/living/simple_animal/passive/cat/fluff{name = "Cookie"; speak_emote = list("purrs","meows","moans")},/obj/structure/dogbed,/obj/floor_decal/spline/fancy/black,/obj/floor_decal/carpet,/obj/floor_decal/carpet{dir = 6},/turf/simulated/floor/carpet/red,/area/space) -"wag" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/space) -"waq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/corner_techfloor_grid{dir = 4},/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"was" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/status_display{pixel_y = 32},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"waF" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"waJ" = (/obj/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/yellow/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"waK" = (/obj/floor_decal/corner/black/full,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/turf/simulated/floor/tiled/dark,/area/space) -"waO" = (/obj/structure/bed/chair/rounded/beige{dir = 1},/turf/simulated/floor/carpet,/area/space) -"waR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light/small{dir = 1},/obj/structure/bed/chair/pew/left,/obj/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood/walnut,/area/space) -"waS" = (/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/wood/walnut,/area/space) -"waX" = (/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wbc" = (/obj/floor_decal/industrial/traffic/corner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wbk" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/yellow/border{dir = 10},/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"wbm" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wbr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wbt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"wbv" = (/obj/shuttle_landmark/ferry/out,/turf/space,/area/space) -"wbZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"wca" = (/obj/shuttle_landmark/ninja/deck3,/turf/space,/area/space) -"wcb" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/incinerator) -"wcm" = (/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/space) -"wcs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"wcF" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"wcM" = (/obj/machinery/gibber,/obj/structure/curtain/medical,/obj/floor_decal/spline/fancy/black{dir = 9},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"wcN" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - AI Subgrid"; name_tag = "AI Subgrid"},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/turret_protected/ai) -"wcU" = (/obj/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/floor_decal/industrial/warning{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/substation/seconddeck) -"wdh" = (/obj/machinery/vending/tool{dir = 4},/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/storage/primary) -"wdj" = (/obj/structure/bed/chair/padded/purple{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/space) -"wdk" = (/obj/floor_decal/industrial/traffic{dir = 1},/obj/floor_decal/corner/red/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wdp" = (/obj/structure/table/woodentable/walnut,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"wds" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/reagent_sublimator/sauna,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wdE" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"wdG" = (/obj/floor_decal/carpet/blue{dir = 1},/turf/simulated/floor/carpet/blue,/area/space) -"wdI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"wdK" = (/turf/simulated/floor/tiled/monotile,/area/space) -"wdL" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"wdN" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Chamber Output"},/turf/simulated/floor/tiled/white,/area/space) -"wdP" = (/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"wdT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"wdV" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/techfloor{dir = 6},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"web" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"wed" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{display_name = "Starboard Dock A"; frequency = 1380; id_tag = "merchant_shuttle_station"; pixel_x = 32; pixel_y = 21; req_access = list("ACCESS_EXTERNAL")},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/space) -"wej" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/second_deck{c_tag = "Second Deck - Central Hallway"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wek" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/plating,/area/space) -"wel" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wep" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/lime/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/lime/bordercorner2{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"wew" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/space) -"weB" = (/turf/simulated/wall/r_wall,/area/space) -"weC" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/research{c_tag = "Research - Xenoflora Hydroponics"; dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"weD" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"weF" = (/obj/floor_decal/floordetail/edgedrain{dir = 9},/obj/floor_decal/corner/paleblue,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"weJ" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"weM" = (/turf/simulated/wall/prepainted,/area/maintenance/thirddeck/port) -"weN" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"weT" = (/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/blue/border{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"weX" = (/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"weY" = (/obj/structure/largecrate,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"wfa" = (/obj/machinery/oxygen_pump{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "petrov_shuttle_pump"},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wfc" = (/obj/structure/disposalpipe/down{dir = 1},/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/thirddeck/starboard) -"wff" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular{dir = 2; id_tag = "lounge_windows"},/turf/simulated/floor/plating,/area/space) -"wfo" = (/obj/floor_decal/carpet/blue2{dir = 4},/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 5},/obj/structure/dogbed,/mob/living/simple_animal/passive/cat/fluff/Runtime,/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue3,/area/space) -"wfw" = (/obj/floor_decal/techfloor/orange,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"wfJ" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery,/obj/item/autopsy_scanner,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue/autopsy) -"wfV" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"wfW" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/rnd/development) -"wgm" = (/obj/fluid_mapped,/turf/simulated/floor/beach/sand,/area/space) -"wgn" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/structure/bed/chair/padded/red{desc = "You sit in this, either by will or force. This is probably the most uncomfortable chair in the whole world. You literally die sitting on it."; dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"wgr" = (/obj/floor_decal/spline/fancy/wood/corner,/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/machinery/computer/modular/preset/civilian{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood/ebony,/area/space) -"wgs" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/blue/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wgD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"wgH" = (/obj/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 8},/obj/floor_decal/techfloor/orange/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"wgN" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/space) -"wgO" = (/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/paint_stripe/red,/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/polarized{id = "cadetwindow"},/turf/simulated/floor/plating,/area/space) -"wgP" = (/obj/floor_decal/corner/red/border{dir = 4},/obj/structure/handrail{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wgQ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/table/rack,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/item/aicard,/obj/structure/window/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wgR" = (/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "cafe_private_room"; name = "Lock"; pixel_x = -24; pixel_y = 7},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/button/windowtint{dir = 4; id = "private_cafe_windows"; pixel_x = -24; pixel_y = -6; range = 3},/obj/structure/table/woodentable_reinforced/walnut,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 14},/turf/simulated/floor/carpet/blue2,/area/space) -"whd" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_smes) -"whe" = (/obj/floor_decal/industrial/warning/fulltile,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"whj" = (/obj/item/stack/tile/walnut{pixel_x = 9; pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/vacant/bar) -"whl" = (/obj/structure/hygiene/sink/kitchen{pixel_y = 24},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/floor_decal/snow,/turf/simulated/floor/tiled/freezer,/area/space) -"whn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"whv" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/blue,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"whx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/media/music_writer{pixel_y = 60},/turf/simulated/floor/tiled/dark,/area/space) -"whD" = (/obj/structure/bed/chair/padded/blue,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/space) -"whF" = (/obj/structure/undies_wardrobe,/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"whL" = (/obj/machinery/door/blast/regular/open{density = 0; dir = 4; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/exploration_shuttle/medical) -"whQ" = (/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"whR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"wib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"wid" = (/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/port) -"wig" = (/turf/simulated/floor/tiled,/area/space) -"wik" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 4},/obj/random/maintenance,/obj/machinery/door/window/westleft{dir = 1; name = "Commissary rack"; req_access = newlist()},/obj/structure/window/reinforced{dir = 8},/obj/random/maintenance,/obj/floor_decal/corner/black/full,/obj/floor_decal/industrial/outline/yellow,/obj/random/single/lighter,/turf/simulated/floor/tiled,/area/crew_quarters/commissary) -"win" = (/obj/machinery/atmospherics/binary/pump,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/red,/obj/floor_decal/corner/blue{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"wiz" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/maintenance/solgov,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"wiB" = (/obj/item/mech_component/propulsion/spider,/obj/structure/closet/crate,/obj/item/robot_parts/robot_component/actuator,/obj/item/robot_parts/robot_component/actuator,/obj/item/circuitboard/exosystem/utility,/obj/item/circuitboard/exosystem/medical,/obj/item/mech_equipment/sleeper,/obj/item/mech_equipment/mounted_system/melee/mechete,/turf/simulated/floor/tiled/techfloor,/area/space) -"wiF" = (/obj/floor_decal/carpet{dir = 8},/obj/floor_decal/carpet{dir = 1},/obj/floor_decal/carpet{dir = 9},/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart,/turf/simulated/floor/carpet/red,/area/space) -"wiH" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wiJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"wiO" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/solar/port) -"wiU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"wjg" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"wji" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/blue,/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"wjj" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "sierra_surgery1"},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) -"wjk" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"wjl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wjm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"wjq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"wjs" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"wjt" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/space) -"wjv" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"wjB" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"wjK" = (/turf/simulated/wall/r_wall/prepainted,/area/bridge/meeting_room) -"wjN" = (/obj/floor_decal/borderfloorblack/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"wjO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"wka" = (/obj/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"wkl" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"wkt" = (/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"wkA" = (/obj/floor_decal/corner/paleblue/border{dir = 10},/obj/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wkC" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/aft) -"wkE" = (/obj/floor_decal/techfloor{dir = 8},/obj/decal/cleanable/dirt,/obj/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"wkM" = (/obj/floor_decal/corner/red,/obj/machinery/door_timer/cell_1{pixel_x = 32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/space) -"wkN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"wle" = (/turf/simulated/wall/prepainted,/area/crew_quarters/sleep/cryo) -"wlh" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"wlm" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"wlw" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"wly" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"wlE" = (/obj/machinery/papershredder,/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled/white/monotile,/area/space) -"wlJ" = (/obj/landmark/test/space_turf,/turf/space,/area/space) -"wlQ" = (/obj/machinery/suit_storage_unit/science,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/brown/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/quartermaster/expedition/eva) -"wlR" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor{dir = 4},/obj/random/plushie,/turf/simulated/floor/plating,/area/space) -"wlV" = (/turf/simulated/floor/tiled,/area/quartermaster/hangar) -"wlW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"wlZ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/railing/mapped,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/space) -"wma" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/wall/r_wall/prepainted,/area/engineering/atmos) -"wme" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor/orange{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"wmh" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "First Deck Substation Bypass"},/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"wmm" = (/obj/random/obstruction,/obj/structure/railing/mapped,/turf/simulated/floor/plating,/area/space) -"wmn" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light_switch{dir = 4; pixel_x = -23},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/space) -"wmo" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/exploration_shuttle/power) -"wmq" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/flora/pottedplant/smalltree,/obj/structure/sign/poster{pixel_y = 32},/turf/simulated/floor/wood/ebony,/area/space) -"wmv" = (/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/wood/walnut,/area/chapel/main) -"wmy" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/thirddeck/port) -"wmB" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm{pixel_y = 24},/obj/machinery/button/alternate/door/bolts{dir = 8; id_tag = "old_maintaince_privatedorm_toilet"; name = "Lock"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/space) -"wmY" = (/obj/floor_decal/corner/grey/three_quarters{dir = 1},/obj/structure/table/rack,/obj/item/reagent_containers/glass/rag{pixel_x = 3; pixel_y = -1},/obj/item/reagent_containers/glass/rag{pixel_x = -3; pixel_y = 8},/obj/item/reagent_containers/spray/cleaner{pixel_x = -6; pixel_y = 16},/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = 17},/turf/simulated/floor/tiled/dark,/area/space) -"wng" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/space) -"wnh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"wns" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/light/small,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"wnz" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wnK" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"wnO" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"wnT" = (/obj/machinery/door/airlock/external{autoset_access = 0; frequency = 1380; id_tag = "petrov_shuttle_outer"; name = "Petrov Exterior Access"; req_access = list("ACCESS_PETROV_HELM")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wnX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"wnY" = (/obj/structure/bed/sofa/l/brown{dir = 8},/obj/floor_decal/carpet/red{dir = 1},/obj/floor_decal/carpet/red{dir = 4},/obj/floor_decal/carpet/red{dir = 5},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/carpet/red,/area/space) -"wod" = (/turf/simulated/floor/tiled/white/monotile,/area/turbolift/medical_lift) -"woo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"wop" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/aftport) -"woz" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"woC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"woD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor/corner,/obj/floor_decal/techfloor/corner{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"woE" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/techfloor{dir = 9},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"woN" = (/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/closet/radiation,/obj/floor_decal/spline/plain/yellow{dir = 8},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"woR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"woS" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"wpa" = (/obj/floor_decal/corner/yellow/half{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"wph" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"wpi" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/blue{pixel_x = -2; pixel_y = 3},/obj/item/pen/red{pixel_x = 6; pixel_y = -2},/obj/floor_decal/carpet/blue{dir = 1},/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue{dir = 5},/turf/simulated/floor/carpet/blue,/area/space) -"wpk" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/sign/science_1{dir = 1; pixel_y = -32},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"wpo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/item/folder/nt,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/space) -"wpI" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "xenobioaqua"; name = "Containment Blast Doors"},/turf/simulated/floor/plating,/area/space) -"wpL" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wpT" = (/obj/floor_decal/spline/fancy/black{dir = 6},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"wpU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/button/alternate/door/bolts{dir = 1; id_tag = "shower1"; name = "Lock"; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/space) -"wpV" = (/obj/floor_decal/borderfloor{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/expedition/storage) -"wpZ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/b_green/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/b_green/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/shuttle/green{dir = 1},/turf/simulated/floor/tiled,/area/space) -"wqe" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wqk" = (/obj/structure/fitness/weightlifter,/obj/floor_decal/corner/black/full,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/gym) -"wqm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/vacant/cargo) -"wqq" = (/obj/structure/table/standard,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"wqu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"wqy" = (/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"wqA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/aft) -"wqC" = (/obj/item/device/flashlight/lamp/floodlamp/green,/obj/item/device/flashlight/lamp/floodlamp/green,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/computer/guestpass{pixel_y = 30},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/b_green/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/b_green/bordercorner2{dir = 5},/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/space) -"wqN" = (/obj/structure/bed/sofa/m/black{dir = 10},/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"wrf" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "nuke_shuttle_dock_airlock_sensor"; master_tag = "nuke_shuttle_dock_airlock"; pixel_y = 24},/obj/structure/catwalk,/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{id_tag = "nuke_shuttle_dock_airlock_pump"},/turf/simulated/floor/plating,/area/space) -"wru" = (/obj/random/obstruction,/obj/floor_decal/techfloor/orange{dir = 5},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"wrv" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/space) -"wrC" = (/obj/floor_decal/corner/red,/obj/structure/table/steel,/obj/item/storage/box/donkpocket_mixed,/obj/item/storage/box/donkpocket_mixed,/turf/simulated/floor/tiled/steel_grid,/area/space) -"wrD" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"wrG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) -"wsk" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d3starboard) -"wst" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"wsu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"wsy" = (/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/decal/cleanable/greenglow,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"wsz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"wsH" = (/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood/ebony,/area/space) -"wsQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/fore) -"wsR" = (/obj/machinery/door/airlock/glass/civilian{autoset_access = 0; name = "Long Term Dorms"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wsS" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"wsW" = (/obj/machinery/light/spot{dir = 8},/obj/structure/bed/sofa/l/teal,/turf/simulated/floor/tiled/white,/area/space) -"wtc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lightgrey/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"wtg" = (/obj/structure/window/reinforced/polarized{id = "cap_room_window"},/obj/structure/dogbed,/mob/living/simple_animal/friendly/fox/renault,/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 8},/obj/floor_decal/carpet/blue{dir = 10},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/carpet/blue,/area/space) -"wtn" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/floor_decal/corner/grey/three_quarters{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"wtu" = (/obj/fluid_mapped,/obj/machinery/atmospherics/unary/outlet_injector{desc = "Passively injects water into its surroundings. Has a valve attached to it that can control flow rate."; dir = 1; name = "water injector"},/turf/simulated/floor/reinforced,/area/maintenance/waterstore) -"wtw" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wty" = (/obj/structure/table/standard,/obj/item/storage/firstaid/surgery{pixel_y = 6},/obj/item/reagent_containers/spray/sterilizine,/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 30},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wtA" = (/obj/structure/table/standard,/obj/floor_decal/corner/blue/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/modular_computer/tablet/lease/preset/command,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"wtD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/firstdeck/centralport) -"wtH" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/crew_quarters/adherent) -"wtM" = (/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"wtP" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/space) -"wtU" = (/obj/structure/table/rack,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/obj/item/storage/briefcase/inflatable,/obj/item/inflatable_dispenser,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/space) -"wua" = (/obj/structure/sign/warning/docking_area{dir = 1; pixel_y = -32},/obj/structure/catwalk,/obj/structure/railing/mapped{dir = 1},/turf/space,/area/space) -"wue" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/railing/mapped{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"wug" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"wui" = (/obj/structure/table,/obj/item/stack/material/steel,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"wuk" = (/obj/structure/table/woodentable_reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Steward"},/obj/machinery/light,/turf/simulated/floor/wood,/area/space) -"wun" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"wuE" = (/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/undies_wardrobe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/space) -"wuG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"wuH" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"wuI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/woodentable_reinforced/walnut,/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{pixel_x = -3; pixel_y = -3},/turf/simulated/floor/carpet/red,/area/space) -"wuO" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"wuP" = (/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"wuR" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/space) -"wuT" = (/obj/floor_decal/corner/purple/half{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"wve" = (/obj/machinery/portable_atmospherics/canister/hydrogen{start_pressure = 14999},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"wvg" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 4},/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/space) -"wvk" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/red/border{dir = 9},/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wvp" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/floor_decal/corner/yellow{dir = 6},/obj/machinery/vending/coffee{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"wvv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/turf/simulated/floor/plating,/area/space) -"wvA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/corner/yellow{dir = 1},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"wvG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/corner/red/border{dir = 5},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wvM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/stool/padded/red,/turf/simulated/floor/tiled/steel_grid,/area/space) -"wvO" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/red/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/space) -"wvT" = (/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/red/border{dir = 5},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/coatrack,/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wwf" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/aftstarboard) -"wwj" = (/obj/structure/stairs/north,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wwm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/vault/bolted{id_tag = "civsafedoorport"; name = "Second Deck Safe Room"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"wwo" = (/obj/structure/table/marble,/obj/structure/window/reinforced,/obj/item/storage/fancy/egg_box,/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"wwr" = (/obj/structure/bed,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"wws" = (/obj/structure/table/standard,/obj/item/device/taperecorder/empty,/turf/simulated/floor/tiled/white/monotile,/area/space) -"www" = (/obj/shuttle_landmark/merc/deck5,/turf/space,/area/space) -"wwG" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"wwH" = (/turf/simulated/floor/tiled,/area/vacant/cargo) -"wwN" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"wwR" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"wwT" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/space) -"wwV" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"wxd" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/glass/engineering{dir = 8; name = "Engineering EVA Storage"; req_access = newlist()},/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/monotile,/area/space) -"wxi" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/bed/chair/padded/blue,/obj/structure/closet/medical_wall/filled{pixel_y = 32},/obj/random/firstaid,/obj/random/firstaid,/obj/random/medical,/obj/item/reagent_containers/food/snacks/proteinbar,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"wxx" = (/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/b_green/border{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/b_green/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/shuttle/green{dir = 1},/turf/simulated/floor/tiled,/area/space) -"wxQ" = (/obj/machinery/cryopod,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wxY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/brig) -"wyb" = (/obj/floor_decal/spline/fancy/black{dir = 6},/obj/floor_decal/snow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/fridge/meat,/turf/simulated/floor/tiled/freezer,/area/space) -"wyg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/port) -"wyn" = (/obj/structure/bed/padded,/obj/floor_decal/corner/green{dir = 1},/obj/item/bedsheet/green,/obj/machinery/light_construct,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"wyp" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/obj/structure/bed/chair/office/purple,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"wyt" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/structure/bed/chair/rounded/blue{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"wyx" = (/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wyy" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/space) -"wyB" = (/obj/structure/catwalk,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"wyE" = (/obj/structure/table/woodentable/maple,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"wyO" = (/obj/structure/table/standard,/obj/item/storage/firstaid/sleekstab{pixel_y = 10},/obj/item/storage/firstaid/stab,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"wyV" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"wyZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"wzi" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/structure/bed/chair/office/brown{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled,/area/space) -"wzk" = (/obj/structure/table/rack,/obj/item/stack/material/wood/walnut{amount = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"wzp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"wzq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wzw" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera/network/medbay{c_tag = "Equipment - Locker Room"},/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"wzD" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/spline/plain/brown{dir = 8},/obj/structure/holoplant,/turf/simulated/floor/wood/walnut,/area/space) -"wzG" = (/obj/structure/closet/crate/plastic,/obj/decal/cleanable/cobweb2,/obj/item/bodybag,/obj/item/reagent_containers/ivbag/blood/human/oneg,/obj/item/reagent_containers/ivbag/blood/human/oneg,/turf/simulated/floor/plating,/area/vacant/infirmary) -"wzH" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/space) -"wzQ" = (/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wzU" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/space) -"wAh" = (/obj/structure/flora/pottedplant/smalltree,/obj/floor_decal/corner/black/mono,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wAw" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"wAE" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"wAR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced,/area/space) -"wAS" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"wAU" = (/obj/floor_decal/corner/green/three_quarters{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/meter,/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/bordercorner,/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"wAZ" = (/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/medical/staging) -"wBg" = (/obj/machinery/telecomms/server/presets/service,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"wBl" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/apc/super/critical{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"wBq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"wBr" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/no_grille,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id_tag = "Skynet_launch"; name = "Mech Bay"; opacity = 0},/turf/simulated/floor/plating,/area/assembly/chargebay) -"wBP" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/space) -"wBR" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/techfloor/orange{dir = 4},/obj/machinery/light/spot{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"wBV" = (/obj/structure/bed/chair/padded/red,/turf/simulated/floor/tiled/dark,/area/space) -"wBZ" = (/obj/machinery/suit_storage_unit/explorer,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"wCd" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"wCk" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"wCt" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/random/closet,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"wCv" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/machinery/light/spot{dir = 8},/obj/structure/table/woodentable_reinforced/ebony,/obj/machinery/fabricator/micro/bartender{pixel_x = 4},/turf/simulated/floor/wood/walnut,/area/space) -"wCA" = (/obj/floor_decal/corner/red/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"wCL" = (/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/wood/mahogany,/area/crew_quarters/sleep/bunk) -"wDa" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"wDi" = (/obj/structure/table/steel_reinforced,/obj/item/book/manual/atmospipes,/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/reinforced,/area/space) -"wDo" = (/obj/floor_decal/industrial/outline/yellow,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"wDC" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"wDG" = (/obj/machinery/telecomms/server/presets/common,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"wDJ" = (/obj/structure/closet/fridge,/obj/floor_decal/spline/fancy/black{dir = 5},/obj/floor_decal/snow,/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Kitchen - Freezer"},/turf/simulated/floor/tiled/freezer,/area/space) -"wDQ" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 8; name = "cargo outlet"},/obj/structure/sign/warning/mail_delivery{pixel_y = 24},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/railing/mapped,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wDS" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/item/storage/box/rxglasses,/obj/item/storage/box/rxglasses,/obj/item/cane,/obj/item/cane,/obj/item/wheelchair_kit,/obj/item/wheelchair_kit,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"wEb" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"wEf" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/dispenser,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/hardstorage) -"wEl" = (/obj/floor_decal/corner_techfloor_grid{dir = 10},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"wEn" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"wEu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"wEw" = (/obj/floor_decal/stairs{dir = 4},/turf/simulated/floor/wood/bamboo{name = "stairs"},/area/space) -"wEy" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"wEU" = (/obj/machinery/door/airlock/vault/bolted{id_tag = "selfddoor"; name = "Delta Code Chamber Access"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/alternate/door/bolts{id_tag = "selfddoor"; name = "Delta Code Airlock Bolt Control"; pixel_y = -32; req_access = list("ACCESS_VAULT")},/obj/item/airlock_brace{req_access = list("ACCESS_VAULT")},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"wFa" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d1port) -"wFh" = (/turf/simulated/wall/r_wall/hull{can_open = 1},/area/space) -"wFo" = (/turf/simulated/floor/carpet,/area/space) -"wFx" = (/obj/machinery/vending/wallmed2{dir = 8; pixel_x = 23},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/monotile,/area/space) -"wFy" = (/turf/simulated/wall/r_wall/prepainted,/area/engineering/engine_monitoring) -"wFB" = (/obj/structure/sign/xenobio_3{pixel_y = -32},/obj/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"wFO" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"wFQ" = (/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2{dir = 1},/obj/floor_decal/carpet/blue2{dir = 9},/obj/structure/window/reinforced/tinted{dir = 1; icon_state = "window"},/turf/simulated/floor/carpet/blue2,/area/space) -"wGf" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"wGh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"wGK" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4},/obj/machinery/meter,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"wGZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/padded/purple{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"wHf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/recharger,/obj/structure/table/steel_reinforced,/obj/machinery/light,/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"wHk" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"wHn" = (/obj/machinery/cryopod,/obj/machinery/computer/cryopod{pixel_y = 24},/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wHD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/sign/warning/high_voltage{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"wHL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/security{name = "Interrogation"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wHP" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"wHU" = (/obj/machinery/door/blast/shutters{id_tag = "portaux_warehouse"; name = "Warehouse Shutters"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"wIm" = (/obj/machinery/cryopod{dir = 2},/obj/machinery/computer/cryopod{pixel_y = 24},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wIq" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"wIr" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/spline/fancy/black{dir = 9},/obj/structure/bed/chair/pew,/turf/simulated/floor/grass/cut,/area/space) -"wIy" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/freezer,/area/space) -"wIz" = (/obj/machinery/computer/modular/preset/aislot/research{dir = 1},/obj/floor_decal/corner/research/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/rnd/office) -"wIU" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 8},/obj/floor_decal/corner/yellow/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/space) -"wIW" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/computer/air_control{dir = 1; input_tag = "h2_in"; name = "Hydrogen Supply Control"; output_tag = "h2_out"; sensor_name = "Tank"; sensor_tag = "h2_sensor"},/obj/floor_decal/techfloor,/obj/floor_decal/corner/paleblue{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"wIY" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood/walnut,/area/space) -"wJj" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/blue{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"wJl" = (/obj/structure/reagent_dispensers/coolanttank,/turf/simulated/floor/tiled/dark,/area/space) -"wJp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/space) -"wJr" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/space) -"wJw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/space) -"wJA" = (/obj/machinery/light/spot{dir = 4},/obj/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"wJE" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 9},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"wJH" = (/obj/floor_decal/borderfloor,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"wJK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"wJN" = (/turf/space,/area/space) -"wKb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/catwalk_plated,/turf/simulated/floor/plating,/area/space) -"wKq" = (/obj/structure/hygiene/sink{dir = 4; pixel_x = 11},/obj/item/storage/mirror{pixel_x = 24; pixel_y = 1},/obj/structure/handrail{dir = 1},/turf/simulated/floor/tiled/freezer,/area/vacant/cargo) -"wKs" = (/obj/decal/cleanable/dirt,/obj/structure/bed/chair/pew/left/mahogany,/turf/simulated/floor/wood/walnut,/area/space) -"wKC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"wKF" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/decal/cleanable/dirt,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/monotile,/area/space) -"wKI" = (/obj/structure/closet/crate,/obj/floor_decal/industrial/outline/grey,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"wKK" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table/steel_reinforced,/obj/item/book/manual/supermatter_engine,/obj/item/device/geiger,/obj/item/device/binoculars,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"wKO" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/machinery/camera/network/command{c_tag = "Command - Port Hallway"; dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"wLd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wLg" = (/obj/structure/table/steel,/obj/item/modular_computer/tablet/lease/preset/command,/turf/simulated/floor/tiled,/area/crew_quarters/heads/office/ce) -"wLl" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/machinery/ship_map,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wLu" = (/obj/machinery/atmospherics/binary/pump/on,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"wLw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hydroponics) -"wLC" = (/obj/structure/sign/warning/nosmoking_1{pixel_x = 32; pixel_y = -37},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad{pixel_x = 16; pixel_y = 16},/obj/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"wLT" = (/obj/machinery/portable_atmospherics/canister/hydrogen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"wLX" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/roller_bed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"wMi" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"wMn" = (/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_10_hatch"; name = "Escape Pod Ten Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wMx" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1441; id = "toxins_petrov_in"},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/machinery/sparker{id_tag = "toxlab_petrov"; pixel_w = 1; pixel_z = -23},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wMB" = (/obj/floor_decal/industrial/warning/full,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng4"; name = "First Deck Port Nacelle Access"; pixel_y = 21; req_access = list("ACCESS_ENGINEERING")},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/valve/shutoff/fuel{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/thruster/d1port) -"wMF" = (/turf/simulated/wall/prepainted,/area/security/nuke_storage) -"wMG" = (/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/space) -"wMJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button/airlock_exterior{dir = 4; master_tag = "ai_starboard"; name = "exterior access button"; pixel_y = 28; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"wMT" = (/obj/structure/railing/mapped,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/space) -"wMV" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/item/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/space) -"wMZ" = (/obj/structure/closet/coffin/wooden,/turf/simulated/floor/tiled/techmaint,/area/maintenance/seconddeck/aftport) -"wNp" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{autoset_access = 0; name = "Bridge Checkpoint"; req_access = list("ACCESS_SEC_DOORS")},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wNq" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"wNr" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan,/obj/machinery/light,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"wNs" = (/obj/floor_decal/corner/green/half,/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/obj/floor_decal/corner/purple/border,/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"wNu" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"wNF" = (/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"wNH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/space) -"wNJ" = (/turf/simulated/wall/r_wall/prepainted,/area/medical/morgue/autopsy) -"wNK" = (/obj/machinery/seed_storage/garden{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"wNN" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/obj/structure/sign/warning/pods/south{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"wNO" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/item/folder/white,/obj/structure/window/reinforced/tinted{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_to_maint"; name = "Infirmary to Maintenance Lockdown"; pixel_x = 20; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_morg"; name = "Mogrue Exit Lockdown"; pixel_x = 20; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_crit2"; name = "Critical Wing 2 Lockdown"; pixel_x = 28; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_crit1"; name = "Critical Wing 1 Lockdown"; pixel_x = 36; pixel_y = 10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_pat_ward"; name = "Infirmary Patient Ward Lockdown"; pixel_x = 20; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_main_reg"; name = "Infirmary Main Entrance Lockdown"; pixel_x = 28; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/obj/machinery/button/blast_door{dir = 8; id_tag = "med_pub_hall"; name = "Infirmary Public Hallway Lockdown"; pixel_x = 36; pixel_y = -10; req_access = list("ACCESS_MEDICAL")},/turf/simulated/floor/tiled/white,/area/space) -"wNV" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"wNX" = (/obj/structure/bed/chair/padded/yellow,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"wOa" = (/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 4},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/r_titanium,/area/exploration_shuttle/power) -"wOd" = (/obj/machinery/computer/modular/preset/civilian,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/space) -"wOe" = (/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/sensor{name = "Powernet Sensor - First Deck Subgrid"; name_tag = "First Deck Subgrid"},/obj/machinery/power/apc/critical{name = "south bump"; pixel_y = -21},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"wOg" = (/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"wOo" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"wOq" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"wOs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"wOw" = (/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_permabrig_third_cell_shutters"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wOz" = (/obj/structure/cable/green,/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/paint_stripe/red,/obj/machinery/door/blast/shutters{dir = 4; id_tag = "security_sergeant_shutters"; name = "Warden Desk"},/obj/wallframe_spawn/reinforced/polarized{id = "bo_windows"},/turf/simulated/floor/plating,/area/space) -"wOA" = (/obj/structure/iv_stand,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wOI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"wOU" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"wPb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/command{dir = 4; id_tag = "bridge_hallway_doors_starboadr"; name = "Bridge Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge/hallway) -"wPe" = (/turf/simulated/floor/tiled/steel_ridged,/area/space) -"wPo" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/foreport) -"wPp" = (/obj/machinery/light,/obj/structure/closet/emcloset,/obj/machinery/pager/science{dir = 1; name = "Call Scienciests button"; pixel_y = -22},/obj/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled/monotile,/area/rnd/entry) -"wPq" = (/obj/structure/largecrate,/obj/random/junk,/turf/simulated/floor/plating,/area/space) -"wPr" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/space) -"wPt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/space) -"wPB" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"wPH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wPK" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue{dir = 4},/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "ai_core_inner"; locked = 1; name = "AI Internal Access"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ai_core_airlock"; name = "interior access button"; pixel_x = 7; pixel_y = -24; req_access = list("ACCESS_AI_UPLOAD")},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wPL" = (/obj/structure/sign/emergonly{dir = 4; pixel_x = -32},/obj/floor_decal/industrial/hatch/red,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white/monotile,/area/medical/staging) -"wPQ" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/hole,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"wPR" = (/obj/structure/railing/mapped{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/space) -"wPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/orange/corner{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"wPV" = (/turf/simulated/floor/tiled/steel_grid,/area/space) -"wQa" = (/obj/machinery/button/blast_door{id_tag = "auxbar"; name = "Blast Shutter Control"; pixel_x = 26},/turf/simulated/floor/wood/walnut{icon_state = "walnut_broken5"},/area/vacant/bar) -"wQf" = (/obj/structure/closet/coffin/wooden,/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/black/mono,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"wQg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"wQh" = (/obj/floor_decal/techfloor,/obj/machinery/light/spot,/obj/machinery/atmospherics/binary/pump/high_power{dir = 8},/obj/engine_setup/pump_max,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/engine_room) -"wQk" = (/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"wQs" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wQC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/space) -"wQE" = (/turf/simulated/wall/r_titanium,/area/shuttle/petrov/equipment) -"wQM" = (/obj/machinery/light,/obj/structure/table/rack/dark,/obj/item/storage/firstaid/adv{pixel_y = 8},/obj/item/storage/firstaid/stab{pixel_y = 2},/obj/item/storage/firstaid/adv{pixel_y = -3},/obj/item/device/robotanalyzer,/obj/item/stack/nanopaste{pixel_x = 1},/obj/item/stack/nanopaste{pixel_x = -6},/obj/floor_decal/spline/plain/paleblue{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/quartermaster/storage) -"wRc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/space) -"wRe" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"wRf" = (/obj/floor_decal/borderfloorblack/corner{dir = 8},/obj/floor_decal/borderfloorblack/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/meeting_room) -"wRk" = (/obj/floor_decal/borderfloor/corner,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"wRm" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/obj/floor_decal/corner/mauve/mono,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"wRs" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced,/area/thruster/d3port) -"wRA" = (/obj/floor_decal/corner/yellow/half{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) -"wRB" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/structure/window/reinforced{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"wRD" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"wRH" = (/obj/machinery/conveyor_switch/oneway{id = "Mail"},/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 22},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/supply{c_tag = "Supply Office - Post Office"; dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"wRX" = (/obj/item/stool,/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"wSa" = (/obj/machinery/porta_turret{dir = 8},/obj/floor_decal/techfloor{dir = 5},/obj/machinery/flasher{dir = 8; id_tag = "ai_core"; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"wSb" = (/obj/structure/table/standard,/obj/item/bodybag/rescue/loaded,/obj/item/bodybag/rescue/loaded,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"wSm" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"wSG" = (/obj/floor_decal/corner/yellow,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/flora/pottedplant/tropical,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/space) -"wSK" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/borderfloorblack{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"wSZ" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/yellow/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled/steel_grid,/area/space) -"wTa" = (/obj/structure/table/standard,/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; id_tag = "mental_health_door"; name = "Office Door Control"; pixel_x = -4; pixel_y = 7; req_access = list("ACCESS_PSYCHIATRIST")},/obj/machinery/button/windowtint{id = "mental_health_windows"; pixel_x = 4; pixel_y = 7; range = 11},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"wTr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/auxillary/port) -"wTv" = (/obj/structure/table/woodentable/ebony,/obj/item/device/synthesized_instrument/guitar,/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/maple,/area/space) -"wTA" = (/obj/floor_decal/corner/black{dir = 6},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "Medbay Hall"; dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"wTF" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/center) -"wTG" = (/obj/structure/sign/nanotrasen{dir = 8},/turf/simulated/wall/r_wall/hull,/area/space) -"wTI" = (/turf/simulated/floor/plating,/area/vacant/infirmary) -"wUa" = (/obj/structure/catwalk,/obj/machinery/light/spot,/turf/space,/area/space) -"wUn" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"wUo" = (/obj/floor_decal/corner/red/diagonal,/obj/floor_decal/spline/fancy/black,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"wUp" = (/obj/machinery/recharge_station,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"wUq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"wUr" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 6},/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"wUu" = (/obj/structure/cable/green,/obj/machinery/power/apc/high{dir = 8; name = "west bump"; pixel_x = -25},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"wUC" = (/obj/structure/table/rack,/obj/random/trash,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"wUD" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/space) -"wUM" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/yellow/border{dir = 4},/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/space) -"wUS" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"wUT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/disposal/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wUV" = (/obj/structure/handrail{dir = 1},/obj/machinery/light_switch{pixel_x = -10; pixel_y = -21},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/space) -"wVd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"wVe" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"wVf" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wVj" = (/obj/floor_decal/corner/red/border,/obj/machinery/light/led/small,/obj/machinery/hologram/holopad{pixel_x = 16},/obj/floor_decal/spline/fancy/black,/turf/simulated/floor/tiled/dark,/area/space) -"wVv" = (/obj/floor_decal/spline/fancy/wood{dir = 8},/obj/machinery/camera/network/second_deck{c_tag = "Mess Hall - Canteen - Distribution"; dir = 4},/turf/simulated/floor/wood/walnut,/area/space) -"wVw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/camera/network/engineering{c_tag = "Engineering - Substation - First Deck"},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"wVA" = (/obj/structure/railing/mapped{dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"wVD" = (/obj/machinery/atmospherics/unary/freezer,/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"wVI" = (/obj/structure/table/rack,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"wVJ" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"wVO" = (/obj/machinery/suit_storage_unit/engineering/alt,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/space) -"wVT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"wWb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/chapel/main) -"wWd" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/shuttlefuel) -"wWk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/ntlogo,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/entry) -"wWm" = (/obj/structure/window/reinforced,/obj/structure/closet/l3closet/scientist,/obj/floor_decal/corner/grey/diagonal,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/rnd/locker) -"wWo" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/rack,/obj/random/storage,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"wWp" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/structure/sign/directions/janitor{dir = 1; pixel_x = -32; pixel_y = -10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"wWr" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/green/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/green/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"wWt" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/engine_room) -"wWz" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"wWF" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/item/stock_parts/circuitboard/message_monitor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/storage/tech) -"wWI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/power/apc/critical{dir = 1; name = "north bump"; pixel_y = 21},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"wWV" = (/turf/simulated/wall/r_wall/hull,/area/maintenance/firstdeck/aftstarboard) -"wWY" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/vending/games,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"wXb" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/catwalk_plated/dark,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/plating,/area/space) -"wXc" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/item/storage/firstaid/regular,/obj/item/storage/firstaid/adv,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/medical/locker) -"wXk" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/bed/padded,/obj/item/bedsheet/purple,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/bunk) -"wXr" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 2; id_tag = "lounge_windows"},/turf/simulated/floor/plating,/area/space) -"wXw" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/wallframe_spawn/reinforced/polarized/full,/turf/simulated/floor/plating,/area/space) -"wXB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wXK" = (/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"wXZ" = (/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"wYj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/button/blast_door{id_tag = "armory"; name = "Armory blast door-control"; pixel_y = 24; req_access = list("ACCESS_ARMORY")},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/space) -"wYl" = (/obj/structure/ladder,/obj/catwalk_plated/dark,/turf/simulated/open,/area/crew_quarters/galley) -"wYp" = (/obj/floor_decal/corner/red,/turf/simulated/floor/tiled/dark,/area/space) -"wYr" = (/obj/machinery/door/airlock/maintenance{name = "Teleport Maintenance"; req_access = newlist()},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/teleporter) -"wYz" = (/obj/floor_decal/corner/green/three_quarters{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/floor_decal/corner/purple/bordercorner2{dir = 6},/obj/floor_decal/corner/purple/bordercorner2{dir = 5},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/obj/machinery/camera/network/research{c_tag = "Research - Xenoflora Atmospherics"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"wYF" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "xenolow_airlock"; name = "Xenobiology Access Console"; pixel_x = 24; req_access = list("ACCESS_XENOBIO")},/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"wYI" = (/obj/structure/closet/emcloset,/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/space) -"wYJ" = (/obj/machinery/door/window/brigdoor/eastright{id_tag = "iaaleft"; req_access = newlist()},/obj/floor_decal/carpet/blue{dir = 4},/turf/simulated/floor/carpet/blue,/area/space) -"wYN" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"wYV" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/space) -"wYZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/space) -"wZg" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"wZo" = (/obj/machinery/atmospherics/unary/vent_pump/tank{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/n20,/area/engineering/atmos) -"wZr" = (/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/b_green/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/b_green/bordercorner2{dir = 6},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/shuttle/green,/turf/simulated/floor/tiled,/area/space) -"wZw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"wZz" = (/obj/machinery/light{dir = 4},/obj/floor_decal/corner/black/three_quarters{dir = 4},/obj/floor_decal/corner/red/border{dir = 6},/obj/structure/closet/walllocker{pixel_y = -28},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"wZC" = (/obj/floor_decal/corner/black{dir = 5},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"wZI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 8},/obj/structure/hygiene/toilet,/obj/item/taperoll/bog{pixel_x = -12; pixel_y = -10},/obj/landmark/start,/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"wZR" = (/obj/floor_decal/corner/green/border,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xaa" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "ai_starboard_outer"; name = "Engineering External Access"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/aftport) -"xab" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled/white,/area/space) -"xae" = (/obj/structure/table/steel,/obj/item/clothing/suit/chef/classic,/obj/item/material/knife/combat,/obj/floor_decal/borderfloorblack/corner{dir = 4},/obj/floor_decal/corner/red/bordercorner{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"xaj" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"xam" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"xar" = (/obj/structure/morgue,/obj/floor_decal/industrial/outline/blue,/obj/structure/closet/walllocker{pixel_x = -28},/obj/machinery/light,/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"xaE" = (/obj/shuttle_landmark/skipjack/deck1,/turf/space,/area/space) -"xaG" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xaJ" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"xaK" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/turf/simulated/floor/plating,/area/bridge/hallway) -"xaM" = (/obj/machinery/atmospherics/unary/freezer{dir = 4},/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"xaP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/floor_decal/corner/purple{dir = 1},/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/entry) -"xaV" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) -"xbm" = (/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 4},/obj/floor_decal/carpet/purple{dir = 6},/obj/structure/dogbed,/mob/living/simple_animal/hostile/retaliate/beast/diyaab{dir = 8; faction = "boo"; name = "Boo"; response_disarm = "bops"; response_harm = "kicks"; response_help = "pets"},/obj/machinery/light,/turf/simulated/floor/carpet/purple,/area/space) -"xbp" = (/obj/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/space) -"xbx" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood/mahogany,/area/space) -"xbA" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{id_tag = "xenobio3"; name = "Containment Blast Doors"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"xbC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/catwalk_plated,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/space) -"xbE" = (/obj/structure/lattice,/obj/floor_decal/industrial/traffic{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xbG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/table/rack,/obj/item/stack/material/steel{amount = 25},/obj/item/stack/material/steel{amount = 25},/obj/item/stack/material/steel{amount = 25},/obj/floor_decal/industrial/outline/yellow,/obj/structure/railing/mapped{color = "#8c911d"; init_color = "#8c911d"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) -"xbJ" = (/turf/simulated/wall/r_wall/prepainted,/area/assembly/robotics) -"xbL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"xbO" = (/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"xbY" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xbZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"xcb" = (/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xce" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/warning/deathsposal{pixel_x = -32},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/borderfloorblack/corner2{dir = 8},/obj/floor_decal/corner/purple/bordercorner2{dir = 8},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"xch" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/blue,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white/monotile,/area/space) -"xck" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner/red{dir = 6},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xcm" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"xcq" = (/obj/structure/railing/mapped,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"xct" = (/obj/wallframe_spawn/reinforced/titanium,/obj/machinery/door/blast/regular/open{id_tag = "PetrovShield"; name = "Petrov Blast Shutters"},/turf/simulated/floor/plating,/area/space) -"xcu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/obj/structure/lattice,/turf/space,/area/space) -"xcw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{id_tag = "ai_bridge_pump"},/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/plating,/area/space) -"xcx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"xcB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"xcF" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"xcJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/barrier,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"xcU" = (/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/coffee,/obj/machinery/rotating_alarm/security_alarm{pixel_y = 13},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"xcX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"xcZ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/space) -"xdi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/space) -"xdk" = (/obj/machinery/light_switch{dir = 4; pixel_x = -21},/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment,/obj/structure/mopbucket,/obj/item/mop,/turf/simulated/floor/tiled/techfloor,/area/space) -"xdv" = (/obj/structure/sign/warning/hot_exhaust,/turf/simulated/wall/r_wall/prepainted,/area/maintenance/firstdeck/aftstarboard) -"xdx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/prepainted,/area/hydroponics) -"xdB" = (/obj/machinery/door/airlock/research{name = "Custodial Closet"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/eva) -"xdC" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/obj/machinery/papershredder,/obj/machinery/light,/obj/machinery/recharger/wallcharger{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/dark,/area/space) -"xdF" = (/obj/floor_decal/corner/green/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xdN" = (/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xek" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/grey/border,/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"xep" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/holocontrol) -"xet" = (/obj/structure/hygiene/shower{dir = 1},/obj/structure/hygiene/drain/bath,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"xeA" = (/turf/simulated/wall/r_wall/prepainted,/area/vacant/monitoring) -"xeN" = (/obj/structure/bed/chair/shuttle/white{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 8; id_tag = "escape_pod_3_pump"},/obj/floor_decal/borderfloor{dir = 6},/obj/floor_decal/corner/grey/border{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xeO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"xeQ" = (/obj/machinery/computer/telecomms/monitor{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) -"xeX" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xeY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xfd" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xft" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/space) -"xfu" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/hardstorage) -"xfw" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/turf/simulated/floor/reinforced,/area/shuttle/petrov/cell2) -"xfz" = (/obj/structure/sign/warning/hot_exhaust{dir = 4},/obj/paint/red,/obj/paint_stripe/white,/turf/simulated/wall/ocp_wall,/area/space) -"xfC" = (/obj/structure/table/steel_reinforced,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/obj/structure/filingcabinet/wallcabinet{pixel_y = 30},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xfY" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/railing/mapped{color = "#8c911d"; dir = 1; init_color = "#8c911d"},/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -32},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"xgj" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"xgk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/space) -"xgp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/space) -"xgt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"xgA" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 4; pixel_y = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/galley) -"xgB" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"xgD" = (/obj/floor_decal/techfloor/orange{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/greengrid,/area/space) -"xgE" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"xgH" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/machinery/camera/network/security{c_tag = "Security - Petrov Checkpoint"; dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"xgP" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"xgS" = (/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/decal/cleanable/dirt,/obj/item/reagent_containers/food/drinks/cans/cherrycola,/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = -7; pixel_y = 12},/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = 10; pixel_y = 11},/obj/item/reagent_containers/food/drinks/cans/coffeecola{pixel_x = -8; pixel_y = -4},/turf/simulated/floor/wood/walnut,/area/space) -"xgT" = (/obj/structure/bed/sofa/r/brown{dir = 4},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green,/turf/simulated/floor/wood/mahogany,/area/space) -"xgX" = (/obj/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xgZ" = (/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/wallframe_spawn/reinforced/polarized{id = "cap_windows"},/turf/simulated/floor/plating,/area/space) -"xhd" = (/obj/item/stool/bar/padded,/obj/floor_decal/corner/red{dir = 10},/obj/floor_decal/corner/red{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xhp" = (/obj/floor_decal/spline/fancy/wood/corner{dir = 4},/obj/floor_decal/spline/fancy/wood,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"xhr" = (/obj/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/prototype/engine) -"xhu" = (/obj/floor_decal/corner/purple/border,/obj/floor_decal/corner/purple/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"xhz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"xhA" = (/obj/structure/table/woodentable/walnut,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/flashlight/lamp/green,/obj/floor_decal/carpet/green,/obj/floor_decal/carpet/green{dir = 8},/obj/floor_decal/carpet/green{dir = 10},/turf/simulated/floor/carpet/green,/area/space) -"xhN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/forestarboard) -"xhU" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/catwalk_plated/dark,/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/plating,/area/bridge/hallway) -"xhX" = (/obj/structure/handrail{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"xia" = (/obj/structure/cable/green,/obj/machinery/door/firedoor{dir = 4},/obj/wallframe_spawn/reinforced/polarized/full{id = "mental_health_windows"},/turf/simulated/floor/plating,/area/space) -"xic" = (/obj/shuttle_landmark/escape_pod/start/pod9,/obj/wallframe_spawn/reinforced/titanium,/turf/simulated/floor/plating,/area/space) -"xig" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/structure/railing/mapped,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"xik" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/floor_decal/corner/green{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"xim" = (/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/floor_decal/corner/paleblue/bordercorner,/obj/floor_decal/corner/paleblue/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"xin" = (/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xip" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/landmark{name = "lightsout"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"xiA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/machinery/air_sensor{id_tag = "toxins_petrov_sensor"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xiD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"xiE" = (/obj/structure/table/rack,/obj/structure/railing/mapped{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"xiJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/ladder/up,/obj/floor_decal/industrial/warning/fulltile,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"xiS" = (/obj/structure/table/rack,/obj/item/clothing/accessory/storage/bandolier/safari,/obj/item/gun/launcher/net,/obj/item/clothing/accessory/storage/bandolier/safari,/obj/item/gun/launcher/net,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xiV" = (/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"},/obj/floor_decal/industrial/traffic{color = "#a2819e"; detail_color = "#a2819e"; dir = 1},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/space) -"xiW" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/obj/machinery/light{dir = 1},/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"xiY" = (/obj/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/railing/mapped,/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/power/terminal,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"xjd" = (/obj/floor_decal/carpet/purple{dir = 8},/turf/simulated/floor/carpet/purple,/area/space) -"xje" = (/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xjf" = (/obj/structure/table/reinforced,/obj/floor_decal/corner/beige{dir = 5},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"xjk" = (/obj/floor_decal/corner/green/half{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"xjo" = (/obj/floor_decal/corner/grey/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"xjq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/orange/corner,/obj/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"xjr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/warning/pods/west{dir = 8; pixel_x = 32},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"xjt" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood/mahogany,/area/space) -"xjw" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/bordercorner{dir = 4},/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/corner/green/bordercorner,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"xjE" = (/obj/floor_decal/techfloor{dir = 8},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/rotating_alarm/security_alarm{dir = 4; pixel_x = -14},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"xjQ" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/tech_loot,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"xkk" = (/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "ai_bridge_inner"; locked = 1; name = "Engineering External Access"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button/airlock_interior{master_tag = "ai_bridge_airlock"; pixel_y = 24},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xkl" = (/obj/structure/sign/warning/airlock{dir = 8},/turf/simulated/wall/prepainted,/area/space) -"xkv" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"xkD" = (/obj/machinery/constructable_frame/computerframe{dir = 4},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"xkE" = (/obj/structure/table/reinforced,/obj/structure/railing/mapped{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Holodeck - Center"},/obj/structure/sign/poster{pixel_y = 32},/obj/machinery/light/spot{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/holocontrol) -"xkF" = (/obj/structure/table/standard,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/floor_decal/corner/green/half{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"xkH" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/center) -"xkR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xkX" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"xkZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light/spot{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xlb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"xlf" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "hydroponics_space"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/hydroponics) -"xli" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/space) -"xlq" = (/turf/simulated/wall/r_wall/prepainted,/area/maintenance/fourthdeck/forestarboard) -"xls" = (/obj/structure/ladder,/obj/structure/lattice,/turf/simulated/open,/area/maintenance/firstdeck/centralport) -"xlz" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/space) -"xlB" = (/obj/structure/closet/emcloset,/obj/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/aftstarboard) -"xlH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xlN" = (/obj/floor_decal/industrial/outline/grey,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/morgue) -"xlV" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/railing/mapped,/turf/simulated/floor/grass/cut,/area/space) -"xmj" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/obj/machinery/portable_atmospherics/hydroponics,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/rnd/xenobiology/xenoflora) -"xml" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/blue,/turf/simulated/floor/reinforced,/area/space) -"xmm" = (/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xmq" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/bed/sofa/l/brown{dir = 4},/obj/floor_decal/spline/fancy/black,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/mahogany,/area/space) -"xmF" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/structure/closet/firecloset,/obj/item/storage/briefcase/inflatable,/obj/random/maintenance,/obj/machinery/button/alternate/door/bolts{dir = 4; id_tag = "bridgesafe_front"; name = "safe room door-control"; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"xmH" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xmK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/light/spot{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"xmN" = (/obj/structure/closet/emcloset,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"xmU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"xnd" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/floor_decal/industrial/hatch/yellow,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/high_voltage{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xnf" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/item/book/manual/engineering_singularity_safety,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xng" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"xnh" = (/obj/machinery/cryopod{dir = 1},/obj/machinery/computer/cryopod{pixel_x = -32},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xnl" = (/obj/structure/bed/chair/shuttle/blue,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/guppy_hangar/start) -"xno" = (/obj/floor_decal/borderfloor{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"xnr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xnB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Security Checkpoint"; sort_type = "Security Checkpoint"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"xnJ" = (/obj/floor_decal/spline/fancy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/office/comfy/red{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"xnL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/borderfloor/corner,/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Security Equipment"; sort_type = "Security Equipment"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/corner/red/bordercorner,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/space) -"xnM" = (/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"xoa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/aft) -"xof" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/shield_diffuser,/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "solar_bridge_outer"; locked = 1; name = "Engineering External Access"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xog" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/constructable_frame,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) -"xoo" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/space) -"xor" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled/monotile,/area/space) -"xov" = (/obj/machinery/door/airlock/external/bolted/cycling{id_tag = "solar_starboard_inner"; name = "Engineering External Access"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xoy" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/floor_decal/techfloor/orange,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"xoB" = (/obj/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_port_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/engineering/engine_room) -"xoP" = (/obj/item/bikehorn/rubberducky,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"xoT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/primary/fourthdeck/center) -"xoZ" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/firstdeck/center) -"xpg" = (/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 4; id_tag = "bridge_windows"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) -"xpq" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xpx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"xpy" = (/obj/structure/sign/warning/docking_area{dir = 1},/turf/simulated/wall/r_wall/hull,/area/space) -"xpJ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/grey,/obj/structure/cart{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xpM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/sign/warning/biohazard{pixel_y = -32},/obj/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"xpO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/space) -"xpP" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/door/blast/regular{id_tag = "ThrusterVents"; name = "Thruster Blast Door"},/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/engine_room) -"xpQ" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lightgrey/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xpT" = (/obj/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"xpU" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xpV" = (/obj/floor_decal/borderfloor/corner,/obj/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/space) -"xpX" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id_tag = "hangar_hallway_shutters"; name = "Hangar Deck Hallway Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/fore) -"xqa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/hangar) -"xqd" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"xqh" = (/turf/simulated/floor/tiled/dark/monotile,/area/hallway/primary/firstdeck/center) -"xql" = (/obj/machinery/atmospherics/binary/pump/high_power{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/space) -"xqA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"xqJ" = (/turf/simulated/wall/prepainted,/area/vacant/monitoring) -"xrb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/space) -"xrm" = (/obj/structure/dogbed,/mob/living/simple_animal/friendly/koala/samorey,/obj/floor_decal/carpet/purple,/obj/floor_decal/carpet/purple{dir = 8},/obj/floor_decal/carpet/purple{dir = 10},/turf/simulated/floor/carpet/purple,/area/chapel/office) -"xrn" = (/obj/floor_decal/borderfloor{dir = 6},/obj/machinery/disposal/small{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/airlock{color = "#ff9900"; dir = 8; name = "\improper WAY TO SPACE"; pixel_x = 32},/obj/floor_decal/corner/black/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/space) -"xru" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"xrv" = (/obj/machinery/light{dir = 8},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/bed/chair/padded/blue,/obj/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"xrw" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xrC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/green/border,/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"xrJ" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/space) -"xrL" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/floor_decal/borderfloorblack/corner2{dir = 1},/obj/floor_decal/corner/red/bordercorner2{dir = 1},/obj/structure/table/steel,/obj/item/soap/red_soap,/obj/item/material/twohanded/baseballbat,/turf/simulated/floor/tiled/dark,/area/maintenance/firstdeck/forestarboard) -"xrV" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"xrW" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"xrZ" = (/obj/machinery/photocopier,/obj/floor_decal/corner/blue{dir = 6},/obj/machinery/button/windowtint{id = "cmo_windows"; pixel_x = 20; pixel_y = -10},/obj/machinery/button/alternate/door{desc = "A remote control-switch for the office door."; dir = 8; id_tag = "cmodoor"; name = "CMO Office Door Control"; pixel_x = 24; pixel_y = 6; req_access = list("ACCESS_CHIEF_MEDICAL_OFFICER")},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/cmo) -"xsa" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"xsf" = (/obj/structure/catwalk,/obj/structure/handrail,/turf/simulated/open,/area/space) -"xsg" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/structure/closet/l3closet/scientist,/obj/structure/sign/xenobio_3{pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/space) -"xsi" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 1},/obj/random/single/color/cable_coil,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xsl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"xsr" = (/obj/machinery/computer/modular/preset/cardslot/command{dir = 4},/turf/simulated/floor/wood,/area/space) -"xsu" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/hatch/maintenance,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"xsz" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular/open{dir = 2; id_tag = "Biohazard"; name = "Biohazard Shutter"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{dir = 4; name = "Miscellaneous Research"; req_access = newlist()},/turf/simulated/floor/tiled/monotile,/area/space) -"xsB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/structure/bed/chair/padded/red{dir = 1},/turf/simulated/floor/tiled,/area/security/brig) -"xsC" = (/obj/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"xsF" = (/obj/machinery/door/airlock/security{autoset_access = 0; name = "Security Checkpoint"; req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); secured_wires = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"xsN" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/floor_decal/borderfloor{dir = 10},/obj/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/firstdeck/foreport) -"xsQ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"xsS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"xsT" = (/obj/shuttle_landmark/lift/medical_top,/turf/simulated/floor/tiled/white/monotile,/area/turbolift/medical_lift) -"xsW" = (/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/vacant/monitoring) -"xtu" = (/turf/simulated/wall/r_wall/prepainted,/area/bridge) -"xtD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light/small{dir = 4},/obj/floor_decal/corner/green/border{dir = 4},/obj/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"xtM" = (/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"xtN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"xtS" = (/obj/item/rpd,/obj/floor_decal/industrial/warning/full,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xtU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"xtW" = (/obj/floor_decal/industrial/traffic,/obj/floor_decal/corner/red/bordercorner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xtX" = (/obj/machinery/door/airlock/medical{dir = 4; id_tag = "sierra_surgery2"; name = "Operating Room 2"},/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/holosign/surgery{dir = 8; id_tag = "sierra_surgery2"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xuf" = (/obj/structure/hygiene/shower{dir = 1},/obj/structure/hygiene/drain/bath,/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/head) -"xuk" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/floor_decal/corner/paleblue/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xuw" = (/obj/machinery/sleeper{dir = 1},/obj/floor_decal/industrial/outline/yellow,/obj/structure/sign/warning/nosmoking_1{dir = 4; pixel_x = -32},/obj/machinery/camera/network/medbay{c_tag = "Critical Wing - Entry"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/medical/sleeper) -"xuz" = (/obj/structure/table/standard,/obj/item/device/scanner/spectrometer/adv,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xuD" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"xuN" = (/obj/machinery/computer/modular/preset/security{dir = 4; name = "security console"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/floor_decal/techfloor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/space) -"xuO" = (/turf/simulated/wall/prepainted,/area/quartermaster/shuttlefuel) -"xuU" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"xvl" = (/obj/floor_decal/borderfloor{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/space) -"xvr" = (/obj/structure/hygiene/shower{dir = 4; pixel_x = 5},/obj/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/floor_decal/steeldecal/steel_decals10,/obj/structure/curtain/open/shower,/obj/item/soap,/obj/structure/closet/walllocker{pixel_x = -28},/obj/structure/hygiene/drain,/turf/simulated/floor/tiled/freezer,/area/space) -"xvB" = (/obj/machinery/light/spot{dir = 1},/obj/structure/table/standard,/obj/machinery/reagentgrinder/juicer,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/floor_decal/corner/green/three_quarters{dir = 8},/obj/item/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/reagent_containers/glass/beaker{pixel_x = -2; pixel_y = 7},/obj/item/reagent_containers/dropper,/turf/simulated/floor/tiled,/area/hydroponics) -"xvF" = (/obj/structure/table/rack,/obj/floor_decal/industrial/outline/yellow,/obj/random/maintenance,/turf/simulated/floor/tiled,/area/maintenance/seconddeck/aftstarboard) -"xvO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"xvS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"xvT" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/industrial/warning/corner,/obj/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/vacant/prototype/engine) -"xvV" = (/obj/machinery/telecomms/server/presets/common,/obj/machinery/light_switch{pixel_y = 24},/obj/structure/railing/mapped{dir = 8},/obj/structure/railing/mapped,/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"xwc" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor/grid,/area/rnd/canister) -"xwd" = (/obj/floor_decal/corner/black/full,/obj/structure/flora/pottedplant/decorative,/obj/machinery/light/spot{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/simulated/floor/tiled/dark,/area/space) -"xwl" = (/obj/structure/railing/mapped{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/ladder/up,/turf/simulated/floor/tiled/dark,/area/medical/morgue) -"xwp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"xws" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xwu" = (/obj/structure/railing/mapped{dir = 1},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xwC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"xwJ" = (/obj/structure/foamedmetal,/turf/simulated/floor/plating,/area/crew_quarters/commissary) -"xwP" = (/obj/structure/bed/chair/office/light,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"xwR" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralstarboard) -"xwV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood/walnut,/area/space) -"xwW" = (/obj/structure/table/woodentable/ebony,/obj/item/storage/firstaid/regular{pixel_y = 8},/obj/item/storage/firstaid/regular{pixel_x = 9; pixel_y = -2},/obj/machinery/body_scan_display{pixel_y = 24},/obj/item/device/radio/intercom{dir = 4; pixel_x = -24},/turf/simulated/floor/wood/mahogany,/area/space) -"xwY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) -"xxb" = (/obj/structure/bed/sofa/r/black{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xxf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xxk" = (/obj/floor_decal/techfloor/orange,/obj/structure/bed/chair/padded/blue{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"xxl" = (/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron{amount = 5},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/research{c_tag = "Xenobiology - Surgery"; dir = 4},/turf/simulated/floor/tiled/white/monotile,/area/space) -"xxo" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/table/standard,/obj/item/device/scanner/xenobio,/obj/item/device/scanner/xenobio,/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"xxp" = (/obj/machinery/computer/modular/preset/medical{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/dark,/area/space) -"xxv" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering EVA Storage"; req_access = newlist()},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xxB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"xxZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor{dir = 4},/obj/machinery/door/airlock/multi_tile/atmos{dir = 8; name = "Bridge Atmospherics Supply"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xya" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/white,/area/space) -"xye" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xyh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xyk" = (/obj/structure/roller_bed,/obj/structure/iv_stand,/obj/floor_decal/borderfloor{color = null; dir = 9},/obj/floor_decal/corner/blue/border{dir = 9},/obj/floor_decal/borderfloor/corner2{color = null; dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled/white,/area/exploration_shuttle/medical) -"xyo" = (/obj/floor_decal/borderfloor{dir = 9},/obj/floor_decal/corner/yellow/border{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor/tiled/steel_grid,/area/space) -"xyq" = (/obj/structure/wall_frame/standard,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 4; icon_state = "shutter0"; id_tag = "concheckwindow"; name = "Operation Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/window/southleft{autoset_access = 0; dir = 4; name = "Security Checkpoint"},/obj/machinery/door/window/brigdoor/northleft{dir = 8; name = "Security Checkpoint"},/obj/machinery/door/firedoor,/obj/structure/table/wallf{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/opscheck) -"xyt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/space) -"xyI" = (/obj/machinery/suit_storage_unit/pilot,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"xyL" = (/obj/structure/shuttle/engine/propulsion{dir = 1; icon_state = "burst_s"},/obj/paint/red,/obj/paint_stripe/red,/turf/simulated/wall/r_titanium,/area/space) -"xyO" = (/obj/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"xyV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/machinery/camera/network/second_deck{c_tag = "Adherent Maintenance"},/turf/simulated/floor/crystal,/area/crew_quarters/adherent) -"xzd" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 24},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"xzh" = (/obj/machinery/computer/modular/preset/engineering{dir = 1},/obj/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "Atmospherics - Bridge Deck"; dir = 1},/turf/simulated/floor/reinforced,/area/space) -"xzj" = (/obj/floor_decal/industrial/hatch/yellow,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/space) -"xzu" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman{sheets = 25},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"xzw" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/space) -"xzD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/access_button/airlock_interior{master_tag = "solar_starboard"; name = "interior access button"; pixel_x = 12; pixel_y = 27; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"xzF" = (/obj/structure/bed/chair/padded/red{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/turf/simulated/floor/tiled/steel_grid,/area/space) -"xzJ" = (/obj/structure/disposalpipe/down{dir = 8},/obj/structure/railing/mapped{dir = 8},/obj/structure/lattice,/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 1},/turf/simulated/open,/area/maintenance/thirddeck/starboard) -"xzL" = (/obj/wallframe_spawn/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular{dir = 2; id_tag = "guppy_shield"; name = "Window Shield"},/obj/paint_stripe/yellow,/turf/simulated/floor/plating,/area/guppy_hangar/start) -"xzN" = (/turf/simulated/wall/r_wall/prepainted,/area/thruster/d3starboard) -"xzT" = (/obj/floor_decal/corner/paleblue/mono,/obj/floor_decal/industrial/outline/yellow,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xzY" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/floor_decal/industrial/outline/blue,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xAd" = (/obj/structure/reagent_dispensers/water_cooler,/obj/floor_decal/spline/fancy/wood{dir = 9},/obj/machinery/light/spot{dir = 8},/turf/simulated/floor/wood/walnut,/area/space) -"xAj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"xAk" = (/obj/floor_decal/corner/grey/full,/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"xAm" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/floor_decal/borderfloor{dir = 5},/obj/floor_decal/corner/lightgrey/border{dir = 5},/obj/item/device/radio/intercom{pixel_y = 26},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/structure/holoplant,/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"xAq" = (/obj/structure/bed/sofa/l/beige,/turf/simulated/floor/carpet,/area/crew_quarters/lounge) -"xAw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/floor_decal/industrial/warning/full,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xAE" = (/turf/simulated/wall/r_wall/prepainted,/area/bridge/storage) -"xAG" = (/obj/floor_decal/corner/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/space) -"xAH" = (/obj/floor_decal/borderfloorblack{dir = 6},/obj/floor_decal/corner/purple/border{dir = 6},/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/research{c_tag = "Research - Misc. Chemistry"; dir = 8; network = list("Research","Miscellaneous Reseach")},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"xAM" = (/obj/machinery/suspension_gen,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/equipment) -"xBb" = (/obj/structure/table/standard,/obj/item/board,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/space) -"xBh" = (/obj/floor_decal/techfloor{dir = 4},/obj/machinery/button/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; dir = 8; id_tag = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutters"; pixel_x = 25; req_access = list("ACCESS_ENGINE_EQUIP")},/obj/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"xBi" = (/obj/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xBk" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/suit/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/obj/item/clothing/head/helmet/space/emergency,/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/safe_room/firstdeck) -"xBo" = (/obj/floor_decal/carpet/blue2{dir = 8},/turf/simulated/floor/carpet/blue3,/area/space) -"xBy" = (/turf/simulated/floor/tiled/dark,/area/space) -"xBF" = (/obj/structure/closet/crate/bin,/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/machinery/camera/network/second_deck{c_tag = "Laundry room"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/laundry) -"xBH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/bed/chair/office/purple,/obj/floor_decal/corner/purple/diagonal,/turf/simulated/floor/tiled/white,/area/space) -"xBR" = (/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"xBY" = (/obj/structure/sign/warning/biohazard{pixel_y = -24},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"xCa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"xCc" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/floor_decal/corner/purple/half{dir = 8},/obj/item/stool/padded,/turf/simulated/floor/tiled/dark,/area/space) -"xCd" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) -"xCg" = (/obj/structure/railing/mapped{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/space) -"xCn" = (/obj/landmark/map_data{height = 5},/turf/space,/area/space) -"xCs" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"xCz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"xCA" = (/obj/wallframe_spawn/reinforced_phoron,/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos) -"xCB" = (/obj/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"xCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/wall/r_wall/hull,/area/space) -"xCG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/space) -"xCJ" = (/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"xCQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/yellow/border,/obj/machinery/light/spot,/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"xCW" = (/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/structure/railing/mapped{dir = 1},/obj/structure/railing/mapped{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/fuel{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/turf/simulated/open,/area/maintenance/seconddeck/aftport) -"xCY" = (/obj/floor_decal/industrial/warning{dir = 10},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/dark/monotile,/area/security/nuke_storage) -"xDi" = (/obj/paint/black,/turf/simulated/wall/r_wall/prepainted,/area/space) -"xDk" = (/obj/structure/railing/mapped,/obj/machinery/light/small{dir = 1},/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xDs" = (/obj/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/space) -"xDA" = (/obj/structure/sign/deck/first{dir = 8; pixel_x = 32; pixel_y = -32},/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/open,/area/space) -"xDC" = (/obj/machinery/vending/hotfood{dir = 1},/obj/floor_decal/corner/blue/diagonal{dir = 4},/obj/decal/cleanable/dirt,/obj/machinery/light_construct,/turf/simulated/floor/tiled/dark,/area/vacant/mess) -"xDJ" = (/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"xDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/corner/yellow{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"xDT" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"xDU" = (/obj/floor_decal/industrial/warning/corner{dir = 8},/obj/floor_decal/techfloor/corner{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"xDX" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"xEc" = (/obj/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"xEd" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"xEe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/floor_decal/borderfloor{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xEi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xEk" = (/obj/structure/table/standard,/obj/machinery/reagent_temperature,/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"xEn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xEA" = (/obj/structure/closet/emcloset,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) -"xEB" = (/obj/floor_decal/corner/grey{dir = 5},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/turf/simulated/floor/reinforced,/area/thruster/d1port) -"xEE" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/space) -"xEG" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"xEI" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"xEJ" = (/obj/structure/bed/chair/pew/left,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/wood,/area/space) -"xEM" = (/obj/structure/sign/directions/supply{dir = 8; pixel_y = -31},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -24},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Central Stairwell"; dir = 1},/turf/simulated/open,/area/space) -"xEQ" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/purple/border,/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/space) -"xES" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xFc" = (/turf/simulated/floor/plating,/area/medical/morgue) -"xFd" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/fourthdeck/aft) -"xFn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xFo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/structure/railing/mapped,/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"xFp" = (/turf/simulated/floor/tiled/dark,/area/medical/morgue/autopsy) -"xFy" = (/obj/structure/closet/secure_closet/guncabinet,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/item/barrier,/obj/machinery/button/blast_door{dir = 1; id_tag = "armory"; name = "Armory blast door-control"; pixel_y = -24; req_access = list("ACCESS_ARMORY")},/obj/floor_decal/industrial/outline/grey,/obj/machinery/light/small,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"xFG" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/space) -"xFK" = (/obj/machinery/door/window/southleft{dir = 1; name = "Containment Pen"; req_access = newlist()},/obj/machinery/door/window/southleft{name = "Containment Pen"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{id_tag = "xenobioa1"; name = "Containment Blast Doors"},/turf/simulated/floor/reinforced,/area/space) -"xFL" = (/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/fore) -"xFQ" = (/obj/machinery/recharge_station,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/button/blast_door{dir = 4; id_tag = "Skynet_launch"; name = "Charging Bay Door Control"; pixel_x = -24; req_access = list("ACCESS_ROBOTICS")},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"xFT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/holoplant,/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/red/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 5},/obj/floor_decal/corner/red/bordercorner2{dir = 6},/obj/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) -"xGg" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"xGi" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/sleep/bunk) -"xGr" = (/obj/structure/railing/mapped{dir = 8},/obj/floor_decal/corner/black/border{dir = 4},/obj/floor_decal/corner/black/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/space) -"xGv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/walllocker{pixel_x = -28},/obj/floor_decal/borderfloor,/obj/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"xGD" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/floor_decal/corner/purple,/turf/simulated/floor/tiled,/area/space) -"xGM" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 1},/obj/machinery/disposal,/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/space) -"xGT" = (/obj/structure/table/standard,/obj/item/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/item/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/reagent_containers/food/condiment/barbecue{pixel_x = -3; pixel_y = 9},/obj/floor_decal/spline/fancy/black{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/grass/cut,/area/space) -"xGX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "ai_bridge_outer"; locked = 1; name = "Engineering External Access"},/obj/machinery/access_button/airlock_exterior{master_tag = "ai_bridge_airlock"; pixel_y = -24},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xGZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/space) -"xHc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/maintenance/firstdeck/centralport) -"xHi" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/borderfloorblack/corner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"xHt" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xHE" = (/obj/floor_decal/corner/grey/three_quarters{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"xHI" = (/obj/structure/table/reinforced,/obj/floor_decal/corner/beige{dir = 10},/obj/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"xHK" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/foreport) -"xHM" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"xHR" = (/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"xHT" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xHY" = (/turf/simulated/floor/carpet/blue2,/area/space) -"xIb" = (/obj/floor_decal/borderfloorblack{dir = 9},/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"xIg" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/foreport) -"xIj" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftport) -"xIk" = (/obj/machinery/door/airlock/external/bolted/cycling{frequency = 1380; id_tag = "admin_shuttle_dock_outer"; name = "Docking Port Airlock"},/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/fourthdeck/center) -"xIl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"xIp" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/hologram/holopad/longrange,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"xIs" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass/civilian{name = "Laundry"},/turf/simulated/floor/tiled/white/monotile,/area/crew_quarters/laundry) -"xIC" = (/obj/structure/closet/emcloset/anchored,/obj/floor_decal/corner/yellow/mono,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/space) -"xIG" = (/obj/structure/bed/chair/padded/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"xII" = (/obj/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced/hydrogen/fuel,/area/thruster/d3port) -"xIJ" = (/obj/structure/curtain/medical,/turf/simulated/floor/tiled/white,/area/space) -"xIM" = (/obj/item/stool/bar,/obj/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"xIQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/security/prison) -"xIV" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Drone Bay"; secured_wires = 1},/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"xIW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 8; pixel_x = 23},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 1},/obj/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter) -"xIY" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/obj/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced{map_airless = 1},/area/engineering/engine_room) -"xIZ" = (/obj/structure/disposalpipe/segment,/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"xJc" = (/obj/machinery/atmospherics/portables_connector,/obj/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white/monotile,/area/space) -"xJd" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/hull,/obj/machinery/door/blast/regular/open{density = 0; id_tag = "library_space_lower"; name = "Space Shutters"; opacity = 0},/turf/simulated/floor/plating,/area/space) -"xJg" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/corner/blue/border,/obj/machinery/light_switch{dir = 8; pixel_x = 21},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood/walnut,/area/space) -"xJl" = (/obj/structure/railing/mapped,/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xJH" = (/obj/machinery/door/firedoor{dir = 4},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/multi_tile/medical{dir = 8; id_tag = "MedbayER"; name = "Critical Wing Second"},/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"xJO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"xJP" = (/obj/paint/red,/obj/paint_stripe/white,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/r_titanium,/area/guppy_hangar/start) -"xJT" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white,/area/space) -"xJU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/fourthdeck/aft) -"xKg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"xKj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/thirddeck/center) -"xKr" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/forestarboard) -"xKw" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/standard,/obj/random/tech_supply{pixel_x = -6; pixel_y = 5},/obj/random/tech_supply{pixel_x = -9; pixel_y = -8},/obj/random/tech_supply{pixel_x = 5; pixel_y = 6},/obj/random/tech_supply{pixel_x = 7; pixel_y = -8},/obj/random/tool{pixel_x = 4; pixel_y = 2},/obj/random/tool{pixel_x = -5; pixel_y = -2},/obj/random/tank{pixel_x = 8; pixel_y = -1},/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"xKB" = (/obj/structure/table/rack,/obj/item/aiModule/freeform,/obj/item/aiModule/protectStation,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/door/window/northright{dir = 4; name = "Utility Modules"},/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"xKP" = (/obj/machinery/door/blast/regular/open{density = 0; id_tag = "calypso_shutters"; name = "Protective Shutters"; opacity = 0},/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced/titanium,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/paint/black,/obj/paint_stripe/blue,/turf/simulated/floor/plating,/area/space) -"xKS" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"xKT" = (/obj/structure/closet/crate,/obj/item/clothing/mask/muzzle/tape,/obj/item/clothing/mask/plunger,/turf/simulated/floor/plating,/area/space) -"xLe" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/space) -"xLl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"xLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/center) -"xLy" = (/obj/structure/sign/warning/pods/south{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"xLz" = (/obj/floor_decal/industrial/outline/grey,/obj/machinery/suit_storage_unit/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xLL" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/research{dir = 4; name = "Research Office"; req_access = newlist()},/turf/simulated/floor/tiled/monotile,/area/rnd/office) -"xLM" = (/obj/floor_decal/spline/fancy/black{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/grass/cut,/area/space) -"xLN" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor,/area/space) -"xLO" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/catwalk_plated,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"xLQ" = (/obj/floor_decal/corner/red/half{dir = 8},/obj/floor_decal/corner/red{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -24},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"xLU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xLV" = (/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"xMc" = (/obj/floor_decal/corner/black/mono,/obj/floor_decal/corner/green/border{dir = 9},/obj/floor_decal/corner/green/bordercorner,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/commissary) -"xMk" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/handrail{dir = 1},/turf/simulated/floor/airless,/area/space) -"xMl" = (/obj/floor_decal/techfloor/orange{dir = 9},/obj/structure/bed/chair/padded/blue,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/bridge) -"xMn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/fuel{dir = 10},/turf/simulated/floor/reinforced,/area/thruster/d1starboard) -"xMp" = (/turf/simulated/floor/plating,/area/maintenance/incinerator) -"xMu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xMx" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/corner/red/border,/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xMy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner_techfloor_grid{dir = 5},/obj/floor_decal/techfloor/corner{dir = 1},/obj/floor_decal/techfloor/corner{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"xMC" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/space) -"xMK" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"xMO" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"xMX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xNb" = (/obj/machinery/door/airlock/civilian{name = "Toilets"; req_access = newlist()},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/freezer,/area/vacant/cargo) -"xNe" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall/hull,/area/space) -"xNg" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -24},/obj/machinery/button/holosign{dir = 1; id_tag = "surgery1"; pixel_y = -24},/obj/machinery/button/windowtint{dir = 1; id = "sierra_surgery1"; pixel_x = -8; pixel_y = -24},/turf/simulated/floor/tiled/dark/monotile,/area/medical/surgery) -"xNk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/corner/yellow,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/fore) -"xNv" = (/obj/floor_decal/corner/red{dir = 8},/obj/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/space) -"xNy" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/airless,/area/space) -"xND" = (/obj/machinery/shield_diffuser,/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_7_berth_hatch"; name = "Escape Pod Seven"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/firstdeck/centralstarboard) -"xNH" = (/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xNI" = (/obj/structure/reagent_dispensers/water_cooler{dir = 1},/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"xNM" = (/obj/structure/bed/chair/padded/blue{dir = 8},/obj/floor_decal/techfloor{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"xOd" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "AI Maintenance"},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/turret_protected/ai_upload) -"xOe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light/spot{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xOf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/space) -"xOg" = (/turf/simulated/floor/tiled/techfloor,/area/space) -"xOp" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet{pixel_x = -10},/obj/structure/filingcabinet,/obj/structure/filingcabinet{pixel_x = 10},/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/folder/red{pixel_x = -3; pixel_y = 4},/obj/item/folder/blue{pixel_x = 5; pixel_y = 5},/obj/item/folder/blue{pixel_x = 5; pixel_y = 5},/obj/item/folder/blue{pixel_x = 5; pixel_y = 5},/obj/item/folder,/obj/item/folder,/obj/item/folder/nt,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xOs" = (/obj/wallframe_spawn/reinforced/polarized,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"xOH" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"xOK" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/exploration_shuttle/cockpit) -"xOM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/space) -"xOR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"xOY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"xPa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xPb" = (/obj/floor_decal/borderfloor/corner{dir = 8},/obj/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/center) -"xPe" = (/obj/structure/table/standard,/obj/item/folder/yellow,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 8; pixel_y = -27},/obj/floor_decal/corner/yellow/half,/turf/simulated/floor/tiled,/area/quartermaster/office) -"xPm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "td_port"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xPo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"xPp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"xPs" = (/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2{dir = 9},/obj/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/space) -"xPv" = (/obj/floor_decal/industrial/traffic{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xPy" = (/obj/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"xPF" = (/obj/structure/table/rack,/obj/item/storage/firstaid/fire{pixel_y = 10},/obj/item/storage/firstaid/trauma,/obj/item/storage/firstaid/o2{pixel_y = -10},/obj/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/equipstorage) -"xPG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/office/rd) -"xPH" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"xPM" = (/obj/machinery/pointdefense{initial_id_tag = "sierra_main_pd"},/obj/structure/cable/green,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xPO" = (/obj/fluid_mapped,/obj/item/clothing/under/swimsuit/blue,/obj/item/beach_ball,/obj/item/bananapeel,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"xPU" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/civilian{id_tag = "shower2"; name = "Second Private Shower"},/turf/simulated/floor/tiled/white/monotile,/area/space) -"xQg" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"xQm" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/civilian{dir = 8; name = "Cryo Storage"},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xQy" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/space) -"xQE" = (/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/table/standard,/obj/structure/closet/medical_wall/filled{pixel_y = 24},/obj/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled,/area/rnd/research) -"xQF" = (/obj/wallframe_spawn/reinforced/no_grille,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/space) -"xQL" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"xQT" = (/obj/machinery/light_switch{pixel_x = -6; pixel_y = 28},/obj/machinery/airlock_sensor/airlock_interior{id_tag = "xenohight_airlock_sensor_inner"; master_tag = "xenohight_airlock"; pixel_x = 5; pixel_y = 29; req_access = list("ACCESS_XENOBIO")},/obj/structure/railing/mapped,/obj/structure/railing/mapped{dir = 4},/turf/simulated/open,/area/space) -"xQZ" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light/spot{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"xRa" = (/turf/simulated/wall/prepainted,/area/space) -"xRc" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/space) -"xRf" = (/obj/machinery/door/window{autoset_access = 0; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/borderfloorblack{dir = 8},/obj/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled/white,/area/rnd/misc_lab) -"xRA" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/decal/cleanable/cobweb{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xRB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled/dark,/area/space) -"xRM" = (/obj/structure/railing/mapped,/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/turf/simulated/floor/tiled/white,/area/space) -"xRO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"xRU" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/yellow/border{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/storage/box/glasses,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xSc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/corner_techfloor_grid,/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/bluespace) -"xSl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/aftstarboard) -"xSm" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xSo" = (/obj/floor_decal/borderfloorblack{dir = 10},/obj/floor_decal/borderfloorblack/corner2{dir = 9},/obj/structure/flora/pottedplant/orientaltree,/turf/simulated/floor/tiled/dark,/area/space) -"xSp" = (/obj/structure/synthesized_instrument/synthesizer/piano,/obj/machinery/alarm{pixel_y = 24},/obj/floor_decal/spline/fancy/black{dir = 1},/turf/simulated/floor/wood/maple,/area/space) -"xSr" = (/obj/structure/railing/mapped{dir = 1},/obj/structure/table/woodentable_reinforced/walnut,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/storage/box/donut,/turf/simulated/floor/wood/walnut,/area/space) -"xSt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/space) -"xSy" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"xSA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xSF" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/black/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"xSK" = (/obj/structure/bed/chair/armchair/brown,/turf/simulated/floor/wood/walnut,/area/space) -"xSL" = (/obj/structure/bed/chair/wood/walnut{dir = 1},/obj/structure/sign/poster{pixel_x = 32},/turf/simulated/floor/carpet,/area/space) -"xSX" = (/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"xTc" = (/obj/floor_decal/corner/green{dir = 1},/obj/floor_decal/corner/purple,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora) -"xTj" = (/turf/simulated/floor/tiled/white,/area/medical/staging) -"xTl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) -"xTq" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor/orange,/obj/structure/window/boron_reinforced{dir = 1},/obj/structure/railing/mapped,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xTs" = (/obj/floor_decal/industrial/outline/yellow,/obj/machinery/mining/drill,/turf/simulated/floor/tiled/monotile,/area/quartermaster/expedition/storage) -"xTt" = (/obj/item/stool/padded,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xTv" = (/obj/structure/hygiene/shower{dir = 4; pixel_x = -2},/obj/structure/curtain/open/shower{opacity = 1},/obj/item/bikehorn/rubberducky,/obj/item/soap,/obj/structure/closet/walllocker{pixel_x = -28},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/space) -"xTC" = (/obj/structure/table/woodentable_reinforced/ebony,/obj/floor_decal/carpet/blue{dir = 4},/obj/floor_decal/carpet/blue,/obj/floor_decal/carpet/blue{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/folder/nt,/turf/simulated/floor/carpet/blue,/area/space) -"xTD" = (/obj/machinery/recharge_station,/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/space) -"xTI" = (/obj/floor_decal/corner/red/border{dir = 6},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"xTK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xTP" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"xTZ" = (/turf/simulated/floor/tiled/techfloor/grid,/area/assembly/robotics) -"xUd" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"xUe" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xUf" = (/obj/machinery/vending/weeb{dir = 8},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 6},/obj/floor_decal/corner/lime/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/space) -"xUo" = (/obj/machinery/door/firedoor,/obj/wallframe_spawn/reinforced,/obj/machinery/door/blast/shutters{density = 0; dir = 8; icon_state = "shutter0"; id_tag = "hangar_checkpoint_shutters"; name = "Hangar Deck Checkpoint Shutters"; opacity = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/space) -"xUw" = (/turf/simulated/wall/prepainted,/area/janitor) -"xUC" = (/obj/structure/sign/warning/fire{dir = 4; pixel_x = -32},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/maintenance/incinerator) -"xUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/research{dir = 4; name = "Miscellaneous Laboratory"; req_access = newlist()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/rnd/misc_lab) -"xUQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/floor_decal/corner_techfloor_grid{dir = 6},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/floor_decal/techfloor/orange/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/fourthdeck/aft) -"xUT" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/seconddeck/forestarboard) -"xVc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/floor_decal/borderfloor{dir = 4},/obj/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xVe" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/structure/plasticflaps,/obj/machinery/door/firedoor,/turf/simulated/floor,/area/quartermaster/hangar) -"xVg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"xVp" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/structure/railing/mapped{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/space) -"xVJ" = (/obj/structure/sign/warning/fire,/turf/simulated/wall/r_wall/hull,/area/maintenance/thirddeck/aftport) -"xVO" = (/obj/floor_decal/corner/black{dir = 9},/obj/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/bed/chair/comfy/teal{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/space) -"xVQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/storage/tech) -"xVR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"xVS" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/closet/crate/hydroponics/beekeeping,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"xVT" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood/walnut,/area/space) -"xWd" = (/obj/machinery/bodyscanner{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/white/monotile,/area/space) -"xWl" = (/obj/floor_decal/borderfloorblack,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light/spot,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"xWr" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light_switch{pixel_y = 29},/turf/simulated/floor/wood/walnut,/area/space) -"xWt" = (/turf/simulated/floor/tiled/steel_grid,/area/bridge/storage) -"xWu" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng1"; name = "Third Deck Starboard Nacelle Access"; pixel_y = 21; req_access = list("ACCESS_ENGINEERING")},/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/plating,/area/thruster/d3starboard) -"xWx" = (/obj/structure/bed/chair/comfy/green{dir = 1},/turf/simulated/floor/wood,/area/space) -"xWy" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"xWz" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/borderfloor,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/obj/floor_decal/corner/green/border,/turf/simulated/floor/tiled,/area/space) -"xWS" = (/obj/item/stool/padded,/obj/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled/monotile,/area/quartermaster/exploration) -"xWT" = (/obj/paint/black,/turf/simulated/wall/ocp_wall,/area/maintenance/thirddeck/aftport) -"xWW" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/plating,/area/space) -"xWY" = (/obj/machinery/light_switch{pixel_x = -6; pixel_y = 24},/turf/simulated/floor/tiled/dark/monotile,/area/space) -"xWZ" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white/monotile,/area/shuttle/petrov/cockpit) -"xXd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/thirddeck/center) -"xXf" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random_multi/single_item/space_rabbit,/obj/structure/catwalk,/turf/simulated/floor/airless,/area/solar/port) -"xXt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/machinery/light{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/forestarboard) -"xXy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/status_display{pixel_y = -32},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/purple/border,/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/purple/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/center) -"xXG" = (/obj/machinery/door/firedoor,/obj/floor_decal/corner/green/mono,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/virology,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/taperoll/engineering/applied,/turf/simulated/floor/tiled/white/monotile,/area/space) -"xXH" = (/obj/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"xXO" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/turf/simulated/floor/wood/walnut,/area/space) -"xXQ" = (/obj/machinery/door/airlock/civilian{autoset_access = 0; id_tag = "bsa_safe_room"; name = "Toilet"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/space) -"xXX" = (/obj/machinery/door/blast/regular{dir = 2; id_tag = "cChamber1pV"; name = "Chamber Vent"},/obj/machinery/shield_diffuser,/turf/simulated/floor/reinforced{map_airless = 1},/area/thruster/d3starboard) -"xYc" = (/obj/structure/largecrate,/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"xYd" = (/obj/machinery/atmospherics/pipe/simple/hidden/blue,/obj/paint/black,/turf/simulated/wall/r_wall/prepainted,/area/space) -"xYm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics) -"xYo" = (/obj/floor_decal/corner/black{dir = 10},/obj/floor_decal/corner/paleblue/border,/obj/structure/bed/chair/padded/teal{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"xYw" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/reinforced,/area/space) -"xYz" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light_switch{pixel_x = 10; pixel_y = 28},/obj/floor_decal/techfloor{dir = 1},/obj/machinery/camera/network/security{c_tag = "Security - Dock Checkpoint"},/turf/simulated/floor/tiled/techfloor,/area/space) -"xYF" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/wood/walnut,/area/vacant/bar) -"xYH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/floor_decal/industrial/warning/full,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "eng3"; name = "First Deck Starboard Access"; pixel_y = 21},/obj/machinery/atmospherics/valve/shutoff/fuel{dir = 8},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/thruster/d1starboard) -"xYT" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/fourth_deck{c_tag = "Fourth Deck - Fore Hallway Starboard"},/turf/simulated/floor/tiled,/area/hallway/primary/fourthdeck/fore) -"xYV" = (/obj/machinery/light_switch{pixel_x = -24; pixel_y = 12},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/suit_cycler/science,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/eva) -"xYW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"xYX" = (/obj/random_multi/single_item/punitelly,/obj/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/firstdeck/forestarboard) -"xZb" = (/obj/machinery/light{dir = 1},/obj/machinery/power/terminal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/item/storage/toolbox/electrical,/obj/floor_decal/industrial/warning{dir = 4},/obj/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"xZc" = (/obj/structure/bed/chair/padded/yellow{dir = 8},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xZd" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"xZk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"xZt" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/glass/maintenance{autoset_access = 0},/turf/simulated/floor/tiled/monotile,/area/space) -"xZu" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/floor_decal/techfloor{dir = 10},/obj/floor_decal/techfloor/corner{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xZv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"xZx" = (/obj/machinery/door/airlock/external/escapepod{id_tag = "escape_pod_5_berth_hatch"; name = "Escape Pod Five"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor/orange{dir = 4},/obj/floor_decal/industrial/warning/fulltile,/obj/machinery/door/firedoor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"xZC" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/access_button/airlock_exterior{dir = 1; master_tag = "solar_port"; name = "exterior access button"; pixel_x = -12; pixel_y = 27; req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL")},/turf/simulated/floor/airless,/area/solar/port) -"xZE" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"xZG" = (/obj/floor_decal/carpet/blue2{dir = 8},/obj/floor_decal/carpet/blue2,/obj/floor_decal/carpet/blue2{dir = 10},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -32},/turf/simulated/floor/carpet/blue2,/area/space) -"xZN" = (/turf/simulated/wall/r_wall/prepainted,/area/space) -"xZO" = (/obj/machinery/telecomms/bus/preset_two,/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"xZS" = (/obj/structure/bed/chair/office/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood/walnut,/area/space) -"xZU" = (/obj/floor_decal/corner/purple{dir = 1},/turf/simulated/floor/tiled/white,/area/space) -"xZV" = (/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced/oxygen,/area/thruster/d1starboard) -"xZW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/aftstarboard) -"xZX" = (/obj/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/mess) -"yad" = (/obj/floor_decal/corner/green/bordercee{dir = 4},/obj/machinery/nav_light,/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"yag" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/shuttle/petrov/equipment) -"yah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/wallframe_spawn/no_grille,/turf/simulated/floor/plating,/area/hallway/primary/fourthdeck/center) -"yas" = (/obj/floor_decal/corner/grey/border,/obj/structure/hygiene/sink{dir = 1; pixel_y = 18},/obj/item/storage/mirror{pixel_y = 32},/turf/simulated/floor/tiled/old_tile,/area/crew_quarters/head) -"yav" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/structure/catwalk,/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/space) -"yaz" = (/obj/machinery/atmospherics/pipe/manifold/visible/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"yaA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/expedition) -"yaV" = (/obj/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"yba" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/space) -"ybb" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood/walnut,/area/space) -"ybd" = (/obj/decal/cleanable/dirt,/obj/item/material/shard/shrapnel/titanium,/turf/simulated/floor/plating,/area/space) -"ybl" = (/obj/floor_decal/borderfloorblack,/obj/floor_decal/borderfloorblack/corner2,/turf/simulated/floor/tiled/dark,/area/bridge/hallway) -"ybq" = (/obj/structure/closet/lawcloset,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark/monotile,/area/space) -"ybs" = (/obj/random/obstruction,/obj/structure/railing/mapped{dir = 1},/turf/simulated/floor/plating,/area/space) -"ybu" = (/obj/wallframe_spawn/reinforced/polarized/no_grille{id = "pathfinder_office"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/space) -"ybz" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"ybD" = (/obj/structure/table/standard,/obj/item/book/manual/rust_engine,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal{dir = 4},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/vacant/prototype/control) -"ybM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/catwalk_plated,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"ybQ" = (/obj/structure/table/reinforced,/obj/item/storage/box/freezer,/obj/item/reagent_containers/spray/sterilizine,/obj/floor_decal/industrial/outline/yellow,/obj/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = -22},/obj/machinery/alarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/white/monotile,/area/space) -"ybR" = (/obj/machinery/papershredder,/turf/simulated/floor/lino,/area/space) -"ybU" = (/obj/floor_decal/techfloor/orange,/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ybV" = (/obj/floor_decal/corner/purple/border{dir = 4},/obj/floor_decal/corner/purple/bordercorner{dir = 8},/obj/floor_decal/corner/purple/bordercorner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/rnd/locker) -"ybW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/seconddeck/forestarboard) -"ybX" = (/obj/structure/railing/mapped{dir = 4},/obj/structure/largecrate,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) -"ycb" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled/dark,/area/space) -"ych" = (/obj/landmark{name = "JoinLateCryo"},/obj/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/space) -"ycn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/corner/grey/border,/obj/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled/dark/monotile,/area/crew_quarters/galley) -"ycr" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ycs" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lime/border{dir = 1},/obj/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/floor_decal/borderfloor/corner2{dir = 4},/obj/floor_decal/borderfloor/corner2{dir = 1},/obj/floor_decal/corner/lime/bordercorner2{dir = 4},/obj/floor_decal/corner/lime/bordercorner2{dir = 1},/obj/structure/sign/deck/second{pixel_y = 35},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ycv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/center) -"ycx" = (/obj/shuttle_landmark/ert/dock,/turf/space,/area/space) -"ycK" = (/obj/floor_decal/corner/red{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/decal/cleanable/cobweb{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"ycV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/blue{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/button/blast_door{id_tag = "xenobioaqua"; name = "Aqua Containment Blast Doors"; pixel_x = 6; pixel_y = 29; req_access = list("ACCESS_RESEARCH")},/obj/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/space) -"ycX" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 8},/obj/random/maintenance,/turf/simulated/floor/plating,/area/space) -"ycY" = (/obj/floor_decal/techfloor/orange{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/tcommsat/computer) -"ydd" = (/obj/floor_decal/corner/red{dir = 1},/obj/structure/holoplant,/turf/simulated/floor/tiled/dark,/area/space) -"ydf" = (/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/lime/border{dir = 8},/obj/floor_decal/borderfloor/corner2{dir = 10},/obj/floor_decal/corner/lime/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/center) -"ydg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftport) -"ydi" = (/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"ydn" = (/obj/floor_decal/borderfloor/corner{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/railing/mapped{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ydo" = (/obj/floor_decal/techfloor{dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/centralport) -"ydu" = (/obj/floor_decal/corner/paleblue,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"ydK" = (/obj/floor_decal/corner/lime/half{dir = 8},/obj/floor_decal/corner/lime{dir = 6},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/space) -"ydR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/floor_decal/corner/purple/border,/turf/simulated/floor/tiled/monotile,/area/rnd/research) -"ydV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/window/brigdoor/southright{dir = 4; id = "Cell 2"; name = "Cell two"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "security_permabrig_second_cell_shutters"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "security_lockdown"; name = "Security Department Lockdown"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_ridged,/area/space) -"ydX" = (/obj/floor_decal/spline/fancy/wood{dir = 10},/obj/structure/railing/mapped,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/railing/mapped{dir = 8},/obj/structure/bed/chair/wood/maple{dir = 1},/turf/simulated/floor/wood/bamboo,/area/space) -"ydZ" = (/obj/machinery/door/blast/regular{dir = 4; id_tag = "ship_sensor"; name = "Ship Sensor Blastdoor"},/turf/simulated/floor/reinforced{map_airless = 1},/area/bridge) -"yeh" = (/obj/floor_decal/spline/fancy/wood{dir = 4},/obj/structure/table/woodentable/mahogany,/obj/floor_decal/carpet/red{dir = 4},/obj/item/material/ashtray/plastic{pixel_x = 5; pixel_y = 3},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet/red,/area/space) -"yei" = (/obj/structure/railing/mapped,/obj/structure/bed/chair/padded/yellow{dir = 1},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"yel" = (/obj/machinery/computer/shuttle_control/explore/guppy{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 24},/obj/overmap/visitable/ship/landable/guppy,/turf/simulated/floor/tiled/steel_ridged,/area/guppy_hangar/start) -"yen" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/thirddeck/aftstarboard) -"yeq" = (/obj/structure/bed/padded,/obj/item/bedsheet/blue,/obj/structure/curtain/open/bed,/obj/item/device/radio/intercom{dir = 8; pixel_x = 24},/obj/landmark/start{name = "Internal Affairs Agent"},/obj/item/storage/secure/safe{pixel_y = -24},/turf/simulated/floor/wood/walnut,/area/space) -"yev" = (/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/security{c_tag = "Security - Armory"},/turf/simulated/floor/tiled/techfloor,/area/space) -"yew" = (/obj/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/space) -"yez" = (/obj/structure/table/standard,/obj/item/storage/box/autoinjectors,/obj/item/storage/box/beakers,/turf/simulated/floor/plating,/area/space) -"yeA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor{dir = 8},/obj/floor_decal/corner/green/border{dir = 8},/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/space) -"yeL" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/thirddeck/port) -"yeM" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"yeN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood/walnut,/area/space) -"yeP" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/structure/closet/crate,/obj/item/inflatable_dispenser,/obj/item/sealgen_case,/obj/item/stack/material/steel/ten,/obj/item/stack/material/steel/ten,/obj/item/module/power_control,/obj/item/storage/toolbox/mechanical,/obj/item/tape_roll,/turf/simulated/floor/plating,/area/exploration_shuttle/power) -"yeS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/floor_decal/borderfloor,/turf/simulated/floor/tiled/monotile,/area/quartermaster/hangar) -"yeT" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/catwalk_plated,/turf/simulated/floor/plating,/area/quartermaster/hangar) -"yeX" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) -"yfa" = (/obj/floor_decal/spline/fancy/wood{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/ebony,/area/crew_quarters/sleep/bunk) -"yfb" = (/obj/machinery/door/firedoor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/blast/shutters/open{dir = 4; id_tag = "med_to_maint"},/obj/machinery/door/blast/regular/open{dir = 4; id_tag = "med_quar_lock"; name = "Quarantine Blast Doors"},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"yfc" = (/obj/machinery/computer/arcade,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"yfd" = (/obj/structure/railing/mapped,/obj/floor_decal/spline/fancy/black,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass/cut,/area/space) -"yfi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/space) -"yfk" = (/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/barricade,/turf/simulated/floor/tiled/white,/area/space) -"yfl" = (/obj/structure/bed/sofa/r/lime{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/carpet/blue2,/area/space) -"yfw" = (/obj/structure/stairs/west,/turf/simulated/floor/wood/walnut,/area/crew_quarters/lounge) -"yfx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/helium,/obj/floor_decal/techfloor{dir = 5},/obj/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"yfy" = (/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "skipjack_shuttle_dock_airlock_sensor"; master_tag = "skipjack_shuttle_dock_airlock"; pixel_x = -24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{dir = 1; id_tag = "skipjack_shuttle_dock_airlock_pump"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/space) -"yfF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/industrial/warning,/obj/item/device/radio/intercom{pixel_y = 26},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) -"yfH" = (/obj/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/assembly/chargebay) -"yfO" = (/obj/structure/railing/mapped,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/space) -"yfS" = (/obj/floor_decal/techfloor,/obj/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/chamber) -"ygl" = (/obj/machinery/atmospherics/omni/filter{tag_east = 2; tag_north = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ygp" = (/obj/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark/monotile,/area/medical/sleeper) -"ygt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/floor_decal/borderfloorblack/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"ygz" = (/obj/structure/sign/bluecross_2,/turf/simulated/wall/prepainted,/area/vacant/infirmary) -"ygC" = (/obj/floor_decal/borderfloorblack{dir = 4},/obj/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/space) -"ygD" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/binary/pump/on{dir = 8; target_pressure = 200},/obj/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/space) -"ygM" = (/obj/structure/bed/chair/padded/blue{dir = 4},/obj/floor_decal/techfloor{dir = 9},/obj/floor_decal/techfloor/orange/corner{dir = 4},/obj/structure/sign/warning/pods/south{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/safe_room/firstdeck) -"ygP" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/obj/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/engineering/atmos/storage) -"ygQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/maintenance/firstdeck/aftport) -"ygS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/structure/railing/mapped{dir = 8},/obj/random/coin,/turf/simulated/floor/plating,/area/maintenance/fourthdeck/starboard) -"ygU" = (/obj/floor_decal/corner/black/half,/obj/floor_decal/corner/red/border,/obj/structure/closet/walllocker{pixel_y = -28},/turf/simulated/floor/tiled,/area/crew_quarters/gym) -"ygV" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/westleft{dir = 1; name = "Commissary rack"; req_access = newlist()},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/floor_decal/corner/black/full,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/light,/obj/random/single/lighter,/turf/simulated/floor/tiled,/area/crew_quarters/commissary) -"yha" = (/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/red/border{dir = 1},/obj/machinery/computer/modular/preset/security,/turf/simulated/floor/tiled/dark,/area/space) -"yhd" = (/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random_multi/single_item/space_rabbit,/turf/simulated/floor/airless,/area/space) -"yhh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fourthdeck/aft) -"yhr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/space) -"yhv" = (/obj/machinery/atmospherics/valve/digital{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"yhD" = (/obj/machinery/door/airlock/hatch/maintenance,/obj/machinery/door/firedoor,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/hallway/primary/firstdeck/center) -"yhF" = (/obj/floor_decal/techfloor{dir = 4},/obj/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/space) -"yhP" = (/obj/floor_decal/spline/fancy/wood{dir = 1},/obj/structure/bed/sofa/l/brown,/obj/floor_decal/carpet{dir = 1},/turf/simulated/floor/carpet,/area/space) -"yhR" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/space) -"yhW" = (/obj/structure/table/rack,/obj/random/plushie,/turf/simulated/floor/plating,/area/maintenance/thirddeck/starboard) -"yhZ" = (/obj/machinery/door/airlock/external{frequency = 1379; id_tag = "ai_core_outer"; locked = 1; name = "AI Core Internal Access"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ai_core_airlock"; name = "exterior access button"; pixel_x = 24; pixel_y = 10; req_access = list("ACCESS_AI_UPLOAD")},/turf/simulated/floor/tiled/dark/monotile,/area/turret_protected/ai) -"yia" = (/obj/floor_decal/corner/lime/mono,/obj/floor_decal/industrial/outline/yellow,/obj/machinery/vending/soda,/obj/item/device/radio/intercom{pixel_y = 26},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/fore) -"yib" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/space) -"yic" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass/cut,/area/space) -"yid" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/space) -"yih" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/engine_room) -"yiq" = (/obj/machinery/telecomms/broadcaster/preset_right,/obj/structure/railing/mapped{dir = 8},/obj/machinery/camera/network/command{c_tag = "Telecommunications - Server Room - East"; dir = 1; network = list("Command","Engineering")},/turf/simulated/floor/bluegrid,/area/tcommsat/chamber) -"yiE" = (/obj/floor_decal/techfloor{dir = 1},/obj/floor_decal/techfloor,/obj/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch/maintenance{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/hydroponics) -"yiL" = (/obj/floor_decal/corner/grey/full,/obj/structure/bed/chair/office/comfy/blue{dir = 1},/obj/floor_decal/borderfloorblack{dir = 1},/turf/simulated/floor/tiled/dark,/area/space) -"yiN" = (/obj/structure/curtain{color = "#aa0000"},/obj/floor_decal/spline/fancy/black{dir = 10},/turf/simulated/floor/wood/maple,/area/space) -"yiR" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"yiT" = (/obj/structure/iv_stand,/turf/simulated/floor/plating,/area/vacant/infirmary) -"yiV" = (/obj/floor_decal/borderfloor{dir = 1},/obj/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/space) -"yiX" = (/obj/structure/sign/warning/vent_port{dir = 4; pixel_x = -32},/turf/simulated/floor/reinforced{map_airless = 1},/area/space) -"yiZ" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/space) -"yjb" = (/obj/structure/catwalk,/obj/structure/railing/mapped,/turf/simulated/open,/area/space) -"yjh" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"yjA" = (/obj/structure/catwalk,/obj/floor_decal/borderfloor{dir = 1},/obj/random/trash,/obj/machinery/light_construct,/turf/simulated/floor/plating,/area/space) -"yjK" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/floor_decal/techfloor{dir = 8},/obj/floor_decal/techfloor{dir = 4},/turf/simulated/floor/plating,/area/maintenance/thirddeck/port) -"yjR" = (/obj/floor_decal/spline/fancy/black{dir = 5},/obj/structure/bed/sofa/l/brown{dir = 8},/turf/simulated/floor/wood/mahogany,/area/space) -"yjU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloorblack{dir = 1},/obj/floor_decal/corner/green/border{dir = 1},/obj/structure/bed/chair/office/green{dir = 1},/obj/decal/cleanable/dirt,/turf/simulated/floor/tiled/white,/area/space) -"yka" = (/obj/floor_decal/corner/green/bordercorner{dir = 4},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"yke" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/floor_decal/borderfloor,/obj/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/floor_decal/borderfloor/corner2,/obj/floor_decal/corner/red/bordercorner2,/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/steel_grid,/area/space) -"yko" = (/obj/structure/table/rack{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/breath,/obj/item/tank/oxygen,/obj/machinery/camera/network/medbay{c_tag = "Virology - Atmospherics Storage"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/space) -"ykB" = (/obj/structure/catwalk,/obj/floor_decal/industrial/warning/cee{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{dir = 8; id_tag = "sd_port_pump"},/turf/simulated/floor/plating,/area/maintenance/seconddeck/foreport) -"ykD" = (/obj/floor_decal/corner/black/full,/obj/structure/bed/chair/padded/blue{dir = 8},/obj/item/device/radio/intercom{dir = 1; pixel_y = -29},/turf/simulated/floor/tiled/dark,/area/space) -"ykE" = (/obj/shuttle_landmark/ninja/deck5,/turf/space,/area/space) -"ykI" = (/obj/fluid_mapped,/mob/living/simple_animal/aquatic/fish/judge,/turf/simulated/floor/beach/sand,/area/space) -"ykQ" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/wall/r_wall/hull,/area/space) -"ylh" = (/obj/floor_decal/corner/yellow/three_quarters{dir = 4},/obj/structure/flora/pottedplant/floorleaf,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/space) -"ylq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/floor_decal/corner/green/border{dir = 8},/obj/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled/old_cargo,/area/crew_quarters/head) -"ylw" = (/obj/structure/catwalk,/obj/structure/rubble,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) -"ylx" = (/obj/structure/closet/emcloset,/obj/item/clothing/head/kitty/fake,/obj/item/clothing/head/philosopher_wig{color = "orange"},/obj/item/mirror,/obj/item/lipstick,/obj/item/lipstick/random,/obj/item/lipstick/random,/obj/item/clothing/under/schoolgirl,/obj/random/cash,/obj/item/storage/toolbox/mechanical,/obj/random/cash,/obj/item/modular_computer/tablet/lease/preset/command,/turf/simulated/floor/wood/walnut,/area/maintenance/firstdeck/foreport) -"yly" = (/turf/simulated/wall/prepainted,/area/rnd/research) -"ylA" = (/obj/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/seconddeck/foreport) -"ylF" = (/turf/simulated/floor/wood/walnut,/area/space) -"ylP" = (/obj/machinery/computer/modular/preset/dock{dir = 4},/obj/floor_decal/corner/mauve/mono,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark/monotile,/area/bridge) -"ylS" = (/obj/floor_decal/borderfloorblack{dir = 8},/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/bridge) -"ylZ" = (/obj/wallframe_spawn/reinforced/polarized,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/chapel/main) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aag" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"aap" = ( +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"aaq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensor_name = "Tank"; + sensor_tag = "co2_sensor" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"aau" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"aaB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"aaG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"aaI" = ( +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"aaR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/warning/airlock{ + color = "#ff9900"; + name = "\improper WAY TO SPACE"; + pixel_y = 26 + }, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"aaU" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 28 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"abj" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"abk" = ( +/obj/structure/handrail, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"abq" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"abs" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/holoplant, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"abt" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/vending/wallmed2{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"abu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"aby" = ( +/obj/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id_tag = "AICore"; + name = "AI Core Shutter Control"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Chamber turret control"; + pixel_x = -32; + pixel_y = 32; + control_area = list(/area/turret_protected/ai) + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/item/device/radio/intercom/custom{ + pixel_y = 22 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/greengrid, +/area/turret_protected/ai) +"abB" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"abI" = ( +/obj/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"abK" = ( +/obj/structure/sign/warning/radioactive{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"abM" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"abP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/tele_beacon, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_teleport) +"abW" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/folder/nt, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"ace" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"acf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"act" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"acw" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"acE" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"acJ" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"acN" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"acO" = ( +/obj/machinery/power/smes/buildable/preset/sierra/shuttle{ + RCon_tag = "Shuttle - Guppy" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"acP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"acR" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"acV" = ( +/obj/floor_decal/floordetail/edgedrain{ + dir = 1 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"adh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"adp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"adw" = ( +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"adx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"adA" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1443; + id = "toxin_in"; + use_power = 1 + }, +/obj/machinery/sparker{ + pixel_x = 21 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"adB" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/window/boron_reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"adC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"adI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"adK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"adM" = ( +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"adO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + name = "Chief Engineer Maintenance"; + secured_wires = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/office/ce) +"adU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_maint) +"adZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"aec" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"aee" = ( +/obj/random/obstruction, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"aeq" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aex" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"aeI" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"aeO" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/space, +/area/space) +"aeS" = ( +/obj/structure/table/standard, +/obj/item/trash/cigbutt, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"aeU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_atmos_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/structure/catwalk, +/obj/structure/hygiene/drain, +/obj/structure/hygiene/shower{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aeW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hop_road_shutters"; + name = "HoP Line's Shutters"; + opacity = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"afc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"afk" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/small/sugar{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"afn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"afq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"afz" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"afD" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"afE" = ( +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"afQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/item/sticky_pad/random, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"afT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"afU" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"aga" = ( +/obj/structure/table/marble, +/obj/structure/window/reinforced, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"age" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/keycard_auth/sierra{ + pixel_x = -24 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"agA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"agF" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/geiger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"agG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"agI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"agK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"agL" = ( +/obj/structure/closet/crate/present, +/obj/item/stack/tile/carpet/fifty, +/obj/item/stack/tile/carpetblue/fifty, +/obj/item/stack/tile/carpetblue2/fifty, +/obj/item/stack/tile/carpetblue3/fifty, +/obj/item/stack/tile/carpetgreen/fifty, +/obj/item/stack/tile/carpetmagenta/fifty, +/obj/item/stack/tile/carpetorange/fifty, +/obj/item/stack/tile/carpetpurple/fifty, +/obj/item/stack/tile/carpetred/fifty, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/spline/plain/yellow{ + dir = 6 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"agO" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/port) +"agR" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"ahe" = ( +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/starboard) +"ahf" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"ahn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"ahx" = ( +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"ahy" = ( +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "fuel_in"; + name = "Fuel Supply Control"; + output_tag = "fuel_out"; + sensor_name = "Fuel Tank"; + sensor_tag = "fuel_sensor" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"ahA" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = -9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"ahQ" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/bed/chair/pew/left, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"ahU" = ( +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#46698c"; + color = "#46698c" + }, +/turf/simulated/open, +/area/hallway/primary/bridgedeck/central_stairwell) +"aif" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"aim" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/cockpit) +"ait" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"aiu" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"aiw" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"aiA" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"aiB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"aiP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/open, +/area/medical/staging) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"aiS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"ajb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"ajd" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/cell3) +"ajj" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ajl" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"ajo" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"ajp" = ( +/obj/machinery/air_sensor{ + id_tag = "calypso_out" + }, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "calypso_shuttle_pump_out_external" + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"ajs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"aju" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); + secured_wires = 1; + autoset_access = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/dockcheck) +"ajw" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"ajF" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood/walnut/twentyfive, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"ajL" = ( +/obj/machinery/door/airlock/vault/bolted{ + autoset_access = 0; + id_tag = "medsafe"; + name = "Medical Safe Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"ajO" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"ajS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ajY" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/forestarboard) +"akd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"akf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "hangar_atmos_storage"; + name = "Storage Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"akj" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"akl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"akm" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_4_pump" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_4"; + name = "escape pod four controller"; + pixel_x = -20; + tag_door = "escape_pod_4_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"akp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/sofa/l/red, +/obj/machinery/button/alternate/door/bolts{ + dir = 4; + id_tag = "bar_private_room_2"; + name = "Lock"; + pixel_x = -24; + pixel_y = -7 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"aks" = ( +/obj/machinery/light, +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"akx" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/stun, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"akz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"akC" = ( +/obj/structure/closet/coffin, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"akE" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/carpet/green{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/teapot, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"akR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"akZ" = ( +/obj/floor_decal/industrial/traffic{ + dir = 6; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"alw" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/medical/office) +"alA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"alE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"alH" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/crucian_hangar/start) +"alI" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"alJ" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/firstdeck/center) +"alL" = ( +/obj/machinery/air_sensor/nacelle/fourth/plasma, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"alN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"alS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/floor_decal/industrial/hatch/yellow, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"alU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"alX" = ( +/obj/machinery/disperser/front{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/command/bsa) +"alY" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "petrov_shuttle_inner"; + name = "Petrov Interior Access"; + req_access = list("ACCESS_PETROV_HELM"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"alZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos) +"amf" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/window/boron_reinforced{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"amj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"amo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ams" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"amt" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"amx" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"amy" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"amA" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/range) +"amK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"amQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Adjutants Dorm" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants/cobed) +"amR" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"amS" = ( +/obj/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"and" = ( +/obj/structure/bed/chair/rounded/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"anf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"ang" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"ani" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/paint/nt_white, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"ano" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/lift/medical, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"anr" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"anu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"anv" = ( +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"anD" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"anF" = ( +/turf/simulated/floor/plating, +/area/space) +"anQ" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"anW" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"anX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"aoe" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bsa_space"; + name = "Unknown Compartament Hatch" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/command/bsa) +"aoh" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"aoj" = ( +/obj/floor_decal/corner/blue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"aoq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/material/ashtray/glass, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"aoB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"aoC" = ( +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"aoE" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/south) +"aoG" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"aoH" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"aoN" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"aoX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"apa" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"apf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"api" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"apl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/foreport) +"apm" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"apu" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"apv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"apA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"apB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"apD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"apE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/airlock) +"apQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "hos_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hos) +"apU" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 80 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"aqb" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"aqc" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/flasher{ + dir = 8; + id_tag = "ai_core"; + pixel_x = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aql" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"aqr" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/structure/flora/pottedplant/floorleaf, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"aqz" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"aqA" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s"; + dir = 1 + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod11/station) +"aqC" = ( +/obj/structure/bookcase/manuals/security, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 9; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"aqF" = ( +/obj/machinery/air_sensor/nacelle/first/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"aqH" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"aqI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/teleporter) +"aqJ" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"aqL" = ( +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/machinery/light/small, +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"aqT" = ( +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aqW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"arb" = ( +/obj/structure/cable/green, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/rnd/development) +"are" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"arm" = ( +/obj/floor_decal/corner/paleblue, +/obj/machinery/vending/snack, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"arq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/status_display{ + pixel_y = 32; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"arC" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"arG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"arN" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id_tag = "xenobio2_vent"; + name = "Chamber Vent" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"arO" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"arQ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"arU" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/hos) +"asc" = ( +/obj/machinery/door/airlock/atmos{ + name = "Safe Room Atmospherics" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"asm" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"aso" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"asr" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/lime/half{ + dir = 4 + }, +/obj/floor_decal/corner/lime{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"ast" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/recharge_station, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"asI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Starboard Hallway" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"atf" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"atj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"atl" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"ato" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"atp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"atq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"atr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Hydroponics - Aft"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"att" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"atw" = ( +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "engine_airlock"; + master_tag = "engine_airlock_interior_sensor"; + pixel_x = -24; + pixel_y = -24 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"atx" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"atC" = ( +/obj/structure/closet/firecloset, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_access"; + name = "Virology Lab Access Console"; + req_access = list("ACCESS_VIRO"); + dir = 4; + pixel_x = -24 + }, +/obj/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"atF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/emitter{ + desc = "A massive, heavy-duty industrial laser. This design is a fixed installation, capable of shooting in only one direction. It has a label on it reading 'SRV Petrov Analysis Lab.'"; + name = "emitter (Petrov)"; + req_lock_access = list("ACCESS_TORCH_PETROV_ANALYSIS") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"atH" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Isolation Cell Three"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"atJ" = ( +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"atK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"atR" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 1; + id_tag = "solar_port_pump" + }, +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"atV" = ( +/obj/structure/table/marble, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/shipping_wall/filled{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"atW" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"auk" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"aul" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/psi_monitor, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"aun" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/head) +"aus" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"aut" = ( +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"auv" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"aux" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/binary/pump/high_power{ + target_pressure = 10000 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"auE" = ( +/obj/structure/iv_stand, +/obj/structure/roller_bed, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"auH" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "h2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/engineering/atmos) +"auN" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"auU" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"auV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"avg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"avh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"avi" = ( +/turf/unsimulated/mask, +/area/hallway/primary/seconddeck/center) +"avj" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"avo" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_smes) +"avt" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "robotics_surgery" + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"avJ" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"avL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"avN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"avQ" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"awb" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/bookcase/manuals/security, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"awc" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"awl" = ( +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"awr" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"awD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Main Dock"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"awH" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/device/toner{ + pixel_y = 12 + }, +/obj/item/device/toner{ + pixel_y = 12 + }, +/obj/item/device/toner{ + pixel_y = 12 + }, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"awJ" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"awP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chemistry"; + sort_type = "Chemistry" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"awQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng2_outer"; + name = "Third Deck Port Nacelle Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d3port) +"awR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"awT" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/bridgedeck/aft) +"awW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/corner/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"axe" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"axm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/space_heater{ + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"axn" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"axq" = ( +/obj/structure/table/standard, +/obj/item/device/scanner/health, +/obj/item/device/geiger, +/obj/floor_decal/corner/black/three_quarters, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"axt" = ( +/obj/machinery/suit_cycler/science, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"axy" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"axC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/fore) +"axL" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"axO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"axP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"axW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"axY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"axZ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"ayl" = ( +/obj/structure/table/standard, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 9 + }, +/obj/item/paper_bin, +/obj/item/pen/multi/cmd/hop, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"ayu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Central Hallway Two" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"ayw" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"ayy" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"ayB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"ayD" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/body_scan_display{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"ayJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"ayY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"azd" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"azi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"azj" = ( +/obj/structure/table/rack, +/obj/random/junkfood, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/starboard) +"azk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"azA" = ( +/obj/machinery/light/small, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"azH" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"azQ" = ( +/obj/machinery/optable, +/obj/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"azU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"azX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"aAf" = ( +/turf/simulated/open, +/area/rnd/xenobiology/water_cell) +"aAi" = ( +/obj/floor_decal/carpet/blue2, +/obj/structure/bed/padded, +/obj/item/bedsheet/hop, +/obj/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"aAp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/half, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"aAt" = ( +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"aAw" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"aAz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"aAB" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"aAD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"aAE" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"aAJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"aAO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/wallframe_spawn/reinforced_phoron/hull, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"aAP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"aAU" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/floor_decal/steeldecal/steel_decals10, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/obj/item/bikehorn/rubberducky, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/structure/hygiene/drain, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"aAY" = ( +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"aBc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"aBe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"aBk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 1; + display_name = "Port Dock A"; + frequency = 1380; + id_tag = "skipjack_shuttle_dock_airlock"; + pixel_x = 32; + req_access = list("ACCESS_EXTERNAL"); + pixel_y = -29 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"aBp" = ( +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"aBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"aBA" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"aBC" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"aBD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"aBE" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"aBJ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/range) +"aBK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/sign/deck/fourth{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"aBL" = ( +/obj/machinery/suit_storage_unit/atmos/alt, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - EVA" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"aBN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"aBP" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"aBR" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"aCb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"aCc" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aCf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"aCl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aCo" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"aCp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/floor_decal/corner/grey/diagonal, +/obj/random/clipboard, +/obj/random/clipboard{ + pixel_y = 3; + pixel_x = 3 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"aCs" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"aCu" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/cell1) +"aCw" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"aCD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/orange, +/area/security/range) +"aCE" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/blast/regular/open{ + id_tag = "eng_lockdown_emg1"; + name = "Emergency Exit" + }, +/turf/simulated/floor/plating, +/area/engineering/engineering_monitoring) +"aCF" = ( +/obj/shuttle_landmark/skipjack/deck3, +/turf/space, +/area/space) +"aCG" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"aCL" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"aCM" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"aCR" = ( +/turf/simulated/wall/r_wall/hull, +/area/medical/virology) +"aCX" = ( +/obj/machinery/flasher{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"aDa" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"aDg" = ( +/obj/landmark{ + name = "lightsout" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"aDp" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/camera/network/fourth_deck{ + dir = 4; + c_tag = "Fourth Deck - Central Stairwell" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"aDt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"aDv" = ( +/obj/machinery/camera/network/second_deck{ + c_tag = "Chapel - Mass Driver" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aDB" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"aDF" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"aDI" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"aDL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"aDM" = ( +/obj/structure/flora/seaweed, +/obj/fluid_mapped, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"aDN" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"aDT" = ( +/obj/structure/bed/chair/armchair/blue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"aDY" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"aEa" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"aEe" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/escapepod{ + dir = 4; + id_tag = "escape_pod_3_berth_hatch"; + name = "Escape Pod Three" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"aEf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/white{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"aEv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"aEy" = ( +/obj/machinery/door/airlock/maintenance{ + autoset_access = 0; + name = "Security Maintenance"; + req_access = list("ACCESS_SECURITY") + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/range) +"aEz" = ( +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "bsa_door2"; + name = "Obstruction Field Disperser Blast Door"; + pixel_x = 24; + req_access = list("ACCESS_GUN") + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"aEI" = ( +/obj/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/cap/visible/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/cap/visible/fuel, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"aEL" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/bed/chair/padded/red, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"aEM" = ( +/obj/structure/bed/chair/office/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"aFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"aFg" = ( +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"aFi" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Power Storage"; + req_access = newlist(); + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/auxpower) +"aFq" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"aFs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"aFz" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/item/sticky_pad/random, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"aFE" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"aFM" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"aFO" = ( +/obj/structure/girder, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/curtain/bed, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"aFR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Restroom" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/head) +"aFT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"aFW" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/camera, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"aGc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/button/ignition{ + id_tag = "Incinerator"; + pixel_x = 24; + pixel_y = 6; + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_x = 24; + pixel_y = -6; + tag_exterior_door = "incinerator_airlock_exterior"; + tag_interior_door = "incinerator_airlock_interior"; + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"aGh" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aGi" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"aGj" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_1" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"aGk" = ( +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"aGs" = ( +/obj/machinery/jukebox/custom_tape/old, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"aGH" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/fancy/crayons, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"aGI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"aGJ" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"aGP" = ( +/obj/structure/lattice, +/obj/structure/closet/crate, +/turf/simulated/open, +/area/maintenance/firstdeck/aftstarboard) +"aGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"aGT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Lounge" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"aHg" = ( +/obj/structure/rubble, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"aHo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/roller_bed, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"aHE" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"aHK" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"aHL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/telecomms/traffic{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"aHM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/tcommsat/chamber) +"aHV" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"aIe" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"aIi" = ( +/obj/machinery/door/airlock/research{ + autoset_access = 0; + frequency = 1379; + id_tag = "xeno_airlock_outer"; + name = "Xenobiology Access"; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aIl" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"aIp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"aIq" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/foreport) +"aIC" = ( +/obj/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"aIH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"aIL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"aIM" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"aIO" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"aIS" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/dogbed, +/mob/living/simple_animal/passive/corgi/puppy, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"aIT" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/civilian{ + name = "Toilet"; + id_tag = "old_maintaince_privatedorm_toilet" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/dormintories) +"aIU" = ( +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"aIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/space) +"aJb" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/forestarboard) +"aJd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"aJi" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"aJv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"aJD" = ( +/obj/structure/table/steel, +/obj/machinery/button/blast_door{ + id_tag = "concheckwindow"; + name = "Checkpoint Shutter Control"; + pixel_x = 5; + pixel_y = 6 + }, +/obj/machinery/button/blast_door{ + id_tag = "outercheckwindow"; + name = "Outer Checkpoint Shutter Control"; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/cable/green, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"aJG" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"aJI" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"aJJ" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"aJL" = ( +/obj/machinery/space_heater, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"aKa" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Cryo Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/sleep/cryo) +"aKe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"aKh" = ( +/obj/machinery/door/window/westright{ + name = "Xenoflora Environment"; + req_access = newlist(); + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Xenoflora Environment" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/xenoflora) +"aKj" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/lava/cyan, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"aKm" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "PetrovBiohazard"; + name = "Petrov Biohazard Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/airlock) +"aKn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"aKq" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"aKt" = ( +/obj/structure/iv_stand, +/obj/machinery/body_scan_display{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"aKy" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"aKG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"aKQ" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/machinery/papershredder, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"aKX" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"aLa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"aLc" = ( +/obj/structure/bed/chair/office/comfy/purple{ + dir = 1 + }, +/obj/landmark/start{ + name = "Research Director" + }, +/obj/structure/curtain/bed{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"aLi" = ( +/obj/machinery/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"aLo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"aLw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"aLA" = ( +/obj/structure/table/standard, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"aLB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Armory"; + req_access = newlist(); + dir = 4 + }, +/obj/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/armory) +"aLI" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"aLQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"aLS" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"aMo" = ( +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"aMp" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"aMq" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/structure/sign/thera{ + pixel_y = -32; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"aMC" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"aMG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"aMI" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"aML" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"aMS" = ( +/obj/paint/dark_gunmetal, +/obj/paint_stripe/yellow, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"aNn" = ( +/obj/structure/bed/chair/office/comfy/blue, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"aNp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/head_big) +"aNs" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"aNt" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_l) +"aNv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"aND" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/incinerator) +"aNR" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/table/glass, +/obj/machinery/light_construct{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aNW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"aOa" = ( +/obj/floor_decal/industrial/hatch/red, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"aOd" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"aOg" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"aOj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"aOn" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + id_tag = "BSD_windows"; + name = "Bluespace Chamber Lockdown" + }, +/turf/simulated/floor/plating, +/area/engineering/bluespace/chamber) +"aOo" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"aOq" = ( +/turf/simulated/wall/r_wall/hull, +/area/storage/tech/high_risk) +"aOt" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/power/apc/high{ + name = "north bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"aOu" = ( +/obj/structure/catwalk, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#6a97b0" + }, +/area/quartermaster/hangar/upper) +"aOx" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"aOA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"aOH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"aPn" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"aPv" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"aPw" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"aPH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "First Deck Substation"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/firstdeck) +"aPJ" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/eva) +"aPS" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/uniform_vendor{ + icon_state = "robotics"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/firstdeck) +"aPV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng3"; + name = "Deck One Starboard status indicator"; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"aPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"aPY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"aQb" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"aQd" = ( +/obj/structure/railing/mapped, +/obj/machinery/space_heater, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"aQi" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"aQn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"aQp" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"aQq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"aQt" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"aQu" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"aQw" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"aQC" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"aQS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad/longrange, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/door/window/brigdoor/westleft{ + autoset_access = 0; + dir = 2; + req_access = list("ACCESS_EXPEDITION_SHUTTLE_HELM") + }, +/obj/overmap/visitable/ship/landable/exploration_shuttle, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"aRa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"aRb" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"aRe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"aRf" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"aRn" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"aRo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_upload) +"aRp" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"aRr" = ( +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"aRt" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/galley/backroom) +"aRv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 4; + name = "Research and Development Desk"; + req_access = newlist() + }, +/obj/machinery/door/window/northleft{ + autoset_access = 0; + dir = 8; + name = "Research and Development Desk" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/plating, +/area/rnd/development) +"aRx" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"aRB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/material/knife/table/plastic, +/obj/item/material/knife/table/plastic, +/obj/item/material/knife/table/plastic, +/obj/item/material/kitchen/utensil/fork/plastic, +/obj/item/material/kitchen/utensil/fork/plastic, +/obj/item/material/kitchen/utensil/fork/plastic, +/obj/item/material/kitchen/utensil/spoon/plastic, +/obj/item/material/kitchen/utensil/spoon/plastic, +/obj/item/material/kitchen/utensil/spoon/plastic, +/obj/item/material/kitchen/utensil/foon/plastic, +/obj/item/material/kitchen/utensil/foon/plastic, +/obj/item/material/kitchen/utensil/foon/plastic, +/obj/item/material/kitchen/rollingpin, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/walllocker/secure_closet{ + pixel_y = -24; + req_access = list("ACCESS_SECURITY") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"aRD" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"aRE" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"aRF" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"aRH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"aRR" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/crate, +/obj/random/tank, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"aSf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"aSg" = ( +/obj/structure/closet/firecloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/briefcase/inflatable, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"aSj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chief Medical Officer"; + sort_type = "Chief Medical Officer" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"aSu" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"aSx" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"aSG" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/hallway) +"aSH" = ( +/turf/simulated/wall/prepainted, +/area/assembly/robotics) +"aSV" = ( +/obj/random/trash, +/obj/random/toolbox, +/obj/item/beartrap, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"aSX" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/prototype/engine) +"aSY" = ( +/obj/structure/towel/fitness, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"aTa" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/atmos) +"aTd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/navbeacon/sierra/TD_fore3, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/blue/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"aTf" = ( +/obj/item/storage/secure/safe{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"aTh" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"aTm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"aTn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"aTp" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/machinery/light/spot, +/obj/item/device/camera, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"aTq" = ( +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"aTv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/adherent_pylon, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"aTE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"aTI" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit1"; + name = "Infirmary Staging Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"aTK" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/locker) +"aTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/item/bodybag, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"aTM" = ( +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/airlock_sensor{ + id_tag = "sd_starboard_sensor"; + master_tag = "sd_starboard"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_starboard_pump" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"aUd" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"aUf" = ( +/obj/structure/railing/mapped, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"aUh" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"aUj" = ( +/obj/paint_stripe/turquoise, +/obj/paint/black, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_maint) +"aUm" = ( +/obj/structure/table/woodentable_reinforced/mahogany/walnut, +/obj/floor_decal/spline/fancy/black, +/obj/item/flame/candle, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"aUp" = ( +/obj/machinery/button/blast_door{ + id_tag = "ai_upload_blast"; + name = "Cyborg Upload Blast Doors"; + pixel_y = 24; + req_access = list("ACCESS_AI_UPLOAD") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"aUt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"aUy" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/yellow, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"aUF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aUN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"aUP" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"aUU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"aUX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 1; + id_tag = "toilet_eng_1"; + name = "Lock"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"aVb" = ( +/obj/item/inflatable_duck{ + name = "Chief of Astronavigation" + }, +/obj/item/device/radio/off, +/obj/item/clothing/head/soft/solgov/fleet{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"aVf" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/random_multi/single_item/space_rabbit, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"aVj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"aVn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = -24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/incinerator) +"aVq" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"aVs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"aVI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"aVL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"aVO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"aVQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"aVS" = ( +/obj/structure/table/rack, +/obj/item/aiModule/asimov, +/obj/item/aiModule/paladin, +/obj/item/aiModule/robocop, +/obj/item/aiModule/solgov_aggressive, +/obj/item/aiModule/solgov, +/obj/item/aiModule/freeformcore, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + autoset_access = 0; + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Core Modules"; + req_access = list("ACCESS_CAPTAIN") + }, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"aVZ" = ( +/obj/machinery/space_heater, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"aWb" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/nano) +"aWk" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/cryo/firstdeck) +"aWr" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"aWu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"aWD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"aWI" = ( +/obj/structure/stairs/west, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"aWQ" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"aWS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "bsa" + }, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"aWX" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/tech_loot, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"aXc" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"aXe" = ( +/obj/floor_decal/corner/paleblue/full, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light_switch{ + dir = 4; + on = 1; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/cmo/cobed) +"aXh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/single/color/cable_coil, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"aXj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"aXo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftport) +"aXz" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/abandoned_hydroponics) +"aXB" = ( +/obj/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"aXK" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"aXM" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = -7 + }, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stack/medical/advanced/ointment{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/stack/medical/advanced/ointment{ + pixel_x = 7 + }, +/obj/item/stack/medical/advanced/ointment{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/firstaid/surgery, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/defibrillator, +/obj/floor_decal/spline/plain/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"aXS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"aXW" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"aYb" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/deck/second{ + dir = 8; + pixel_x = 32; + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft_stairwell) +"aYe" = ( +/obj/shuttle_landmark/skipjack/deck2, +/turf/space, +/area/space) +"aYp" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/galley) +"aYv" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"aYw" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/small/packet/sugar{ + pixel_y = 2; + pixel_x = -12 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"aYx" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"aYy" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercee{ + dir = 4 + }, +/obj/floor_decal/industrial/traffic/corner{ + detail_color = "#a2819e"; + color = "#a2819e"; + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"aYz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + frequency = 1331; + id_tag = "guppy_shuttle_interior_sensor"; + master_tag = "guppy_shuttle"; + name = "interior access button"; + pixel_x = -22; + pixel_y = 32; + req_access = list("ACCESS_GUPPY") + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"aYE" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"aYH" = ( +/obj/structure/closet/secure_closet/chemical_sierra, +/obj/item/hand_labeler{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/floor_decal/corner/beige/three_quarters, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"aYJ" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"aYR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/center) +"aYW" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"aYX" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"aZj" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"aZC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"aZJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"aZX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"bal" = ( +/obj/structure/bed/chair/office/comfy/teal{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"baB" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"baE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"baF" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"baI" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -9; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"baK" = ( +/obj/structure/bed/chair/office/comfy/red, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"baT" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/corner/black/mono, +/obj/item/storage/box/cola/sodawater, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"baW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"bbd" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"bbg" = ( +/obj/machinery/vending/cigarette, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"bbh" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"bbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"bbD" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/obj/machinery/camera/network/mining{ + dir = 1; + c_tag = "Mining - Warehouse" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"bbO" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch{ + id_tag = "tox_airlock_interior" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"bbV" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"bbX" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 1; + tag_north = 8; + tag_south = 2 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"bbZ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"bca" = ( +/obj/structure/bed/chair/wood/maple{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"bce" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"bci" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"bck" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/power/apc/buildable, +/obj/item/stock_parts/power/apc/buildable, +/obj/item/stock_parts/power/apc/buildable, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/keyboard, +/obj/item/stock_parts/keyboard, +/obj/item/stock_parts/keyboard, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"bcs" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/full, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/iaa) +"bcu" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"bcv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bcy" = ( +/obj/structure/window/basic, +/obj/machinery/door/window{ + autoset_access = 0; + dir = 8 + }, +/obj/structure/curtain/open/privacy, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/stool/padded, +/obj/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"bcI" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"bcJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/actor/stage) +"bcK" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/item/device/multitool, +/obj/item/stack/cable_coil, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"bcL" = ( +/turf/simulated/open, +/area/rnd/research) +"bcP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"bcV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"bcY" = ( +/obj/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"bda" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"bdj" = ( +/obj/structure/bed/sofa/m/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"bdv" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/docking) +"bdw" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/vacant/monitoring) +"bdy" = ( +/obj/machinery/mass_driver{ + id_tag = "chapel"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/chapel/main) +"bdz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"bdA" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"bdI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/assembly/office) +"bdQ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"bdT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/abandoned_hydroponics) +"beb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"bed" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bek" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"bel" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"beq" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"bes" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"beu" = ( +/obj/structure/hygiene/drain/bath, +/obj/structure/hygiene/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"bev" = ( +/obj/machinery/vending/medical/sierra{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/staging) +"beA" = ( +/obj/structure/bed/chair/office/comfy/brown{ + dir = 1 + }, +/obj/landmark/start{ + name = "Councelor" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"beC" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + autoset_access = 0; + dir = 4; + name = "Third Deck Port Nacelle"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"beJ" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/item/reagent_containers/glass/beaker/vial, +/obj/item/clothing/glasses/science, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"beN" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"beV" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"bfp" = ( +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"bfq" = ( +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"bfG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"bfH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"bfI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"bfL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -21 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"bfR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"bfS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"bfT" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"bgh" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bgl" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"bgn" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"bgp" = ( +/obj/structure/window/reinforced/polarized{ + id = "cap_room_window" + }, +/obj/structure/window/reinforced/polarized{ + id = "cap_room_window"; + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"bgw" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"bgx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"bgD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"bgG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"bgK" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/docking) +"bgP" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"bgZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"bhb" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"bhg" = ( +/obj/machinery/atmospherics/tvalve{ + dir = 1; + icon_state = "map_tvalve1"; + state = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"bhi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"bhA" = ( +/obj/structure/table/steel, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"bhB" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"bhO" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "hangar_ts_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"bhT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"bia" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"bib" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bie" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/bridgedeck/starboard) +"bih" = ( +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"bij" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"bin" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"biw" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"biE" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"biG" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"biJ" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/corner/black/three_quarters, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"biK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"biR" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"biZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"bjd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/junkfood, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"bje" = ( +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"bjf" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/hand_labeler, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"bjg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"bjo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"bjq" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/engineering{ + name = "Quick Access Warehouse" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"bjs" = ( +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hydroponics) +"bjB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "portaux_warehouse"; + name = "Warehouse Shutters Control"; + pixel_y = -25; + req_access = list("ACCESS_CARGO") + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/obj/machinery/camera/network/fourth_deck{ + dir = 1; + c_tag = "Fourth Deck - Fore Hallway Port" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"bjD" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bjG" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"bjI" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch{ + frequency = 1379; + id_tag = "engine_airlock_outer"; + name = "Engine Airlock Exterior" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_monitoring) +"bjJ" = ( +/obj/floor_decal/corner/red, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"bjR" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"bjU" = ( +/obj/machinery/light/spot, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"bjY" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/decal/cleanable/cobweb2, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"bka" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bkg" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"bkh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"bkj" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/fuelbay) +"bkz" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"bkN" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/black/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"bkO" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/dungeon_master_lounge) +"bkQ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"bkT" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"bld" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"bli" = ( +/obj/machinery/computer/ship/helm, +/obj/machinery/button/blast_door{ + id_tag = "calypso_shutters"; + name = "Protective Shutters Control"; + pixel_x = 7; + pixel_y = 34 + }, +/obj/machinery/button/blast_door{ + id_tag = "sensor_shutters"; + name = "Protective Sensor Control"; + pixel_x = -6; + pixel_y = 34 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "cockpit_shutters"; + name = "Protective Cockpit Control"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"blw" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"blA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"blD" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"blG" = ( +/obj/structure/bed/chair/padded/teal{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"blM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"bmc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -21; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"bmi" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"bmk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/monitoring) +"bml" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/tank/oxygen_emergency_double, +/obj/item/tank/oxygen_yellow, +/obj/item/tank/oxygen_yellow, +/obj/item/tank/jetpack, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"bmr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"bmB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"bmG" = ( +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"bmK" = ( +/obj/paint_stripe/red, +/obj/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod1/station) +"bne" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"bnf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bni" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"bnr" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "fd_starboard_pump" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"bnt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"bny" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"bnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"bnI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"bnQ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/office) +"boa" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"bon" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/washing_machine, +/obj/machinery/light_switch{ + pixel_x = -21; + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"boo" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"bop" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"boz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"boE" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced, +/area/space) +"boM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"boN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"boO" = ( +/obj/structure/inflatable/wall, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"boS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"boT" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"bpD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"bpK" = ( +/obj/structure/table/standard, +/obj/item/towel/random, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/random/soap, +/obj/item/lipstick/random{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"bpR" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bpU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Obstruction Field Disperser" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/command/bsa) +"bpY" = ( +/obj/structure/table/rack, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/stack/material/plasteel/fifty, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"bqn" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_wall, +/area/maintenance/compactor) +"bqo" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + name = "Central Stairwell" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/central_stairwell) +"bqr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_3" + }, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/center) +"bqs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"bqv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/corner/blue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/account_database{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/hop) +"bqA" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bqD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"bqG" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "firing_range_outer"; + name = "Firing Range Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + desc = "Security access required."; + dir = 4; + master_tag = "firing_range"; + name = "exterior access button"; + pixel_x = -10; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY") + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"bqI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"bqJ" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp/green, +/obj/decal/cleanable/dirt, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"bqL" = ( +/obj/machinery/radio_beacon, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"bqN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"bqO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"bqS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"bqW" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"bqX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"brh" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/spot, +/obj/machinery/portable_atmospherics/canister/hydrogen{ + start_pressure = 14999 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"brq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"brx" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/blue, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"brA" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"brB" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"brE" = ( +/obj/random/trash, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"brF" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"brG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"brI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/material/ashtray/bronze, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"brU" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"brW" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"bso" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"bsB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "toxin_lab_access"; + name = "Toxin Lab Access Console"; + pixel_y = 24; + req_access = list("ACCESS_TOX_STORAGE") + }, +/obj/machinery/vending/phoronresearch, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"bsH" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"bsO" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 200 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"bsQ" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"bsR" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"bsS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"bsU" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bsV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_fore_starboard_pump" + }, +/obj/floor_decal/industrial/warning/cee, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"bsZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/forestarboard) +"btb" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"btc" = ( +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod5/station) +"btf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"btn" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"bts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Fore Hallway Port"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"btB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/bed/chair/office/comfy/blue{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"btE" = ( +/obj/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"btF" = ( +/obj/structure/closet/cabinet, +/obj/item/book/manual/engineering_singularity_safety, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"btP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"btR" = ( +/obj/structure/catwalk, +/obj/machinery/shieldwallgen, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"btU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"btX" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/titanium, +/area/guppy_hangar/start) +"bua" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + name = "Third Deck Port Airlock Access"; + id_tag = "td_port_outer" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"buf" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/machinery/vending/fitness, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/black/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"buq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "specops_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"buC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"buN" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/storage/mirror{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"buO" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"buQ" = ( +/obj/machinery/power/smes/buildable/preset/sierra/hangar{ + RCon_tag = "Substation - Hangar" + }, +/obj/structure/cable/cyan, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"buV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"buY" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"buZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/rotating_alarm/supermatter{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"bva" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 8 + }, +/obj/structure/closet/secure_closet/quartermaster_sierra, +/obj/item/device/eftpos{ + eftpos_name = "Quartermaster EFTPOS scanner" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"bvn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"bvp" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"bvt" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"bvw" = ( +/obj/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/foreport) +"bvA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"bvC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"bvG" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green, +/obj/floor_decal/carpet/red, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"bvK" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green, +/obj/machinery/power/terminal, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"bvN" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"bvW" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atm{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"bwb" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "solar_starboard_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/starboard) +"bwe" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"bwg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"bwn" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Materials Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"bwo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/aftport) +"bwp" = ( +/obj/structure/closet/crate, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"bwr" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/brig) +"bwv" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/thirddeck/fore) +"bwx" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod4/station) +"bwJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"bwM" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/crew_quarters/lounge/upper) +"bwQ" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"bwS" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"bwW" = ( +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"bxa" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_1_berth_hatch"; + name = "Escape Pod One" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"bxb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"bxd" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"bxl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Central Stairwell" + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"bxn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"bxo" = ( +/turf/simulated/wall/prepainted, +/area/vacant/sauna) +"bxp" = ( +/obj/floor_decal/corner/grey/full, +/obj/machinery/media/music_writer{ + pixel_x = -32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"bxy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"bxD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/meter, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bxG" = ( +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/scanner/spectrometer/adv, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/white, +/area/medical/staging) +"bxH" = ( +/obj/decal/cleanable/dirt, +/obj/item/ore/iron, +/obj/structure/cable/cyan, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"bxO" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/valve/digital{ + name = "Internal connector to thrusters" + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"bxP" = ( +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"bxQ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/head) +"bxS" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"bxZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"byc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"byf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"byi" = ( +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"byr" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/security/brig) +"byA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"byK" = ( +/obj/structure/dispenser/oxygen, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"byL" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"byQ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -24; + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/storage/firstaid/regular, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/roller_bed, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"byW" = ( +/turf/simulated/wall/prepainted, +/area/rnd/xenobiology/level1) +"byY" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"bzb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"bzg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/gambling) +"bzi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "hos_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hos) +"bzm" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"bzt" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"bzw" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"bzA" = ( +/obj/paint/black, +/obj/paint{ + color = "#353a42" + }, +/turf/simulated/wall/ocp_wall, +/area/rnd/toxins) +"bzD" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bzE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"bzF" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"bzH" = ( +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bzN" = ( +/obj/structure/lattice, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bzP" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"bAr" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"bAs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"bAt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access = list("ACCESS_SEC_DOORS"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"bAu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"bAw" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"bAx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chief Engineer"; + sort_type = "Chief Engineer" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"bAz" = ( +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"bAC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/foreport) +"bAD" = ( +/obj/structure/catwalk, +/obj/structure/ladder/up, +/turf/simulated/open, +/area/space) +"bAE" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/corner/green/half, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"bAL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/gambling) +"bAO" = ( +/obj/structure/closet/crate/freezer, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"bAX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bookcase/manuals/xenoarchaeology, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"bAZ" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Chamber Control"; + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"bBa" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/command{ + c_tag = "Command - Port Bridge Entry"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"bBf" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"bBp" = ( +/obj/structure/closet/secure_closet/medical_sierrasenior, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"bBr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"bBv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bBL" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"bBQ" = ( +/obj/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"bBS" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"bBT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass/security{ + name = "Suits Storage" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/suits) +"bBU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"bCj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bCk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/solar/port) +"bCl" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bCq" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"bCu" = ( +/obj/paint/hull, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/wall/ocp_wall, +/area/vacant/prototype/engine) +"bCN" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"bCP" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/cable{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 2 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/bridgedeck/port) +"bCU" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/expedition/eva) +"bCV" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"bDc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bDm" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos/cobed) +"bDn" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/waterstore) +"bDp" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/computer/air_control{ + input_tag = "CO24p_in"; + name = "Propellent Supply Control"; + output_tag = "CO24p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngCO24" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"bDs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"bDA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"bDC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"bDH" = ( +/obj/machinery/stasis_cage, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"bDI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"bDK" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"bDU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobioa1"; + name = "Containment Blast Doors"; + pixel_x = -6; + pixel_y = 21; + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"bDX" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"bEf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"bEl" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/spline/fancy/black, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bEn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"bEp" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bEx" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/armory/lobby) +"bEB" = ( +/obj/random/closet, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftport) +"bEG" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); + secured_wires = 1; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/dockcheck) +"bEM" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/wall/prepainted, +/area/crew_quarters/galley) +"bEP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"bEV" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 1; + tag_south = 2; + tag_west = 3 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"bEX" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/bronze, +/obj/random/smokes, +/obj/machinery/camera/network/second_deck{ + c_tag = "Actors - Stage"; + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"bFd" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/sauna) +"bFf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "petrov_shuttle_pump" + }, +/obj/floor_decal/techfloor, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"bFk" = ( +/obj/structure/bed/chair/office/green{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"bFm" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp{ + pixel_y = 14; + pixel_x = -5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"bFp" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/under/suit_jacket/charcoal, +/obj/item/clothing/under/suit_jacket/charcoal, +/obj/item/clothing/under/suit_jacket/charcoal, +/obj/item/clothing/under/suit_jacket/charcoal, +/obj/item/clothing/gloves/white, +/obj/item/clothing/gloves/white, +/obj/item/clothing/gloves/white, +/obj/item/clothing/gloves/white, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"bFr" = ( +/obj/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bFt" = ( +/obj/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/bed/chair/pew/mahogany, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"bFA" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/central_stairwell) +"bFE" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"bFP" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"bFR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"bFT" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"bFX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"bFZ" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/rd/cobed) +"bGa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + target_pressure = 200 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"bGt" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"bGu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"bGv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"bGx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"bGC" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bGK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"bGO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/item/stack/material/steel/ten, +/obj/item/stack/material/steel/ten, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"bGP" = ( +/obj/floor_decal/borderfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"bGR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"bGS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"bHa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/closet/secure_closet/white_sierra{ + name = "secure evidence locker" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"bHf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"bHl" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"bHq" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"bHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/wall/r_wall/hull, +/area/space) +"bHt" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"bHJ" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"bHS" = ( +/obj/structure/bed/sofa/r/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 6 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"bIg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"bIo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"bIy" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/status_light{ + id_tag = "ReacEng2"; + name = "Fourth Deck Port status indicator"; + pixel_x = -8; + pixel_y = 25 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng4"; + name = "First Deck Port status indicator"; + pixel_x = -8; + pixel_y = 34 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng3"; + name = "First Deck Starboard status indicator"; + pixel_x = 8; + pixel_y = 34 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng1"; + name = "Fourth Deck Starboard status indicator"; + pixel_x = 8; + pixel_y = 25 + }, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"bIO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/starboard) +"bIP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"bIS" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"bIW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"bJb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/hangar) +"bJj" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"bJm" = ( +/obj/floor_decal/corner/darkblue{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/half{ + dir = 4 + }, +/obj/random/vendor{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"bJw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"bJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + frequency = 1380; + id_tag = "skipjack_shuttle_dock_airlock_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"bJB" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/recharger, +/obj/machinery/camera/network/command{ + c_tag = "Command - Cyborg Upload"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"bJC" = ( +/obj/floor_decal/techfloor, +/obj/machinery/light, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/machine/jukebox_custom, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"bJJ" = ( +/obj/structure/table/standard, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level2) +"bJM" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"bJP" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bJT" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/rnd/xenobiology/water_cell) +"bKc" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"bKi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"bKj" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"bKp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"bKt" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/item/tank/oxygen_yellow, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"bKy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "solar_port"; + name = "interior access button"; + pixel_x = 12; + pixel_y = -19; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"bKC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bKF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/compactor) +"bKH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/standard, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/material/minihoe, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bKK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/donut, +/obj/machinery/recharger, +/obj/machinery/button/windowtint{ + dir = 4; + id = "forensicswindow"; + pixel_x = -22 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Detectives - Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/soap, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"bKT" = ( +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/corner/blue/border, +/obj/machinery/light, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"bKY" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/item/storage/box/latexgloves, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"bLk" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/machinery/vending/sol, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"bLn" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"bLr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"bLw" = ( +/obj/floor_decal/carpet, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"bLy" = ( +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"bLB" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_teleport) +"bLD" = ( +/obj/machinery/photocopier, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"bLR" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"bLS" = ( +/obj/structure/bed/chair/comfy/purple{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"bLT" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + id_tag = "test_xenoflora_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/xenoflora) +"bLU" = ( +/obj/item/beach_ball, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"bLZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/structure/railing/mapped, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"bMl" = ( +/obj/structure/closet/secure_closet/security/sierra, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"bMA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/navbeacon/sierra/FD_forehallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"bMC" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Third Deck Subgrid"; + name_tag = "Third Deck Subgrid" + }, +/obj/machinery/power/apc/critical{ + name = "north bump"; + pixel_y = 21; + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"bMD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/keycard_auth/sierra{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/folder/blue, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"bMH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"bMJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bMV" = ( +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + output_attempt = 1; + output_level = 250000 + }, +/obj/structure/cable/cyan, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"bMX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"bMY" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"bNd" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/heads/captain/secret_room) +"bNj" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"bNl" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/security/sierra/cadet, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Equipment"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"bNq" = ( +/obj/machinery/portable_atmospherics/canister/helium, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"bNu" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"bNz" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod7/station) +"bNB" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/paper_bin, +/obj/item/sticky_pad/random, +/obj/item/pen, +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"bNC" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/toggleable/hawaii/random, +/obj/random/clothing, +/obj/random/gloves, +/obj/random/glasses, +/obj/random/action_figure, +/obj/random/plushie, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/under/harness, +/obj/item/clothing/under/swimsuit/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/jeans/female, +/obj/item/clothing/under/hazard, +/obj/item/clothing/under/frontier, +/obj/item/clothing/under/blazer, +/turf/simulated/floor/wood/walnut, +/area/vacant/cargo) +"bNE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/navbeacon/sierra/TD_fore91, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Commissary"; + sort_type = "Commissary" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"bNH" = ( +/obj/structure/barricade, +/obj/machinery/door/airlock{ + name = "Abandoned Room" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/sauna) +"bNJ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"bOd" = ( +/obj/structure/table/steel, +/obj/item/clothing/gloves/thick, +/obj/item/clothing/mask/gas/budget, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/compactor) +"bOf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"bOh" = ( +/obj/structure/table/glass, +/obj/item/storage/box/fingerprints, +/obj/item/storage/box/fingerprints, +/obj/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Detectives - Lab"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"bOr" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/range) +"bOt" = ( +/obj/floor_decal/ntlogo{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"bOx" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/hallway) +"bOy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos/bridge) +"bOD" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"bOL" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"bON" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"bOZ" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "xenohight_airlock_exterior_sensor"; + master_tag = "xenohight_airlock"; + pixel_x = 1; + pixel_y = -24; + req_access = list("ACCESS_XENOBIO") + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Entry"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"bPa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"bPb" = ( +/obj/structure/table/standard, +/obj/machinery/light/small, +/obj/item/paper/travelvisa{ + desc = "A flimsy piece of laminated cardboard issued by the Sol Central Government. It's look's damaged" + }, +/turf/simulated/floor/tiled/monotile, +/area/vacant/cargo) +"bPd" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"bPp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + name = "Security Checkpoint" + }, +/obj/machinery/door/window/southleft{ + autoset_access = 0; + dir = 1; + name = "Security Checkpoint" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"bPt" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"bPu" = ( +/obj/structure/closet/coffin/wooden, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"bPB" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaaright" + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"bPC" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"bPD" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"bPF" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/galley) +"bPH" = ( +/obj/structure/bookcase, +/obj/item/book/manual/military_law, +/obj/item/book/manual/nt_sop, +/obj/item/book/manual/nt_tc, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"bPX" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/floor_decal/industrial/traffic/corner{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bQa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1port) +"bQc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"bQg" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"bQm" = ( +/turf/simulated/floor/reinforced, +/area/space) +"bQn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cap_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/captain) +"bQo" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"bQq" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"bQy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"bQA" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"bQH" = ( +/obj/structure/closet/secure_closet/engineering_senior, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/gps, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"bQM" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft_stairwell) +"bQU" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/bridgedeck/port) +"bQW" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/storage/bible/tanakh, +/obj/item/storage/bible/aqdas, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"bQZ" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access_maintaince"; + name = "Xenobotany Lab Access Console"; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) +"bRb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"bRc" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"bRd" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + display_name = "First Deck Auxillary Dock"; + id_tag = "fd_starboard"; + name = "First Deck Starboard Airlock Controller"; + pixel_x = -20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "fd_starboard_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"bRg" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bRh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bRk" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"bRm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bRx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bRI" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition) +"bRN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"bRQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"bRV" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/starboard) +"bSd" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"bSo" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"bSx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"bSE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"bSH" = ( +/obj/machinery/biogenerator, +/obj/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access"; + name = "Xenobotany Lab Access Console"; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"bSJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"bST" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/alarm/warm{ + dir = 4; + pixel_x = -24; + req_access = list(); + target_temperature = 398.15; + temperature = 343.15 + }, +/obj/structure/bed/sauna_bench/middle, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"bSU" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"bTg" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"bTs" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bTH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"bTJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"bTK" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"bTN" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/hygiene/drain, +/obj/structure/hygiene/shower{ + dir = 4 + }, +/obj/machinery/door/window/eastright, +/obj/structure/curtain/open/shower, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/item/bikehorn/rubberducky, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"bTO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/substation/seconddeck) +"bUb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"bUc" = ( +/obj/machinery/power/apc/super/critical{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"bUe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"bUh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bUE" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"bUM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"bUO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"bUP" = ( +/obj/machinery/shieldgen, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"bUQ" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"bUR" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_1_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"bUX" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobio4"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"bUY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"bVg" = ( +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"bVl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"bVu" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bVv" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"bVw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_cyborg_upload) +"bVA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/aft_stairwell) +"bVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"bVO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"bVP" = ( +/obj/structure/dispenser/oxygen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"bVR" = ( +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/random/ironing_board_item, +/obj/item/ironing_iron, +/obj/item/device/toner, +/obj/structure/closet/crate, +/obj/item/storage/box/donkpocket_mixed, +/obj/floor_decal/spline/plain/yellow, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"bWa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"bWf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"bWn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"bWo" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"bWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"bWy" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"bWz" = ( +/obj/item/stool/padded/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"bWJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"bWL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"bWQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/spot, +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/plantbgone, +/obj/floor_decal/corner/green/three_quarters, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bWT" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bWY" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/slide_projector, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"bXa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"bXc" = ( +/obj/structure/railing/mapped, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"bXg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"bXn" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/equipstorage) +"bXq" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/chapel/main) +"bXs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"bXv" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"bXB" = ( +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"bXC" = ( +/obj/machinery/light, +/obj/machinery/suit_cycler/medical/alt, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"bXI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"bXJ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/directions/med{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"bXN" = ( +/obj/paint/hull, +/turf/simulated/wall/ocp_wall, +/area/vacant/prototype/engine) +"bXT" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/aftport) +"bXW" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/table/woodentable/walnut, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"bXZ" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/scan) +"bYb" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"bYl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"bYu" = ( +/obj/floor_decal/corner/green/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"bYy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"bYC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"bYQ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"bYU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/barrier, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"bYX" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"bZf" = ( +/obj/structure/largecrate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"bZp" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "rd_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/rd) +"bZF" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"bZH" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"bZL" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"bZR" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"bZT" = ( +/obj/machinery/button/mass_driver{ + dir = 1; + id_tag = "enginecore"; + name = "Emergency Core Eject"; + pixel_x = 4; + pixel_y = -20 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + autoset_access = 0; + name = "emergency core eject"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for engine core."; + dir = 1; + id_tag = "EngineVent"; + name = "Engine Ventillatory Control"; + pixel_x = -8; + pixel_y = -20; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/button/alternate/door/bolts{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + dir = 4; + id_tag = "engine_access_hatch"; + name = "Engine Hatch Bolt Control"; + pixel_x = -22; + pixel_y = -8; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/button/blast_door{ + desc = "A switch designed to vent all gasses from the engine room into space. Press it if there is a fire in the engine room."; + dir = 4; + id_tag = "engineroomvent"; + name = "Emergency Engine Room Vents"; + pixel_x = -22; + pixel_y = 4; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/button/blast_door{ + desc = "WARNING! Opening blast doors while reactor is operating, may cause meltdown."; + id_tag = "SupermatterDoor"; + name = "Supermatter Access Blast Doors"; + pixel_y = -8; + req_access = list("ACCESS_ENGINEERING"); + pixel_x = -32; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"bZU" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"bZW" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"bZZ" = ( +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"cac" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/window/reinforced/polarized{ + id = "cap_room_window"; + dir = 4 + }, +/obj/item/toy/sierramodel, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"cae" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"caf" = ( +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"cag" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"cam" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"cas" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cau" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/sign/warning/pods/west{ + pixel_x = 32; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"cav" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"caC" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "guppy_shield_left"; + name = "Window Shield" + }, +/obj/paint_stripe/yellow, +/turf/simulated/floor/plating, +/area/guppy_hangar/start) +"caJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"caR" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "toxin_lab_access_outer"; + name = "Toxin Lab Access" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"caZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"cbd" = ( +/obj/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"cbm" = ( +/obj/structure/railing/mapped, +/obj/machinery/shieldgen, +/obj/structure/sign/warning/pods/south{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"cbr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"cbu" = ( +/obj/structure/bed/chair/shuttle/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/cockpit) +"cbw" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"cbC" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/substation/firstdeck) +"cbF" = ( +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cbL" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"cbO" = ( +/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, +/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"cbR" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/deck/first{ + pixel_y = 35 + }, +/obj/structure/sign/directions/security{ + pixel_y = 24; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"cbV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"ccc" = ( +/obj/structure/bed/chair/padded/purple, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"ccj" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ccq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ccI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"ccL" = ( +/obj/shuttle_landmark/admin/out, +/turf/space, +/area/space) +"ccN" = ( +/obj/structure/table/rack{ + pixel_x = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/gun/launcher/syringe, +/obj/item/storage/box/syringegun, +/obj/item/storage/box/syringegun, +/obj/item/storage/box/syringes, +/obj/item/storage/box/syringes, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"ccO" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ccQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"ccR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ccS" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"cde" = ( +/obj/structure/closet/cabinet, +/obj/floor_decal/corner/red/diagonal, +/obj/decal/cleanable/flour, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"cdg" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"cdk" = ( +/obj/machinery/vitals_monitor, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking_1{ + desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"cdn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"cdt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"cdw" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"cdz" = ( +/obj/floor_decal/industrial/traffic{ + dir = 8; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"cdG" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Port Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"cdH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"cdM" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/egun, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"cdP" = ( +/obj/floor_decal/corner/red, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"cdQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"cdU" = ( +/obj/landmark/start, +/obj/structure/bed/chair/rounded/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"cem" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"ceo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"cep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"cex" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/cmo) +"ceA" = ( +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"ceF" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"ceI" = ( +/obj/floor_decal/corner/darkblue/half{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue{ + dir = 6 + }, +/obj/machinery/vending/sol{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"ceN" = ( +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#ff0000" + }, +/area/quartermaster/hangar/upper) +"ceS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "fuel3p_in"; + name = "Fuel Supply Control"; + output_tag = "fuel3p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngPlasma3" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"ceT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + autoset_access = 0; + name = "Petrov Access"; + req_access = list("ACCESS_HANGAR") + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"ceU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ceZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/infirmary) +"cfi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_room) +"cfk" = ( +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Research Director"; + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"cfl" = ( +/obj/machinery/light/spot, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"cfm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"cfn" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"cfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"cfs" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaaright" + }, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"cfx" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/exploration/storage) +"cfK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"cfL" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = -8; + pixel_x = 32 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = -1; + pixel_x = 32 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Aft Stairwell"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"cfM" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/wardhallway) +"cfP" = ( +/obj/machinery/mech_recharger, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"cfQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"cfU" = ( +/obj/machinery/power/fusion_core/mapped{ + initial_id_tag = "aux_fusion_plant" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"cge" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"cgh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"cgj" = ( +/obj/structure/table/woodentable/maple, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"cgl" = ( +/obj/machinery/light/spot, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"cgp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"cgu" = ( +/obj/structure/closet/cabinet, +/obj/item/device/synthesized_instrument/trumpet, +/obj/item/clothing/mask/gas/sexyclown, +/obj/item/clothing/mask/gas/sexymime, +/obj/item/clothing/mask/gas/clown_hat, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"cgD" = ( +/obj/structure/bed/chair/padded/teal{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"cgE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"cgH" = ( +/obj/paint{ + color = "#353a42" + }, +/turf/simulated/wall/ocp_wall, +/area/rnd/toxins) +"cgK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"cgR" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"chc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"chf" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 11; + pixel_x = 8 + }, +/obj/item/pen, +/obj/item/material/kitchen/utensil/fork{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"chg" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"chi" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"cho" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"chs" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"chu" = ( +/obj/structure/holoplant, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"chE" = ( +/obj/floor_decal/corner/darkblue{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/half{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"chU" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"cii" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/fore) +"cij" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/status_display{ + pixel_y = 32; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"cio" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"cis" = ( +/obj/fluid_mapped, +/obj/random/soap, +/mob/living/simple_animal/aquatic/fish/judge, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ciu" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"ciz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ciB" = ( +/obj/machinery/atmospherics/unary/tank/air, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ciF" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"ciL" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/railing/mapped, +/obj/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ciM" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"cjb" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"cjc" = ( +/obj/structure/table/rack, +/obj/item/modular_computer/pda/wrist, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tank, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/random/tech_supply, +/obj/item/storage/box/lights/led_neon, +/obj/machinery/camera/network/supply{ + c_tag = "Fourth Deck - Supply - Auxillary Warehouse"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"cjk" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = -6; + pixel_x = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"cjl" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/secure_closet{ + name = "long term chamber locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/borderfloor/full, +/obj/floor_decal/industrial/hatch/orange, +/obj/machinery/button/blast_door{ + id_tag = "visiting_room_windows_shutters"; + name = "Brig's visiting room shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_y = -6; + pixel_x = 21; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/brig) +"cjn" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"cjp" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"cjz" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/floor_decal/spline/fancy/black/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"cjH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"ckl" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/item/folder, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"ckm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"ckn" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"ckp" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"ckA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"ckB" = ( +/obj/structure/table/standard, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = -24; + dir = 4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/robotanalyzer, +/obj/floor_decal/corner/grey_alt/three_quarters{ + dir = 8 + }, +/obj/item/storage/box/freezer, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"ckL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"ckU" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ckW" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"cla" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"cld" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"clg" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/expedition) +"cll" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"clp" = ( +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"clw" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"clD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"clF" = ( +/obj/structure/lattice, +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"clH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"clM" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"clR" = ( +/obj/structure/bed/chair/armchair/black{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"clT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"clW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"clZ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cma" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"cmb" = ( +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"cmh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"cmk" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/floodlight{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"cmm" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"cmr" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/exploration/eva) +"cmw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"cmA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"cmJ" = ( +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"cmR" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"cnh" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/aft) +"cnj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"cno" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"cnp" = ( +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"cnr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"cns" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"cos" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"cow" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"coB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"coD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"coE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"coG" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"coH" = ( +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"coM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"coP" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/equipstorage) +"coY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"cpa" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"cpb" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"cpk" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/holodeckcontrol, +/obj/item/stock_parts/circuitboard/mech_recharger, +/obj/item/stock_parts/circuitboard/solar_control, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"cpu" = ( +/turf/simulated/wall/walnut, +/area/crew_quarters/sauna) +"cpv" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"cpw" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"cpO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"cpQ" = ( +/obj/fluid_mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"cpR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/mineral/processing_unit, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"cpS" = ( +/obj/machinery/button/blast_door{ + id_tag = "borg"; + name = "Cyborg Upload Blast Doors"; + pixel_x = -26; + pixel_y = -6; + req_access = list("ACCESS_AI_UPLOAD") + }, +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"cpT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/hull, +/area/chapel/mortuary) +"cpV" = ( +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"cqk" = ( +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"cqt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Fore Hallway - Airlock" + }, +/obj/machinery/navbeacon/sierra/SD_fore4, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"cqv" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"cqB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"cqC" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cqD" = ( +/obj/machinery/camera/network/command{ + c_tag = "Command - Chief Steward"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"cqT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"cqV" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/lift/rndmaint, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"cqW" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"crm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"cro" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"crr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"crs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge Access"; + id_tag = "bridge_hallway_doors_starboadr" + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"crB" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/equipment) +"crD" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/pizzabox/meat{ + pixel_y = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"crE" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/bed/chair/padded/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"crG" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"crJ" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"crU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"crZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 80 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"csp" = ( +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"csw" = ( +/obj/machinery/washing_machine, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"csC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Janitor Closet" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/storage) +"csD" = ( +/turf/simulated/open, +/area/assembly/office) +"csP" = ( +/obj/paint_stripe/blue, +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/airlock) +"csX" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"csZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"ctg" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"cto" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/obj/structure/sign/botany{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ctu" = ( +/obj/structure/table/rack, +/obj/item/material/hatchet/machete, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/material/hatchet/machete, +/obj/item/material/hatchet/machete, +/obj/item/material/hatchet/machete, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"ctB" = ( +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ctC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ctD" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"ctF" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "guppy_shuttle_pump_out_internal" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"ctI" = ( +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ctJ" = ( +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"ctW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/floor_decal/corner/black/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"ctX" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/floor_decal/snow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"cua" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"cub" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"cuf" = ( +/obj/machinery/floodlight{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"cug" = ( +/obj/machinery/vending/robotics/sierra{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics Lab"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"cul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/warning/airlock{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"cur" = ( +/turf/simulated/open, +/area/hallway/primary/thirddeck/aft_stairwell) +"cus" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"cuD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"cuI" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa) +"cuP" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"cuW" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/starboard) +"cuX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"cuY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/dormintories) +"cvh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cvk" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "calypso_shuttle_pump" + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"cvy" = ( +/obj/machinery/door/window/westright{ + name = "Xenoflora Environment"; + req_access = newlist() + }, +/obj/machinery/door/window/southright{ + dir = 4; + name = "Xenoflora Environment"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/xenoflora) +"cvC" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/xenoflora) +"cvM" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"cvN" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/centralstarboard) +"cvV" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"cvX" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -1 + }, +/obj/item/folder/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"cvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"cwe" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/shuttlefuel) +"cwf" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/explorer, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"cwp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"cwq" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"cwu" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"cwv" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cwy" = ( +/obj/machinery/seed_extractor, +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"cwA" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"cwE" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"cwJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/aft) +"cwO" = ( +/obj/structure/closet/secure_closet/medical_sierra, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"cwT" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"cwY" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway) +"cxd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 6; + pixel_y = -21 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"cxi" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"cxm" = ( +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cxp" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/structure/shuttle/engine/heater{ + pixel_y = 32 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_pod/escape_pod2/station) +"cxr" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"cxs" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/machinery/light, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"cxt" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cxv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"cxy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cxA" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/sign/emergonly{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"cxF" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"cxG" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"cxH" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/largecrate, +/obj/random/trash, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"cxL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"cxM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"cxQ" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"cxT" = ( +/obj/item/storage/lunchbox/picnic/filled, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"cxW" = ( +/obj/structure/table/standard, +/obj/random/tool, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"cxX" = ( +/obj/structure/catwalk, +/obj/structure/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/mre/dessert, +/obj/random/plushie, +/obj/random/junk, +/obj/random/firstaid, +/obj/random/action_figure, +/obj/random/cash, +/obj/random/drinkbottle, +/obj/random/hat, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"cyb" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"cyc" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = -6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobio1_vent"; + name = "Cell 1 Vent"; + pixel_x = 6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/storage/box/syringes{ + pixel_y = 15 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"cym" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"cyn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/carpet/green, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"cyr" = ( +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/bordercorner, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"cyM" = ( +/obj/structure/flora/pottedplant/fern, +/obj/floor_decal/carpet, +/obj/floor_decal/carpet{ + dir = 4 + }, +/obj/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"cyP" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"cyU" = ( +/obj/random_multi/single_item/space_rabbit, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cyV" = ( +/obj/floor_decal/corner/blue{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"czb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"czd" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"czn" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/mess) +"czD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/dungeon_master_lounge) +"czE" = ( +/obj/machinery/atmospherics/tvalve{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"czG" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"czH" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"czJ" = ( +/obj/structure/closet/l3closet/general, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"czN" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shield/thirddeck) +"czQ" = ( +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/corner/beige{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"czV" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/green{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"czY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/science{ + name = "Expedition Prep"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration/briefing_room) +"cAa" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"cAd" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"cAg" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cAl" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"cAm" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"cAu" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"cAC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/thirddeck) +"cAJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/suits) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"cAO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"cBf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Central Hallway" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"cBg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"cBk" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "rescue_shuttle_dock_airlock_sensor"; + master_tag = "rescue_shuttle_dock_airlock"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"cBm" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = 14 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"cBq" = ( +/obj/structure/catwalk, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"cBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + dir = 4; + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"cBv" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Security General Cabin"; + req_access = list("ACCESS_SEC_DOORS"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"cBw" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"cBz" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"cBD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's reserve fax" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"cBG" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"cBH" = ( +/obj/machinery/button/blast_door{ + id_tag = "chapel_shutters_md"; + name = "Last Way Shutter"; + pixel_x = 20; + pixel_y = 6; + req_access = list("ACCESS_CHAPEL_STORAGE"); + dir = 8 + }, +/obj/machinery/button/mass_driver{ + dir = 8; + id_tag = "chapel"; + name = "Last Way"; + pixel_y = -7; + pixel_x = 20 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cBI" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"cBL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"cBM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"cBP" = ( +/obj/machinery/photocopier, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"cBU" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"cCj" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"cCk" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"cCu" = ( +/obj/machinery/power/apc/high{ + name = "north bump"; + pixel_y = -24 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"cCx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_atmos_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"cCy" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Fourth Deck Substation Bypass" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"cCA" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"cCC" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/machinery/cell_charger{ + pixel_y = 1; + pixel_x = -2 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 80 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"cCF" = ( +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"cCT" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Server Room"; + network = list("Command","Engineering") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"cDf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"cDm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"cDo" = ( +/obj/structure/holoplant, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cDr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"cDv" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"cDy" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"cDA" = ( +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -28 + }, +/obj/floor_decal/corner/paleblue/bordercee{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"cDB" = ( +/obj/structure/flora/seaweed/glow, +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"cDC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"cDD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"cDE" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"cDJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + name = "engineering front desk"; + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "eng_lockdown_emg1"; + name = "Emergency Exit" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engineering_monitoring) +"cDS" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"cEa" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"cEb" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"cEd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/corner/green/half, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "hydroponics_space"; + name = "Space Shields"; + pixel_y = -21 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"cEt" = ( +/obj/machinery/door/airlock/hatch/maintenance/bolted{ + frequency = 1379; + id_tag = "prototype_exterior"; + name = "Fusion Maintenance" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/control) +"cEu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"cEw" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"cEx" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Treatment Center"; + dir = 4; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"cEy" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Atmospherics" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"cEB" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"cEL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"cEN" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/seconddeck/central_stairwell) +"cEW" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"cFe" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "rcheckinner_windows" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/security) +"cFg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"cFh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"cFi" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"cFl" = ( +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cFo" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"cFs" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"cFx" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"cFA" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"cFG" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"cFI" = ( +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"cFR" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"cFT" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1379; + id_tag = "engine_airlock_inner"; + name = "Engine Airlock Interior" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"cFV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"cGc" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"cGe" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/helium{ + start_pressure = 14999 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"cGg" = ( +/obj/structure/bed/chair/office/purple{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/development) +"cGi" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cGn" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/landmark/start{ + name = "Captain" + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"cGp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"cGs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"cGv" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"cGw" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"cGE" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "o22p_in"; + name = "Oxygen Supply Control"; + output_tag = "o22p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngOxygen2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"cGF" = ( +/obj/structure/table/standard, +/obj/item/storage/box/detergent, +/obj/item/storage/box/detergent, +/obj/item/ironing_iron, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/item/ironing_iron, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"cGH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cGN" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "skipjack_shuttle_pump" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"cGV" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"cGY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cHg" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"cHi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/mapped, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cHq" = ( +/obj/structure/table/woodentable/maple, +/obj/item/device/flashlight/lamp/green, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Chapel - Office" + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"cHz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"cHE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"cHJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"cHK" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"cHN" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass/medical{ + dir = 8; + id_tag = "MedbayInf"; + name = "Treatment Center" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"cHP" = ( +/obj/structure/table/woodentable, +/obj/item/airalarm_electronics, +/obj/item/airlock_electronics, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"cHR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"cHZ" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/steeldecal/steel_decals6, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"cIe" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"cIi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"cIH" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"cIM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"cIZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/orange, +/area/security/range) +"cJa" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"cJb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"cJc" = ( +/obj/structure/lattice, +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos) +"cJp" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Port" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"cJs" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"cJv" = ( +/turf/simulated/wall/prepainted, +/area/storage/auxillary/port) +"cJD" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_6"; + name = "escape pod six controller"; + pixel_x = -20; + tag_door = "escape_pod_6_hatch"; + frequency = 1380 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod6/station) +"cJH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 4 + }, +/obj/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"cJI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Quartermaster"; + req_access = newlist() + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + name = "QM Office Shutters"; + id_tag = "qm_office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/deckofficer) +"cJL" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research Maintenance Access"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"cJQ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"cJV" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/three_quarters{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"cJX" = ( +/obj/structure/disposaloutlet, +/obj/machinery/shield_diffuser, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cKb" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"cKg" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"cKo" = ( +/obj/structure/roller_bed, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/camera/network/medbay{ + c_tag = "Critical Wing - EMT Compartment"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"cKr" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"cKt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/aft) +"cKy" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/chem_disp_cartridge/coffee, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_x = 7; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -7; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"cKE" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/red, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"cKF" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"cKH" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/blue, +/obj/item/folder/red, +/obj/item/folder, +/obj/item/folder/nt, +/obj/item/folder/yellow, +/obj/item/folder/white, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"cKJ" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"cKL" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/lounge) +"cKO" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"cKS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"cKU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"cKZ" = ( +/obj/shuttle_landmark/escape_pod/start/pod6, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod6/station) +"cLf" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"cLi" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"cLl" = ( +/obj/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"cLp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/foreport) +"cLq" = ( +/obj/structure/table/standard, +/obj/item/anobattery{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/anobattery{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/anobattery{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/anobattery{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"cLv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/aiModule/solgov, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"cLx" = ( +/obj/structure/table/steel, +/obj/item/stack/material/wood/walnut{ + amount = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"cLE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"cLG" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/floor_decal/industrial/hatch/yellow, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"cLH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/tele_beacon, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"cLI" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"cLQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"cLT" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"cLV" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen/crayon/yellow{ + desc = "A colourful crayon. Please refrain from eating it or putting it in your nose. This one is labeled 'Canary Yellow.'" + }, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - Office"; + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"cMb" = ( +/obj/machinery/uniform_vendor, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"cMe" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"cMf" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/landmark/start, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"cMo" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_starboard_pump" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cMI" = ( +/obj/floor_decal/corner/darkblue, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"cMM" = ( +/obj/machinery/air_sensor/nacelle/fourth/co2, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"cMN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"cMY" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"cNc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "hop_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"cNg" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"cNo" = ( +/obj/floor_decal/industrial/traffic{ + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/floor_decal/industrial/traffic{ + dir = 1; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/shuttle_landmark/lift/rndmaint_top, +/turf/simulated/floor/tiled/techfloor, +/area/turbolift/rndmaint_lift) +"cNp" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"cNv" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"cNA" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"cNF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"cNK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"cNO" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"cNP" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/foreport) +"cOd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button/airlock_interior{ + master_tag = "sd_port"; + name = "interior access button"; + pixel_x = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + id_tag = "sd_port_inner"; + name = "Second Deck Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"cOj" = ( +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/medical) +"cOl" = ( +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/half{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/infirmary) +"cOm" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cOn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_bridge_pump"; + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"cOt" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/cockpit) +"cOz" = ( +/obj/machinery/space_heater, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"cOC" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"cOG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/bridgedeck/port) +"cOK" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"cOL" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"cON" = ( +/obj/structure/closet/secure_closet/engineering_sierra, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/item/device/gps, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"cOR" = ( +/obj/structure/table/standard, +/obj/item/cane{ + pixel_x = 4 + }, +/obj/item/cane{ + pixel_y = 2 + }, +/obj/item/cane{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"cOX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/hygiene/drain, +/obj/structure/hygiene/shower{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"cOY" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"cOZ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = 14 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"cPc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"cPg" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/flashlight/lamp/lava/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"cPv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/tvalve{ + dir = 1; + icon_state = "map_tvalve1"; + state = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"cPA" = ( +/obj/machinery/suspension_gen, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/button/blast_door{ + id_tag = "expe_warehouse"; + name = "Storage Door Control"; + pixel_x = 6; + pixel_y = -24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_XENOARCH","ACCESS_EL")); + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"cPC" = ( +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"cPD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"cPG" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"cPI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"cPK" = ( +/obj/structure/closet/l3closet/general, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"cPM" = ( +/obj/machinery/psi_meter, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"cPY" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"cQa" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"cQb" = ( +/obj/structure/catwalk, +/obj/machinery/nav_light, +/turf/simulated/open, +/area/space) +"cQh" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/sign/deck/third{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"cQn" = ( +/obj/floor_decal/corner/paleblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"cQo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/navbeacon/sierra/SD_forehallway2, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"cQq" = ( +/obj/structure/table/standard, +/obj/random/powercell, +/obj/random/powercell, +/obj/random/powercell, +/obj/random/tech_supply, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/corner/yellow/mono, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"cQD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"cQL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"cQP" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_smes) +"cQR" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"cQT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"cQV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"cRc" = ( +/obj/structure/bed/chair/armchair/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 9; + pixel_y = -21 + }, +/obj/floor_decal/carpet/green, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"cRd" = ( +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"cRe" = ( +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"cRn" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"cRq" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/thirddeck/center) +"cRr" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Supply to Bridge Air Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"cRB" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"cRD" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/seconddeck/aftstarboard) +"cRI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1331; + id_tag = "rescue_shuttle_dock_airlock_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"cRP" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/docking) +"cRT" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"cRX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"cRY" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/random/maintenance, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist() + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/single/cola, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"cSd" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"cSj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cSp" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"cSs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cSz" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"cSC" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"cSI" = ( +/obj/structure/table/steel, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/tank/oxygen_emergency_double, +/obj/item/tank/oxygen_emergency_double, +/obj/random/medical/lite, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"cSW" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"cSZ" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"cTe" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/junk, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"cTj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"cTo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 15000 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber2pV"; + name = "Fourth Deck Port Chamber Vent"; + pixel_x = 8; + pixel_y = 24 + }, +/obj/machinery/button/blast_door{ + id_tag = "d2portnacelle"; + name = "Combustion Chamber Blast Door Control"; + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/button/ignition{ + id_tag = "engines-2"; + pixel_y = 34 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"cTs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/helium, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"cTv" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"cTy" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs) +"cTL" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/hangar_stairs/upper) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"cTR" = ( +/obj/random/maintenance, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/coin, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"cTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"cUd" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/vending/snack{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"cUe" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"cUh" = ( +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"cUn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"cUz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"cUD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/structure/sign/warning/pods/south{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"cUI" = ( +/obj/structure/table/standard, +/obj/item/paper{ + pixel_y = 5 + }, +/obj/random/toy{ + pixel_y = -2; + pixel_x = -11 + }, +/obj/random/toy{ + pixel_y = 5; + pixel_x = 14 + }, +/obj/structure/sign/poster/nyc/wild_cargo{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"cUK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"cUP" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + frequency = 1380; + id_tag = "merchant_shuttle_station_outer"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"cUR" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"cUU" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"cUY" = ( +/obj/shuttle_landmark/sierra/deck4/guppy, +/turf/space, +/area/space) +"cVc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Medical Reception" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"cVd" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"cVl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + controlled = 0; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000; + pressure_checks = 2; + pressure_checks_default = 2; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d3starboard) +"cVp" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"cVq" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"cVB" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos/cobed) +"cVE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "d1portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"cVF" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"cVG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"cVI" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"cWb" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/cockpit) +"cWd" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_11" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"cWh" = ( +/obj/structure/closet/crate/internals/fuel, +/obj/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"cWn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/parts, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"cWt" = ( +/obj/structure/bed/chair/office/teal{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"cWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"cWz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/carpet/green{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"cWK" = ( +/obj/structure/bed/chair/office/green{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"cXg" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_maint) +"cXj" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"cXk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"cXm" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sauna) +"cXp" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/wood/maple{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"cXs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"cXt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"cXu" = ( +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/staging) +"cXB" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist_sierra, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"cXD" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"cXE" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_port" + }, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "td_port"; + name = "Third Deck Port Airlock Controller"; + req_access = list("ACCESS_EXTERNAL"); + dir = 4; + pixel_x = -20 + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"cXG" = ( +/obj/floor_decal/spline/fancy/black, +/obj/structure/closet/fridge/meat, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"cXI" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"cXU" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/machinery/door/airlock/civilian{ + name = "Closet" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"cXW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"cYb" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/item/rolled_towel/green_stripped, +/obj/item/rolled_towel/blue_stripped, +/obj/item/rolled_towel/red_stripped, +/obj/item/rolled_towel/pink_stripped, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"cYd" = ( +/obj/structure/bed/chair/shuttle/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"cYe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"cYk" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "xenobio4_vent"; + name = "Chamber Vent" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"cYn" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/masks, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"cYp" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"cYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/security{ + name = "HOS' waiting room" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"cYC" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + id_tag = "escape_pod_3_berth"; + name = "escape pod three berth controller"; + pixel_x = -20; + pixel_y = 32; + tag_door = "escape_pod_3_berth_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"cYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"cYH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"cYM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"cYN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"cYQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"cYT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"cYV" = ( +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"cZc" = ( +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"cZj" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"cZo" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1443; + id = "containment_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"cZw" = ( +/obj/shuttle_landmark/ert/deck2, +/turf/space, +/area/space) +"cZz" = ( +/obj/structure/closet/coffin, +/obj/structure/railing/mapped, +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"cZE" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"cZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"cZP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/machinery/sparker{ + id_tag = "engines-2"; + pixel_x = -24 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"cZT" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"cZU" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"cZY" = ( +/obj/machinery/turretid/stun{ + control_area = list(/area/turret_protected/ai_upload); + name = "AI Upload turret control"; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"daa" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance{ + name = "Xenoflora Lab Maintenance"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/research) +"dac" = ( +/obj/structure/sign/warning/docking_area{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/fourthdeck/forestarboard) +"dag" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"dal" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"dan" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/charon{ + name = "south bump"; + pixel_y = -24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 6 + }, +/obj/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + color = null + }, +/obj/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"dao" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"daw" = ( +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#b19664" + }, +/area/quartermaster/hangar/upper) +"daA" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"daC" = ( +/obj/structure/catwalk, +/obj/machinery/constructable_frame/machine_frame, +/obj/item/stock_parts/circuitboard/autolathe, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"daE" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"daJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"daK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"daM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "d4portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"daS" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled, +/area/security/brig) +"daT" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/ward) +"daV" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"daZ" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Substation - Second Deck" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"dbc" = ( +/obj/floor_decal/corner/black{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"dbj" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"dbq" = ( +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"dbt" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"dbu" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"dbw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"dby" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/oxygen_pump{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dbB" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"dbD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"dbG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_starboard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"dbQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"dbV" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/starboard) +"dcb" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dch" = ( +/obj/item/material/ashtray/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/turf/simulated/floor/carpet, +/area/vacant/gambling) +"dcr" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"dcy" = ( +/obj/floor_decal/corner/black/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dcz" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"dcD" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dcK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dcU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"dcW" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"ddj" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/bed/sofa/m/brown, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"ddl" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood/maple{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"ddv" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/seconddeck/fore) +"ddw" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"ddI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"ddK" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"ddW" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"ddX" = ( +/obj/floor_decal/solarpanel, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "auxsolarstarboard"; + name = "Aft Starboard Solar Array" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"ddZ" = ( +/obj/random_multi/single_item/space_rabbit, +/obj/structure/catwalk, +/turf/space, +/area/space) +"deh" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"dej" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"deq" = ( +/obj/structure/railing/mapped, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"det" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"dew" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cargo Bay Left "; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"deB" = ( +/obj/structure/rubble, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"deD" = ( +/obj/structure/table/rack, +/obj/item/aiModule/oxygen, +/obj/item/aiModule/oneHuman, +/obj/item/aiModule/antimov, +/obj/item/aiModule/teleporterOffline, +/obj/item/aiModule/quarantine, +/obj/item/aiModule/purge, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/red, +/obj/machinery/door/window{ + autoset_access = 0; + dir = 4; + name = "High-Risk Modules"; + req_access = list("ACCESS_CAPTAIN") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"deG" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/storage/mirror{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"deI" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"deM" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"deO" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 9 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/firstaid/light{ + pixel_y = -4; + pixel_x = -8 + }, +/obj/item/storage/firstaid/light{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/storage/firstaid/light{ + pixel_y = 12; + pixel_x = -8 + }, +/obj/item/storage/firstaid/light{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/storage/firstaid/light{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/storage/firstaid/light{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"deT" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dfd" = ( +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"dfl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"dfs" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/meter, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"dfu" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod6/station) +"dfG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/ironing_board_structure, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"dfI" = ( +/obj/machinery/sparker{ + id_tag = "Xenobio"; + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"dfK" = ( +/turf/simulated/wall/prepainted, +/area/rnd/office) +"dfL" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"dfO" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"dfP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"dfT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"dgc" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "cadetwindow"; + pixel_x = 6; + pixel_y = -21 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -21 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"dgh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/rnd/development) +"dgj" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/sticky_pad/random, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"dgk" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"dgr" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"dgx" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"dgC" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"dgE" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"dgH" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall/hull, +/area/hallway/primary/fourthdeck/center) +"dgK" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dgN" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"dgO" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"dgP" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"dgR" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"dgT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"dhc" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dhe" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"dhj" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/titanium, +/area/exploration_shuttle/power) +"dhl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"dhC" = ( +/obj/structure/catwalk, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"dhH" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"dhI" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/cell/device/standard, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dhX" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"dii" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + dir = 4; + name = "Engine Control Room"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_monitoring) +"dij" = ( +/obj/structure/catwalk, +/obj/machinery/barrier, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"din" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"diy" = ( +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/nuke_storage) +"diG" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/white, +/obj/item/tape_roll, +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/industrial/traffic{ + dir = 8; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled, +/area/assembly/office) +"diI" = ( +/obj/floor_decal/carpet/orange, +/obj/floor_decal/carpet/orange{ + dir = 8 + }, +/obj/floor_decal/carpet/orange{ + dir = 10 + }, +/obj/item/screwdriver, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"diN" = ( +/obj/structure/table/glass, +/obj/machinery/microscope, +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"diO" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"diP" = ( +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"diR" = ( +/turf/simulated/open, +/area/hallway/primary/firstdeck/central_stairwell) +"diT" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/obj/floor_decal/borderfloor/full, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/brig) +"diZ" = ( +/obj/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell three"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "security_permabrig_third_cell_shutters" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"djg" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dji" = ( +/obj/machinery/light/spot, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"djp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/spline/plain/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"djt" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/firstdeck) +"djw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"djA" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"djF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"djH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"djN" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"djQ" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"djR" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/brig) +"djU" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"dkd" = ( +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/games{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"dkf" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster" + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"dkg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"dkl" = ( +/obj/machinery/air_sensor{ + id_tag = "testchamber_sensor" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"dkt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"dkC" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"dkI" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"dkJ" = ( +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters Control"; + pixel_x = -24; + req_access = list("ACCESS_CARGO") + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"dkR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/forestarboard) +"dkS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"dkV" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"dlr" = ( +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/floordetail/edgedrain{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue, +/obj/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"dlH" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cockpit) +"dlI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"dlN" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/item/stool/padded/red, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"dlO" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"dlV" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"dlX" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"dma" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecoms Server Access"; + req_access = newlist(); + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/chamber) +"dmd" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"dme" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"dml" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dmo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dmw" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"dmA" = ( +/obj/structure/catwalk, +/obj/floor_decal/corner/red/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dmG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"dmJ" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"dmM" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"dmN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/air_sensor/nacelle/second, +/obj/machinery/atmospherics/unary/outlet_injector{ + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"dmO" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/bridgedeck/central_stairwell) +"dmQ" = ( +/obj/item/stool/bar, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"dmW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"dnf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"dng" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"dnh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"dnl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "firingspace"; + name = "FIRING RANGE SAFETY SHIELD" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"dnu" = ( +/obj/structure/table/marble, +/obj/machinery/cooker/cereal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"dnx" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"dnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/compressed_gas{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"dnB" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dnG" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/fourth_deck{ + dir = 1; + c_tag = "Fourth Deck - Aft Hallway" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"dnL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/aft) +"dnQ" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "calypso_shuttle_pump_out_internal" + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"dnR" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/masks, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dnU" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Heat Exchangers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dnV" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "HOP" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"dnY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dob" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/paleblue{ + dir = 8 + }, +/obj/floor_decal/corner/black, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"dof" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"doj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"dol" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/decal/cleanable/flour, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"dou" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "chemistry_lockdown"; + name = "Chemistry Shutters" + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"doG" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/standard_unit{ + req_access = newlist() + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "bridge_safe_exterior"; + name = "safe room door-control"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"doJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"doM" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/chapel/main) +"doN" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"doP" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/sierra/suits) +"doV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"dpn" = ( +/obj/structure/table/standard, +/obj/item/storage/box/detergent, +/obj/item/storage/box/detergent, +/obj/item/ironing_iron, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"dpp" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"dpq" = ( +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"dps" = ( +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/vending/snix, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"dpu" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"dpG" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/office) +"dpI" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"dpR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"dpT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"dpV" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod1/station) +"dpX" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"dpY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/quartermaster/hangar_atmos) +"dqa" = ( +/obj/structure/table/standard, +/obj/item/book/manual/nuclear, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"dqe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"dqh" = ( +/obj/structure/closet{ + closet_appearance = /singleton/closet_appearance/secure_closet/engineering/tools + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/tape_roll, +/obj/random/powercell, +/obj/item/clothing/glasses/welding, +/obj/item/device/flashlight/maglight, +/obj/item/device/flash, +/obj/item/device/geiger, +/obj/item/device/multitool, +/obj/item/storage/box/lights/mixed, +/obj/item/device/synthesized_instrument/guitar, +/obj/random/single/color/cable_coil, +/obj/random/firstaid, +/obj/random/material, +/obj/random/material_rnd_glass, +/obj/random/material_rnd_steel, +/obj/item/clothing/gloves/insulated, +/obj/item/clothing/mask/plunger, +/turf/simulated/floor/tiled/monotile, +/area/vacant/cargo) +"dqi" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + name = "Internal Affairs Agent Dorm"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/cobed) +"dqs" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"dqu" = ( +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"dqv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + dir = 1; + name = "Internal Affairs Agent Maintaince"; + secured_wires = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa) +"dqz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"dqB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"dqF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"dqP" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"dqY" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"dra" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/random/maintenance, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"drb" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#6a97b0" + }, +/area/quartermaster/hangar/upper) +"drh" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding, +/obj/item/storage/belt/utility, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"dro" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/vehicle/train/cargo/trolley, +/obj/floor_decal/spline/plain/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"drr" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"drx" = ( +/obj/item/stool/padded, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"dry" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/half, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"drA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"drH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"drK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"drP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"dsg" = ( +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"dsj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"dsk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"dsm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dsp" = ( +/obj/floor_decal/corner/black/border, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dsE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"dsP" = ( +/turf/simulated/wall/r_wall/hull, +/area/security/sierra/prison) +"dsW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"dsX" = ( +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/sleep/cryo/south) +"dsY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_l) +"dtd" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/thirddeck/central_stairwell) +"dte" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"dtn" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"dto" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"dtt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng3_outer"; + name = "First Deck Starboard Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1starboard) +"dtv" = ( +/obj/item/broken_bottle{ + pixel_x = 10 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"dty" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"dtE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"dtV" = ( +/obj/item/trash/beef{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"dtY" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"dua" = ( +/obj/structure/bed/sofa/l/brown{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"dug" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/machinery/light, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"dul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"dus" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"dut" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"duu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology) +"dux" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/structure/flora/pottedplant/tall, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"duy" = ( +/obj/structure/table/steel, +/obj/item/book/manual/nt_regs, +/obj/item/folder/nt, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"duz" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/forestarboard) +"duA" = ( +/obj/structure/bed/chair/wood/maple, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"duB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"duD" = ( +/obj/machinery/door/airlock/civilian{ + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood/walnut, +/area/vacant/cargo) +"duE" = ( +/obj/floor_decal/corner/black/mono, +/obj/machinery/door/airlock/command{ + name = "Head Of Security Dorm"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#9d2300"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos/cobed) +"duF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"duG" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"duJ" = ( +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access_maintaince"; + name = "Xenobotany Lab Access Console"; + pixel_y = -24; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"duQ" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"duT" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/chair/pew/left, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"dva" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"dvc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dvd" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = -24 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"dvv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"dvx" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"dvy" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"dvA" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"dvF" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"dvG" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"dvK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"dvU" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"dvW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dwg" = ( +/obj/structure/sign/warning/vent_port{ + dir = 1 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1port) +"dwh" = ( +/obj/machinery/sparker{ + id_tag = "Isocell3"; + pixel_x = -18 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"dwo" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"dwq" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"dwz" = ( +/obj/floor_decal/corner/red, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_second_cell_shutters"; + name = "2nd Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_x = 21; + dir = 8 + }, +/obj/machinery/button/flasher{ + dir = 8; + pixel_x = 22; + pixel_y = -9; + id_tag = "security_second_cell_flash"; + req_access = list("ACCESS_SECURITY") + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"dwC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"dwD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"dwG" = ( +/obj/floor_decal/corner/red, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/alternate/door/bolts{ + dir = 4; + id_tag = "bar_private_room_1"; + name = "Unlock"; + pixel_x = -24; + pixel_y = -7; + req_access = list("ACCESS_BAR") + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"dwQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"dwT" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dwV" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"dxa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_1{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"dxd" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/flora/pottedplant/orientaltree, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/office) +"dxg" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"dxi" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"dxk" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod3/station) +"dxl" = ( +/obj/structure/sign/warning/moving_parts{ + dir = 8; + pixel_x = 34 + }, +/obj/machinery/conveyor{ + id = "charon_cargo_out"; + name = "charon interior conveyor belt" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"dxo" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/closet/secure_closet{ + name = "long term chamber locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/borderfloor/full, +/obj/floor_decal/industrial/hatch/orange, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/brig) +"dxq" = ( +/obj/floor_decal/chapel, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"dxB" = ( +/obj/structure/bed/chair/office/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"dxC" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"dxN" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"dxQ" = ( +/obj/floor_decal/industrial/danger, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"dxS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 4 + }, +/obj/machinery/light, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai_teleport) +"dxX" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/conveyor{ + dir = 4; + id = "compactor" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"dxZ" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/aftstarboard) +"dyd" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"dyp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"dys" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"dyx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"dyz" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"dyA" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_smes) +"dyC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"dyD" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"dyK" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"dyS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"dyT" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "concheckwindow"; + name = "Operation Checkpoint Shutters"; + opacity = 0 + }, +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/opscheck) +"dzc" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + pixel_y = 9; + pixel_x = -2 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + pixel_y = 1; + pixel_x = 3 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"dzd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"dze" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"dzh" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"dzl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"dzn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"dzt" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"dzv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dzx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"dzD" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"dzO" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Telecommunications"; + charge = 5e+006; + input_attempt = 1; + input_level = 250000; + output_attempt = 1; + output_level = 250000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"dzP" = ( +/obj/machinery/recharger/wallcharger{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/random/snack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"dzR" = ( +/obj/structure/closet/crate/trashcart, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"dzV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hydroponics) +"dzY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/button/blast_door{ + id_tag = "petrovcell3"; + name = "Test Chamber Vent"; + pixel_x = -26; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"dAl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"dAn" = ( +/obj/machinery/tele_beacon, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"dAr" = ( +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"dAw" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"dAy" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dAE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dAF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/closet/emcloset, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"dAH" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_4_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"dAK" = ( +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"dAQ" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"dAX" = ( +/obj/machinery/door/airlock/glass/security{ + name = "Forensics" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/forensic/lab) +"dAY" = ( +/obj/item/stack/tile/walnut{ + pixel_y = 17; + pixel_x = -20 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/vacant/bar) +"dBb" = ( +/obj/structure/closet/secure_closet/engineering_sierra, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/gps, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"dBd" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"dBh" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dBm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"dBn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"dBq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Storage"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"dBv" = ( +/obj/structure/table/standard, +/obj/item/sticky_pad/random, +/obj/item/tape_roll, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/corner/yellow/mono, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Primary Tool Storage" + }, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"dBw" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"dBG" = ( +/obj/machinery/computer/modular/preset/security, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"dBI" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"dBO" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"dBP" = ( +/obj/machinery/telecomms/receiver/preset_right, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"dBS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/item/stool/padded/red, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"dBU" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/morgue) +"dBV" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "EngineVent"; + name = "Reactor Vent" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"dCa" = ( +/obj/machinery/cooker/grill, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Garden - Straboard" + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"dCc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dCe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"dCk" = ( +/obj/floor_decal/corner/black/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dCm" = ( +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"dCn" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"dCr" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"dCx" = ( +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/analyzer{ + pixel_x = 6 + }, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_circuit_printer, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/development) +"dCA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"dCG" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/red/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"dCM" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/random/trash, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"dCO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"dCQ" = ( +/obj/structure/cart{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftstarboard) +"dCW" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dDa" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dDb" = ( +/obj/random_multi/single_item/space_rabbit, +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"dDe" = ( +/obj/structure/railing/mapped, +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dDf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + autoset_access = 0; + name = "Petrov Dock"; + req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"dDg" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/target/alien, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dDh" = ( +/turf/simulated/wall/prepainted, +/area/vacant/utility) +"dDj" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dDp" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"dDx" = ( +/obj/machinery/door/airlock/hatch{ + autoset_access = 0; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"dDz" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"dDA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"dDG" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8; + start_pressure = 450 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"dDN" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"dDU" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"dDW" = ( +/turf/simulated/wall/prepainted{ + can_open = 1 + }, +/area/maintenance/firstdeck/aftstarboard) +"dEa" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"dEo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"dEs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"dEv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/foreport) +"dEy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"dEB" = ( +/turf/unsimulated/mask, +/area/hallway/primary/firstdeck/center) +"dEI" = ( +/obj/random/obstruction, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dEQ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"dET" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"dFc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/maintenance_equipstorage) +"dFh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"dFn" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"dFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 40 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"dFA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"dFF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"dFK" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"dFQ" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"dFT" = ( +/obj/structure/catwalk, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dFV" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/red, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"dFZ" = ( +/obj/machinery/floodlight, +/obj/floor_decal/spline/plain/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"dGd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"dGe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/rack, +/obj/random/junkfood, +/obj/random/hat, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"dGi" = ( +/obj/floor_decal/corner/black/mono, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"dGl" = ( +/obj/floor_decal/techfloor/corner, +/obj/random/trash, +/obj/structure/cart{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"dGx" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"dGz" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"dGA" = ( +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dGC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"dGG" = ( +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"dGJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/obj/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"dGT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"dGY" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dHa" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/computer/modular/preset/civilian/professional{ + dir = 4 + }, +/obj/floor_decal/corner/purple/full, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"dHi" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/plastic/fifty, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"dHu" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"dHv" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"dHB" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 1; + pixel_y = -32 + }, +/turf/space, +/area/space) +"dHC" = ( +/obj/structure/cryofeed, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"dHF" = ( +/obj/machinery/door/airlock/command{ + name = "Flight Control Tower"; + req_access = list("ACCESS_HANGAR"); + autoset_access = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/seconddeck/starboard) +"dHK" = ( +/turf/simulated/wall/r_wall/hull, +/area/engineering/hardstorage) +"dHN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Equipment" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/engineering/locker_room) +"dHW" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"dIb" = ( +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/airlock_sensor{ + id_tag = "engine_airlock_sensor"; + master_tag = "engine_airlock"; + name = "Cycle Airlock"; + pixel_x = 14; + pixel_y = 24 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"dIi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/flora/pottedplant/tall, +/obj/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"dIj" = ( +/obj/machinery/button/blast_door{ + id_tag = "sup_office"; + name = "Desk Shutter Control"; + pixel_y = 22; + req_access = list("ACCESS_CARGO") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/yellow, +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"dIn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"dIp" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/rnd/entry) +"dIu" = ( +/obj/machinery/tele_beacon, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"dIE" = ( +/obj/machinery/robotics_fabricator, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"dIF" = ( +/obj/floor_decal/corner/purple/half{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"dII" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"dIL" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"dIP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/spot, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"dIR" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"dIX" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"dJd" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/material/ashtray/plastic{ + pixel_y = 5; + pixel_x = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"dJe" = ( +/obj/floor_decal/industrial/traffic, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dJg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"dJh" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/emcloset/anchored, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"dJo" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc/high/critical{ + dir = 4; + pixel_x = 24; + name = "east bump" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"dJp" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "petrov_shuttle_pump" + }, +/obj/floor_decal/techfloor, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"dJq" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "admin_shuttle_dock_sensor"; + master_tag = "admin_shuttle_dock"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"dJs" = ( +/obj/structure/bed/chair/padded/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"dJA" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"dJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"dJF" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/prison) +"dJO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/hygiene/toilet{ + name = "captain's throne" + }, +/obj/item/soap, +/obj/structure/curtain/open/shower, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room) +"dJP" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 14; + pixel_x = -5 + }, +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/cafe/upper) +"dJQ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dJY" = ( +/obj/item/extinguisher/mini, +/obj/structure/table, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"dJZ" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dKc" = ( +/obj/machinery/computer/modular/preset/library, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"dKd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"dKh" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"dKo" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Aft Hallway - Port Rooms" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"dKv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical{ + name = "Hospital Back Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"dKB" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/security/nuke_storage) +"dKE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"dKQ" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"dLa" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"dLd" = ( +/obj/structure/table/standard, +/obj/random/maintenance, +/turf/simulated/floor/tiled/freezer, +/area/medical/virology/lab) +"dLe" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos/storage) +"dLj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/forestarboard) +"dLk" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"dLm" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"dLu" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/starboard) +"dLD" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Port Hallway"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"dLE" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "ai_core_airlock"; + name = "AI Core Airlock Console"; + pixel_y = 24; + req_access = list("ACCESS_AI_UPLOAD"); + tag_airpump = "ai_core_pump"; + tag_chamber_sensor = "ai_core_sensor"; + tag_exterior_door = "ai_core_outer"; + tag_interior_door = "ai_core_inner" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"dLK" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/synthesized_instrument/synthesizer, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"dLM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"dLU" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "xenobotany_access_maintaince_outer"; + name = "Xenobotany Lab Access" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) +"dMb" = ( +/obj/structure/disposaloutlet{ + dir = 8; + name = "cargo outlet" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"dMc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"dMl" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/paint/nt_white, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "toxins_petrov_shutters"; + name = "Mixing Chamber Blast Shutters" + }, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/gas) +"dMy" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"dMC" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"dME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dMG" = ( +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"dMH" = ( +/obj/structure/closet/crate/secure/biohazard{ + req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER")) + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"dMK" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_hall_shutt" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"dMQ" = ( +/obj/machinery/atmospherics/unary/tank{ + color = "#ff0000"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"dMS" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"dMW" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar) +"dNa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Control - Third Deck - Port" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"dNb" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "pathfinder_office" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id_tag = "exp_leader_window_to_space"; + name = "Exploration Leader Window Blast Door" + }, +/turf/simulated/floor/plating, +/area/command/exploration_leader) +"dNc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_y = 10 + }, +/obj/item/pen{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"dNg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dNj" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"dNk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"dNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "civsafedoor"; + name = "safe room door-control"; + pixel_y = 24 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"dNp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"dNr" = ( +/obj/structure/railing/mapped, +/obj/structure/bed/sofa/r/blue, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"dNs" = ( +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"dNz" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/research) +"dND" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"dNN" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply{ + pixel_y = -8; + pixel_x = -4 + }, +/obj/random/tech_supply{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/random/tool{ + pixel_y = -3; + pixel_x = 4 + }, +/obj/random/tool{ + pixel_x = -2 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"dNR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"dNT" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/wine, +/obj/item/reagent_containers/food/drinks/glass2/wine, +/obj/item/reagent_containers/food/drinks/bottle/tadmorwine, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"dNX" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"dNY" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Brig's visiting room shutters"; + id_tag = "visiting_room_windows_shutters" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/prison) +"dOc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/r_wall/hull{ + can_open = 1 + }, +/area/rnd/xenobiology/level1) +"dOd" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"dOh" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = newlist(); + dir = 4 + }, +/obj/item/stool/padded, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"dOk" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_x = -32; + pixel_y = -9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"dOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"dOr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/visitors) +"dOA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"dOB" = ( +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar) +"dOH" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"dOK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"dOR" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dOS" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"dOV" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"dPg" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge) +"dPl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/tcommsat/storage) +"dPn" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 23 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"dPq" = ( +/obj/structure/rubble, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/decal/cleanable/filth, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"dPt" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/lime/mono, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"dPv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "d2portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"dPB" = ( +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"dPE" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/alternate/door/bolts{ + dir = 8; + id_tag = "bar_private_room_2"; + name = "Unlock"; + pixel_x = 24; + pixel_y = -7; + req_access = list("ACCESS_BAR") + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"dPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"dPP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"dQa" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "CO21p_in"; + injecting = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"dQl" = ( +/obj/machinery/door/airlock/civilian{ + name = "Long Term Prison" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/prison) +"dQp" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/cockpit) +"dQq" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dQs" = ( +/obj/machinery/beehive, +/obj/floor_decal/corner/green/half, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"dQB" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_l) +"dQG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"dQH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/abandoned_hydroponics) +"dQM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/entry) +"dQP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"dQU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"dQY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"dRc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"dRi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"dRl" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "hydro<-bar"; + name = "Hydro Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"dRn" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"dRq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"dRs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"dRw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"dRD" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"dRO" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"dRP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dRQ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dSg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"dSr" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"dSt" = ( +/obj/machinery/door/airlock/external/bolted{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_3_hatch"; + name = "Escape Pod Three Hatch" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod3/station) +"dSz" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/chair/wood/maple, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"dSC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"dSQ" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"dSS" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"dSU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"dSW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/engineering{ + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"dSX" = ( +/obj/structure/sign/warning/secure_area{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"dSZ" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/structure/shuttle/engine/heater{ + pixel_y = 32 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_pod/escape_pod1/station) +"dTa" = ( +/obj/machinery/ai_status_display, +/obj/paint_stripe/turquoise, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai) +"dTq" = ( +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"dTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"dTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + dir = 4 + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/rnd/containment) +"dTD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/fireaxecabinet{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/table/rack, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/storage/box/lights/mixed, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"dTL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dTW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/barrier, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"dTZ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"dUd" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Portables" + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"dUh" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"dUn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/steel, +/obj/machinery/photocopier/faxmachine{ + department = "HOS" + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -26; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"dUq" = ( +/obj/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/bed/chair/pew/mahogany, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"dUD" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"dUF" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_north = 1; + tag_north_con = 0.5; + tag_south = 2; + tag_west = 1; + tag_west_con = 0.5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"dUH" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/bed/chair/padded/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"dUK" = ( +/obj/structure/table/woodentable/maple, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"dUQ" = ( +/obj/decal/cleanable/filth, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"dUV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"dUW" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "TEG bypass valve" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"dVc" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/freezer, +/area/medical/virology/lab) +"dVj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"dVn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dVo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"dVr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"dVs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"dVD" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"dVG" = ( +/obj/structure/flora/seaweed/mid, +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"dVH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"dVJ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Chamber Input" + }, +/obj/machinery/button/blast_door{ + id_tag = "toxins_petrov_exhaust"; + name = "Chamber Vent"; + pixel_y = -24; + pixel_x = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "toxins_petrov_shutters"; + name = "Chamber Protective Shutters"; + pixel_y = -24; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"dVL" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"dVN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"dVP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"dVR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/rad_collector, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"dVT" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "solar_port_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar) +"dWf" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"dWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Fuel Bay" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/fuelbay) +"dWi" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/table/woodentable_reinforced/ebony, +/obj/machinery/recharger, +/obj/machinery/light/spot, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"dWn" = ( +/obj/structure/catwalk, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"dWp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"dWr" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"dWt" = ( +/obj/structure/flora/pottedplant/decorative, +/obj/floor_decal/corner/lime/half{ + dir = 4 + }, +/obj/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Stairwell" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"dWy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"dWA" = ( +/obj/machinery/papershredder, +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"dWB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"dWC" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"dWF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"dWJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"dWM" = ( +/obj/floor_decal/industrial/warning/half, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"dWO" = ( +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"dWS" = ( +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"dXc" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/floor_decal/carpet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"dXe" = ( +/obj/structure/closet/jcloset/sierra, +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"dXp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"dXy" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"dXI" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"dXO" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"dYa" = ( +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"dYd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"dYi" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"dYk" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"dYl" = ( +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = -24 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Stairwell"; + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/thirddeck/central_stairwell) +"dYn" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_starboard) +"dYr" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/machinery/light, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"dYs" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"dYx" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"dYA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"dYG" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"dYL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"dYS" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"dYW" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/equipstorage) +"dYZ" = ( +/obj/structure/bed/chair/office/purple{ + dir = 8 + }, +/obj/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"dZf" = ( +/obj/structure/filingcabinet, +/obj/item/folder/white, +/obj/item/folder/blue, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"dZg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"dZm" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/substation/seconddeck) +"dZu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"dZA" = ( +/obj/structure/hygiene/faucet, +/turf/simulated/floor/pool, +/area/crew_quarters/sauna) +"dZF" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"dZK" = ( +/obj/structure/fitness/weightlifter, +/obj/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"dZU" = ( +/obj/structure/table/glass, +/obj/random/maintenance, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/item/defibrillator/loaded, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"dZW" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/barrier, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"eae" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"eaf" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/generic, +/obj/random/junk, +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/vacant/mess) +"eah" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 + }, +/obj/item/reagent_containers/food/snacks/semki, +/obj/structure/displaycase{ + icon_state = "labcageb0" + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"eai" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted, +/area/maintenance/substation/fourthdeck) +"eap" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/reinforced, +/area/maintenance/firstdeck/aftport) +"eav" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 5 + }, +/obj/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + color = null; + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/random/blood_packs, +/obj/random/blood_packs, +/obj/item/roller_bed, +/obj/item/roller_bed, +/obj/structure/closet/medical_wall{ + pixel_y = 32 + }, +/obj/item/storage/firstaid/sleekstab, +/obj/item/storage/firstaid/sleekstab, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"eaD" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"eaN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"eaO" = ( +/obj/structure/hygiene/shower{ + pixel_y = 15 + }, +/obj/floor_decal/industrial/warning, +/obj/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"eaT" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"ebc" = ( +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"ebf" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/machinery/sparker{ + id_tag = "engines"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"ebh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ebl" = ( +/obj/machinery/button/blast_door{ + id_tag = "xenobioa3"; + name = "Containment Blast Doors"; + pixel_x = -6; + pixel_y = 21; + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"ebs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"ebt" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"ebz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"ebF" = ( +/obj/structure/bed/chair/padded/green{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"ebG" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"ebM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/sign/warning/nosmoking_1{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ece" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ecg" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"ecl" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_2_pump" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_2"; + name = "escape pod two controller"; + pixel_x = -20; + tag_door = "escape_pod_2_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"ecA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "bo_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/sergeant) +"ecC" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"ecF" = ( +/obj/machinery/disposal, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"ecJ" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_permabrig_second_cell_shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"ecL" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"ecS" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"edb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"edc" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"edh" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Brig's visiting room shutters"; + id_tag = "visiting_room_windows_shutters" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"edi" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"edj" = ( +/obj/fluid_mapped, +/obj/item/clothing/under/swimsuit/red, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"edr" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/folder/blue, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"edt" = ( +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"edu" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/bridge/lobby) +"edw" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"edA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"edD" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"edI" = ( +/obj/structure/closet/secure_closet/prospector, +/obj/item/shuttle_beacon, +/obj/item/device/radio, +/obj/item/storage/belt/utility/full, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"edK" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"edR" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/gas) +"eea" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"eec" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Subgrid"; + name_tag = "Engine Subgrid" + }, +/obj/machinery/power/apc/super/critical{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"eee" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"eek" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/cabinet/forensics{ + name = "forensics technician's cabinet" + }, +/obj/item/storage/briefcase/crimekit{ + pixel_y = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"eel" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"eep" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_atmos_airlock"; + name = "Engine Room Airlock Controlls"; + pixel_y = -24; + req_access = list("ACCESS_ENGINE_EQUIP"); + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"eeE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"eeI" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"eeL" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"eeW" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"efa" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"efb" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"eff" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"efi" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"efu" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"efw" = ( +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "o23p_in"; + name = "Oxygen Supply Control"; + output_tag = "o23p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngOxygen3" + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"efB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sauna) +"efD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"efM" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "AI Core Access" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai) +"efQ" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod11/station) +"efZ" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 4; + id_tag = "rescue_shuttle_dock_airlock_pump"; + power_rating = 25000 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"egb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"egd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"egi" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 4; + pixel_x = -32 + }, +/turf/space, +/area/space) +"egj" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/seconddeck/center) +"egk" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/compactor) +"egn" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft) +"ego" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"egr" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"egt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/spline/fancy/wood/cee, +/obj/machinery/door/window/westright{ + dir = 2 + }, +/obj/machinery/door/window/westright{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"egz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"egI" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 1; + tag_south = 2; + tag_west = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"egJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"egL" = ( +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"egT" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"egW" = ( +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"egZ" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"eha" = ( +/obj/machinery/reagentgrinder, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"ehe" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"ehs" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Portables" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"eht" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/infirmary) +"ehw" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"ehB" = ( +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"ehI" = ( +/obj/machinery/telecomms/processor/preset_four, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"ehT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"ehU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/techfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"ehW" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eia" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"eig" = ( +/obj/structure/curtain/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"eiD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3starboard) +"eiO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Medical Equipment"; + sort_type = "Medical Equipment" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"eiQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"eiT" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/explorer, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"eiV" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"eiW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Fusion Substation"; + name_tag = "Fusion Substation" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"eja" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_1_pump" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 8; + id_tag = "escape_pod_1"; + name = "escape pod one controller"; + pixel_x = 20; + tag_door = "escape_pod_1_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"ejc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ejh" = ( +/obj/structure/table/steel, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/atmospipes, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"ejn" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ejo" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + id_tag = "security_permabrig_lobby_shutters" + }, +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"ejp" = ( +/obj/structure/bed/sofa/l/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"ejr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/virology/ward) +"ejy" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ejB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"ejL" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"ejO" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "First Deck Port Nacelle"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1port) +"ejQ" = ( +/obj/catwalk_plated, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ejR" = ( +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"ejS" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"ekc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"eke" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"ekr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance{ + autoset_access = 0; + name = "Third Deck Starboard Nacelle"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"ekv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - Entry"; + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ekw" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"ekG" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"ekH" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"ekP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ekS" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/molten_item, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"ekV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"ekY" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"ekZ" = ( +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/analyzer{ + pixel_x = 6 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"eln" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/cryo/south) +"elu" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"elC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"elF" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "cockpit_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cockpit) +"elJ" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood{ + icon_state = "wood_broken0" + }, +/area/maintenance/firstdeck/forestarboard) +"elL" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/railing/mapped, +/turf/simulated/floor/airless, +/area/space) +"elN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"elP" = ( +/obj/random/junk, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"elS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/maintenance/firstdeck/aftstarboard) +"elU" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/bronze, +/obj/item/storage/mirror{ + pixel_x = 24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"emb" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Utility - First Backup" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"emi" = ( +/obj/machinery/door/window{ + autoset_access = 0; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"emo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway) +"emp" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/machinery/power/generator{ + anchored = 1; + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"emx" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/closet/l3closet/scientist/multi, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"emC" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Special Containment"; + dir = 4; + network = list("Research","Miscellaneous Reseach") + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"emE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"emK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"emO" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/obj/structure/curtain/open/bed{ + anchored = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"emS" = ( +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"emU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Utility Up"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/fourthdeck) +"emY" = ( +/obj/machinery/cryopod, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"enc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"enp" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"enq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"enG" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"enM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"enS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"enW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"enZ" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"eod" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/galley/backroom) +"eoi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/hygiene/drain, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level2) +"eok" = ( +/turf/simulated/wall/r_wall/hull, +/area/hallway/primary/fourthdeck/center) +"eon" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"eou" = ( +/obj/machinery/robotics_fabricator, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"eoG" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"eoJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Evidence Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/evidence) +"eoO" = ( +/obj/structure/catwalk, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eoQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"eoT" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"eoV" = ( +/obj/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "firing_range_pump" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"eoX" = ( +/obj/machinery/artifact_analyser, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"epb" = ( +/obj/shuttle_landmark/escape_pod/start/pod4, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod4/station) +"epe" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"epf" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "SupermatterDoor"; + name = "Supermatter Access Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"epi" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + target_pressure = 15000; + regulate_mode = 1; + unlocked = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/incinerator) +"epj" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"epk" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/mop/broom, +/obj/item/mop/broom{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/item/mop/broom{ + pixel_y = 9; + pixel_x = 7 + }, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"epl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/galley) +"epn" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"epp" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"epq" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/corner/black/full, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"eps" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"epy" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"epB" = ( +/obj/structure/bed/sofa/l/blue{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 6 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 10 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"epF" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"epQ" = ( +/obj/structure/morgue, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"epT" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"eqc" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/tiled, +/area/rnd/office) +"eqd" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/machinery/recharger/wallcharger{ + dir = 1; + pixel_y = -22 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"eqg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/fore) +"eqm" = ( +/turf/simulated/wall/r_wall/hull{ + can_open = 1 + }, +/area/vacant/cargo) +"eqo" = ( +/obj/decal/cleanable/dirt, +/obj/item/ore/iron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crucian_hangar/start) +"eqq" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"eqs" = ( +/obj/structure/table/steel, +/obj/item/storage/box/glasses, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"eqt" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"eqx" = ( +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"eqA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack/dark, +/obj/item/storage/firstaid/trauma{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/firstaid/trauma{ + pixel_x = -7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 7 + }, +/obj/floor_decal/spline/plain/paleblue{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"eqF" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "fuel2p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"eqS" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/medical/virology/lab) +"eqV" = ( +/obj/floor_decal/corner/red/mono, +/obj/structure/closet/secure_closet{ + name = "Checkpoint Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/button/blast_door{ + dir = 4; + pixel_x = -29; + name = "Bridge and lobby shutoff"; + id_tag = "lob_bridge_lock" + }, +/obj/machinery/button/blast_door{ + dir = 4; + pixel_x = -20; + name = "Rear exit blastdoor"; + id_tag = "lob_rear_exit" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"eqX" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"eqZ" = ( +/obj/floor_decal/industrial/loading, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/forestarboard) +"era" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"erj" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"erp" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/open, +/area/space) +"err" = ( +/obj/machinery/power/emitter{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"ert" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/item/device/tape, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"erx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"erA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"erN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"erQ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "auxsolarstrbbridge"; + name = "Bridge Auxiliary Solar Array" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_starboard) +"erR" = ( +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Cryogenics"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"erY" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/random/closet, +/obj/decal/cleanable/dirt, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"erZ" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/supply_public{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"esd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"esg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"esi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"esk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"esl" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "xenobotany_access_maintaince_inner"; + name = "Xenobotany Lab Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/xenoflora) +"esn" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"eso" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/machinery/button/blast_door{ + id_tag = "security_sergeant_shutters"; + name = "Desk Shutters"; + req_access = list("ACCESS_WARDEN"); + pixel_y = -4; + pixel_x = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/folder/red, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"esx" = ( +/obj/machinery/power/terminal, +/obj/item/stool, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"esy" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"esB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"esD" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"esF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/shield_diffuser, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/cee, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"etl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"etw" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"etx" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_5_hatch"; + name = "Escape Pod Five Hatch" + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"etA" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"etE" = ( +/obj/floor_decal/corner/purple/three_quarters, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"etK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"etL" = ( +/obj/structure/table/rack, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"etS" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/toolcloset/excavation, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"etT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/forestarboard) +"etV" = ( +/obj/shuttle_landmark/lift/medical_bottom, +/turf/simulated/floor/plating, +/area/medical/morgue) +"eui" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"euj" = ( +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"euo" = ( +/obj/machinery/door/airlock{ + door_color = "#78523b"; + name = "Sauna" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sauna) +"eup" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"euE" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Mech Bay"; + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"euR" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"euX" = ( +/obj/structure/railing/mapped, +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/ivbag/nanoblood, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/opos, +/obj/item/reagent_containers/ivbag/blood/human/aneg, +/obj/item/reagent_containers/ivbag/blood/human/apos, +/obj/item/reagent_containers/ivbag/blood/human/bneg, +/obj/item/reagent_containers/ivbag/blood/human/bpos, +/obj/item/reagent_containers/ivbag/blood/human/abneg, +/obj/structure/curtain/medical, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/blood_packs, +/obj/random/blood_packs, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"evm" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/materials_storage) +"evo" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/frame/light_switch, +/obj/item/frame/fire_alarm, +/obj/item/frame/air_alarm{ + pixel_y = -16 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"evv" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"evy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/evidence) +"evz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"evB" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/aftport) +"evE" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/brig) +"evG" = ( +/obj/random/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"evH" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"evJ" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"evY" = ( +/obj/floor_decal/techfloor, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"ewe" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"ewh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/flasher{ + id_tag = "security_pod_flash"; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"ewl" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"ewq" = ( +/obj/structure/sign/warning/vent_port, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3starboard) +"ewu" = ( +/obj/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/bed/chair/pew/left/mahogany, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"eww" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 1; + tag_south = 2; + tag_east = 8 + }, +/obj/engine_setup/filter, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ewz" = ( +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"ewF" = ( +/obj/machinery/light/spot, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"ewO" = ( +/obj/floor_decal/corner/black{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"ewQ" = ( +/obj/machinery/navbeacon/sierra/TD_fore5, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"ewS" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/central_stairwell) +"ewZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"exi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/locker_room) +"exj" = ( +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"exk" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1port) +"exm" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "concheckwindow2"; + name = "Research Checkpoint Shutters"; + opacity = 0 + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/security) +"exs" = ( +/obj/structure/sign/warning/airlock{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar) +"exx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"exA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"exG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"exH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"exI" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"exK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hydroponics) +"exM" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"exY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Engineering Bay"; + sort_type = "Engineering Bay" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"eyb" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/incinerator) +"eyl" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"eym" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"eyn" = ( +/obj/machinery/light, +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/closet/secure_closet/explorer/pilot, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"eyr" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"eyD" = ( +/obj/machinery/button/windowtint{ + dir = 4; + id = "interrogation_no2_windows"; + pixel_x = -22; + pixel_y = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/floor_decal/corner/black/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"eyF" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaaleft" + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"eyO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"eyQ" = ( +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 31 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 24 + }, +/turf/simulated/open, +/area/hallway/primary/seconddeck/central_stairwell) +"eyY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3port) +"ezl" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"ezv" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"ezw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_eva) +"ezy" = ( +/obj/structure/table/glass, +/obj/item/towel/random, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/random/soap, +/obj/item/lipstick/random{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"ezz" = ( +/obj/structure/table/woodentable_reinforced/mahogany/walnut, +/obj/floor_decal/spline/fancy/black, +/obj/item/flame/candle, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"ezA" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/stack/material/ocp/fifty, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"ezH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"ezI" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/crate, +/obj/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ezK" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/grass/cut, +/area/rnd/xenobiology/xenoflora) +"ezL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"ezP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "eng_QAW"; + name = "Quick Access Warehouse" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "eng_QAW"; + name = "Shutters Control"; + pixel_x = -24; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"eAa" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"eAi" = ( +/obj/structure/table/steel, +/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/security) +"eAj" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"eAk" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/brace{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"eAo" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"eAu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + id_tag = "escape_pod_4_berth"; + name = "escape pod four berth controller"; + pixel_x = 20; + pixel_y = -32; + tag_door = "escape_pod_4_berth_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"eAz" = ( +/turf/simulated/wall/prepainted, +/area/medical/staging) +"eAG" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"eAH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"eAI" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "eva_shutters"; + name = "EVA Shutters"; + pixel_y = 21; + req_access = list("ACCESS_EVA") + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"eAM" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_shutt" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/lockdown{ + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/plating, +/area/bridge/lobby) +"eAP" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"eAS" = ( +/obj/structure/ladder/up, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eAT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/ocp_wall, +/area/engineering/engine_room) +"eAU" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"eBq" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/structure/sign/warning/pods/east{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"eBs" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/fore) +"eBw" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"eBA" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s" + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod6/station) +"eBC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "bridge_safe_exterior"; + name = "Bridge Safe Room" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/bridge) +"eBD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/games, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"eBL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry) +"eBY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/kitchen, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/barbecue, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Kitchen - Cooking" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"eCe" = ( +/obj/floor_decal/corner/red/border, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Treatment Center - Observation"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"eCf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + controlled = 0; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000; + pressure_checks = 2; + pressure_checks_default = 2; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d1starboard) +"eCj" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"eCo" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"eCs" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/undies_wardrobe, +/obj/machinery/light, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"eCv" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/recharger, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"eCy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"eCH" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"eCI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"eCO" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"eCP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Port Thruster"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"eCQ" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/centralport) +"eCX" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"eCZ" = ( +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"eDb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Visiting Room" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/brig) +"eDe" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/camera/network/command{ + c_tag = "Command - Adjutants"; + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"eDg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"eDk" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = -6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobio2_vent"; + name = "Cell 2 Vent"; + pixel_x = 6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"eDo" = ( +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/structure/table/woodentable_reinforced/ebony, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"eDq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"eDt" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "petrov1"; + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"eDx" = ( +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 28 + }, +/obj/structure/table/rack, +/obj/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/obj/item/stack/tile/wood{ + amount = 10 + }, +/obj/item/stack/tile/walnut{ + amount = 10 + }, +/obj/item/stack/tile/yew{ + amount = 10 + }, +/obj/item/stack/tile/maple{ + amount = 10 + }, +/obj/item/stack/tile/mahogany{ + amount = 10 + }, +/obj/item/stack/tile/ebony{ + amount = 10 + }, +/obj/item/stack/tile/bamboo{ + amount = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"eDC" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"eDD" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Cargo & Service General Cabin"; + req_access = list(list("ACCESS_CARGO", "ACCESS_KITCHEN", "ACCESS_JANITOR", "ACCESS_BAR", "ACCESS_SIERRA_CHIEF_STEWARD")); + autoset_access = 0 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"eDJ" = ( +/obj/machinery/reagentgrinder, +/obj/floor_decal/corner/beige{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Chemistry"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"eDL" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/thruster/d3port) +"eDM" = ( +/obj/structure/bed/chair/office/teal{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"eDX" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/rd, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/random/drinkbottle, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"eEb" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"eEi" = ( +/obj/structure/table/standard, +/obj/item/storage/box/detergent{ + pixel_y = 4; + pixel_x = 7 + }, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"eEw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/reagent_sublimator, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"eEA" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"eEC" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"eEO" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"eEX" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/office/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"eEZ" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"eFd" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"eFf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/decal/cleanable/generic, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"eFg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"eFn" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"eFr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"eFv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/surgery/second) +"eFH" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/green/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eFK" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"eFO" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/aftport) +"eFZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"eGe" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"eGC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"eGR" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/foreport) +"eGS" = ( +/obj/structure/sign/warning/engineering_access{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"eGU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"eHb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"eHe" = ( +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/folder/white, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"eHm" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"eHt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"eHy" = ( +/obj/machinery/door/airlock/glass/command{ + dir = 4; + id_tag = "portbridgedoor"; + name = "Bridge"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge_ent"; + name = "Bridge Lockdown" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"eHA" = ( +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2{ + dir = 5 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1; + icon_state = "window" + }, +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"eHM" = ( +/turf/simulated/open, +/area/quartermaster/hangar_stairs/upper) +"eHP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"eIe" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/aft) +"eIg" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"eIh" = ( +/turf/simulated/wall/r_wall/hull, +/area/command/exploration_leader) +"eIl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"eIn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"eIo" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"eIr" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_hall_shutt" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"eIu" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"eIv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"eIy" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"eID" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs) +"eII" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"eIL" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"eIY" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"eJb" = ( +/obj/floor_decal/corner/red/mono, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"eJf" = ( +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"eJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/orange, +/area/security/range) +"eJk" = ( +/obj/structure/table/rack/dark, +/obj/structure/railing/mapped, +/obj/item/stack/material/wood/yew/twentyfive, +/obj/item/stack/material/wood/walnut/twentyfive, +/obj/item/stack/material/wood/maple/twentyfive, +/obj/item/stack/material/wood/mahogany/ten, +/obj/item/stack/material/wood/fifty, +/obj/item/stack/material/wood/ebony/ten, +/obj/item/stack/material/wood/bamboo/fifty, +/obj/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"eJn" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"eJo" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"eJr" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"eJs" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/machinery/recharge_station, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Central Hallway - Starboard" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"eJA" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"eJC" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/seconddeck/aft) +"eJG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"eJL" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"eJO" = ( +/obj/floor_decal/corner/red/bordercee{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eJR" = ( +/obj/structure/inflatable, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"eJS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"eJT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"eKa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"eKb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"eKd" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/firstdeck/central_stairwell) +"eKi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"eKr" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bridge_windows" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"eKv" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"eKw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"eKz" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"eKL" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart{ + pixel_y = 2; + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ + pixel_y = -4; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/cans/cola_pork{ + pixel_y = 12; + pixel_x = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"eKN" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/thick/duty, +/obj/machinery/light/small, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"eKO" = ( +/turf/simulated/wall/r_wall/hull, +/area/bridge/storage) +"eKS" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"eKY" = ( +/obj/structure/closet, +/obj/random/maintenance, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"eLn" = ( +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"eLz" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"eLC" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"eLG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eLH" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/space) +"eLV" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/exploration/briefing_room) +"eLZ" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"eMa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/commissary) +"eMj" = ( +/obj/machinery/botany/extractor, +/obj/floor_decal/corner/green/half, +/obj/floor_decal/corner/purple/border, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoflora Lab"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"eMr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"eMt" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"eMv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"eMB" = ( +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eMC" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"eME" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/space) +"eMF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"eML" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/simulated/open, +/area/space) +"eMM" = ( +/obj/structure/table/standard, +/obj/item/roller_bed, +/obj/item/roller_bed, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"eMP" = ( +/obj/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"eMR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"eMW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"eMY" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"eNe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"eNi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"eNk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/chemistry) +"eNl" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"eNs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"eNt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"eNw" = ( +/obj/floor_decal/corner/black/bordercorner, +/obj/structure/handrail, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eNz" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"eNG" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id_tag = "hydro<-bar"; + name = "Hydro Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/bar) +"eNJ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/rxglasses, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"eNO" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/storage/box/donut, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"eNR" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"eNZ" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"eOb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"eOj" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_2_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"eOo" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/maintenance/bridgedeck/port) +"eOx" = ( +/obj/structure/table/marble, +/obj/item/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"eOA" = ( +/obj/shuttle_landmark/merc/deck1, +/turf/space, +/area/space) +"eOE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"ePa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"ePe" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"ePj" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"ePm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + id_tag = "escape_pod_2_berth"; + name = "escape pod two berth controller"; + pixel_x = 20; + pixel_y = -32; + tag_door = "escape_pod_2_berth_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"ePs" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/aneg, +/obj/item/reagent_containers/ivbag/blood/human/apos, +/obj/item/reagent_containers/ivbag/blood/human/bneg, +/obj/item/reagent_containers/ivbag/blood/human/bpos, +/obj/item/reagent_containers/ivbag/nanoblood, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/random/blood_packs, +/obj/random/blood_packs, +/obj/random/blood_packs, +/obj/random/blood_packs, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"ePv" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"ePE" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"ePH" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ePX" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_2" + }, +/turf/simulated/floor/reinforced, +/area/vacant/monitoring) +"eQk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"eQp" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"eQv" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "xenobio1"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"eQC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eQE" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/nuke_storage) +"eQO" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"eQQ" = ( +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"eQR" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"eQV" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"eQY" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"eRd" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"eRj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"eRn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"eRo" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/forensic/lab) +"eRu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"eRz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"eRD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"eRE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"eRH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"eRP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"eRU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"eRV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"eSe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/forestarboard) +"eSg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"eSi" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"eSp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/artifact, +/obj/machinery/anomaly_container, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"eSq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"eSs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/extinguisher/mini, +/obj/item/extinguisher/mini, +/obj/item/extinguisher/mini, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"eSF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Laboratory"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"eSI" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"eSJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engineering_monitoring) +"eSL" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "toxin_lab_access_inner"; + name = "Toxin Lab Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"eSR" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"eSY" = ( +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1port) +"eTa" = ( +/obj/structure/table/rack, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"eTg" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"eTu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"eTv" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "admin_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"eTF" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"eTK" = ( +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"eTL" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"eUc" = ( +/obj/machinery/suit_storage_unit/atmos/alt, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"eUd" = ( +/obj/machinery/door/airlock/external/bolted{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_4_hatch"; + name = "Escape Pod Four Hatch" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod4/station) +"eUo" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"eUs" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"eUx" = ( +/obj/machinery/cryopod, +/obj/machinery/computer/cryopod{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod4/station) +"eUz" = ( +/obj/floor_decal/corner/black/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"eUH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"eUL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"eUR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"eUW" = ( +/obj/floor_decal/corner/yellow, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"eVa" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + id_tag = "hosdoor"; + name = "Head Of Security"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#9d2300"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos) +"eVd" = ( +/obj/structure/flora/seaweed, +/mob/living/simple_animal/aquatic/fish/grump{ + name = "Titus" + }, +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/crew_quarters/cafe/upper) +"eVe" = ( +/obj/machinery/space_heater{ + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"eVk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"eVv" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/storage/firstaid/empty, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/item/device/scanner/health, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"eVy" = ( +/obj/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"eVF" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - SMES"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"eVG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"eVI" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/random/sierracloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"eVJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "admin_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"eVO" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"eVU" = ( +/obj/machinery/computer/station_alert/security, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"eVW" = ( +/obj/structure/closet/emcloset/anchored, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"eWf" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"eWg" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"eWh" = ( +/obj/structure/bed/psych, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/carpet/green{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"eWu" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "auxair_outer"; + name = "Auxiliary Air Storage Exterior Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"eWC" = ( +/obj/machinery/door/airlock/external{ + autoset_access = 0; + req_access = newlist() + }, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"eWI" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"eWN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen/red, +/obj/item/pen/blue, +/obj/item/pen, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"eWT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"eXb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"eXe" = ( +/obj/floor_decal/corner/yellow, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"eXn" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"eXv" = ( +/obj/machinery/door/window/brigdoor/southright{ + autoset_access = 0; + dir = 8; + name = "Test Chamber"; + req_access = list("ACCESS_TOXINS") + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"eXy" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"eXK" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"eXP" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/igniter{ + pixel_y = -2; + pixel_x = -2 + }, +/obj/item/device/assembly/igniter{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"eXV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity/bolted{ + id_tag = "BSD_airlock"; + name = "Containment Chamber" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"eYc" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"eYf" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"eYh" = ( +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"eYo" = ( +/obj/floor_decal/corner/blue{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"eYs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"eYz" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/device/drone_designator, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"eYD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"eYI" = ( +/obj/structure/table/standard, +/obj/machinery/light_construct{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"eYN" = ( +/obj/structure/railing/mapped, +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"eYQ" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/bed/sofa/r/brown{ + dir = 8 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"eYR" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/ship) +"eYS" = ( +/obj/machinery/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Floor mounted flash" + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"eYU" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"eYX" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"eZa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"eZp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/woodentable/ebony, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"eZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"eZy" = ( +/obj/machinery/shieldwallgen, +/obj/machinery/door/blast/regular/open{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"eZB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"eZI" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"eZK" = ( +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/transmitter, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"eZQ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"eZV" = ( +/obj/floor_decal/corner/red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"far" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar<-cafe"; + name = "Bar Shutters" + }, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar) +"faw" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"fax" = ( +/obj/paint_stripe/turquoise, +/obj/paint/black, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_teleport) +"faA" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/infirmary) +"faB" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "td_fore_starboard_inner"; + name = "Third Deck Fore Starboard Nacelle Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "td_fore_starboard"; + name = "interior access button"; + req_access = list("ACCESS_EXTERNAL"); + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"faF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/civilian{ + id_tag = "toilet1"; + name = "Stall One" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"faG" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"faN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"fba" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"fbb" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"fbk" = ( +/obj/machinery/door/airlock/civilian{ + dir = 4; + id_tag = "cafe_private_room"; + name = "Private Room" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"fbs" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fby" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"fbB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"fbC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"fbD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftport) +"fbE" = ( +/turf/simulated/wall/prepainted, +/area/bridge/nano) +"fbL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"fbM" = ( +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/item/device/destTagger, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"fbN" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "rust_injector"; + injecting = 1; + use_power = 1; + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"fbX" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"fbZ" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"fca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"fcb" = ( +/obj/machinery/ai_status_display, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_teleport) +"fcd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"fcf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/wallframe_spawn/no_grille, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"fcj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"fcx" = ( +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"fcy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"fcz" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_starboard_pump" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fcC" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"fcI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hydroponics) +"fcN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"fcQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"fcT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/spectrometer/adv, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"fda" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"fds" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"fdy" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"fdz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"fdA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"fdB" = ( +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"fdC" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "solar_bridge_port_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_port) +"fdF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"fdI" = ( +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"fdQ" = ( +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"fdR" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"fdV" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"fdX" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"fdZ" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"fea" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"fef" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"fei" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/closet/crate/trashcart, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"fej" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"fev" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"feA" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"feE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"feJ" = ( +/obj/structure/closet/crate/radiation, +/obj/item/stack/material/tritium/ten, +/obj/item/stack/material/tritium/ten, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - R-UST - Start-up Generator"; + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"feM" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"feR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"ffc" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"ffd" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ffh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"ffj" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"ffp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"ffu" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"ffv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ffw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge Access"; + req_access = list("ACCESS_SEC_DOORS"); + autoset_access = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "lob_rear_exit"; + name = "Rear exit blastdoor" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/lobby) +"ffy" = ( +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ffB" = ( +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"ffF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"ffN" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"ffU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"fga" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"fgf" = ( +/obj/structure/holoplant, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"fgo" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio2"; + name = "Containment Blast Doors" + }, +/obj/wallframe_spawn/reinforced_phoron/hull, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"fgD" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/scan) +"fgG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad{ + pixel_x = -16 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"fgI" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fgP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"fgR" = ( +/obj/machinery/power/terminal, +/obj/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"fgX" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_8"; + name = "escape pod eight controller"; + pixel_x = -20; + tag_door = "escape_pod_8_hatch"; + frequency = 1380 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod8/station) +"fhh" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"fhm" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/starboard) +"fhs" = ( +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo/firstdeck) +"fht" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fhu" = ( +/obj/floor_decal/corner/blue/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/rig/command/cmo/equipped, +/obj/item/clothing/mask/gas/half, +/obj/machinery/door/window/northleft{ + name = "CMO's HCM"; + req_access = newlist(); + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"fhw" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/screwdriver, +/obj/item/wrench, +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/compactor) +"fhP" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"fhV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"fhX" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"fhY" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"fih" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Test Chamber" + }, +/obj/machinery/door/window/southright{ + name = "Test Chamber" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"fik" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"fit" = ( +/obj/structure/closet/cabinet, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"fiz" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"fiA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"fiC" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"fiD" = ( +/obj/machinery/suit_cycler/exploration, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"fiO" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"fiP" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"fiQ" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/sofa/r/brown, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"fiW" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/paicard, +/obj/random/tech_supply, +/obj/floor_decal/corner/yellow/mono, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"fiX" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/fourthdeck/center) +"fjh" = ( +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"fjl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"fjo" = ( +/obj/structure/closet/secure_closet/prospector, +/obj/item/shuttle_beacon, +/obj/item/device/radio, +/obj/item/storage/belt/utility/full, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"fju" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault/bolted{ + autoset_access = 0; + id_tag = "bridgesafe_front"; + name = "Auxillary Safe Room Door" + }, +/obj/item/airlock_brace{ + req_access = list("ACCESS_BRIDGE") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/bridge) +"fjw" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "waste_in"; + use_power = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fjF" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"fjG" = ( +/obj/floor_decal/corner/green/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/sleep/cryo/south) +"fjQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/hallway) +"fjT" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/mining{ + autoset_access = 0; + req_access = list("ACCESS_HANGAR") + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs) +"fjV" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"fkc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/prepainted{ + can_open = 1 + }, +/area/crew_quarters/heads/captain/secret_room/level_one) +"fkf" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"fki" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "interrogation_no1_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/interrogation) +"fkJ" = ( +/obj/item/stool, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"fkN" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "prototype_controller"; + pixel_x = 23; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"fkQ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"fkR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"fkW" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"fkY" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "calypso_shuttle_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + dir = 8; + frequency = 1331; + id_tag = "calypso_shuttle"; + pixel_x = 20; + req_access = list("ACCESS_EXPEDITION_SHUTTLE"); + tag_exterior_sensor = "calypso_shuttle_exterior_sensor" + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"flf" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"flh" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/obj/floor_decal/corner/brown/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"flr" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/gym) +"flu" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/machinery/door/window/southright{ + dir = 4; + name = "RD's HCM"; + req_access = newlist() + }, +/obj/item/rig/hazmat/equipped, +/obj/item/clothing/mask/gas/half, +/obj/floor_decal/corner/purple/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"flz" = ( +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"flB" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"flG" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"flJ" = ( +/obj/structure/closet/crate, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"flP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"flQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/cafe) +"fmm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"fmo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"fmq" = ( +/obj/machinery/sleeper, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"fmy" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"fmD" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"fmH" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "IAA Office" + }, +/obj/item/documents/nanotrasen/sierra, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/structure/closet/walllocker/secure_closet{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"fmK" = ( +/obj/floor_decal/corner/black{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"fmM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Brig Storage" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/equipment) +"fmP" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/outline/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"fmT" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/nuke_cylinder_dispenser{ + pixel_x = 2 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"fnb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/office/post) +"fne" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_maint) +"fnn" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"fno" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"fns" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/flora/pottedplant/overgrown, +/obj/structure/sign/warning/smoking{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"fnv" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"fny" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/cafe/upper) +"fnN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"fnX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"fnZ" = ( +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"foc" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"fog" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"fok" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/walnut, +/obj/machinery/microwave, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"fol" = ( +/obj/overmap/visitable/ship/landable/crucian, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"foq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"fov" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/black/mono, +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"foH" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"foM" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - West"; + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"foS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"foZ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/storage/firstaid/regular, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"fpc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fpg" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = 32 + }, +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"fpj" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Engineers General Cabin"; + req_access = list("ACCESS_ENGINEERING"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"fpo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "security_lockdown"; + name = "SECURITY LOCKDOWN"; + pixel_x = 24; + pixel_y = -12; + req_access = list("ACCESS_HEAD_OF_SECURITY") + }, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "firingspace"; + name = "Firing Range Shields"; + pixel_x = 24; + req_access = list("ACCESS_SEC_DOORS") + }, +/obj/machinery/button/windowtint{ + id = "hos_windows"; + pixel_x = 24; + pixel_y = 12; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"fpp" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/marble, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"fpq" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/mob/living/simple_animal/hostile/retaliate/parrot/Poly, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"fpv" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/tank/nitrogen, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"fpB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"fpD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"fpE" = ( +/obj/shuttle_landmark/sierra/deck5/crucian, +/turf/space, +/area/space) +"fpG" = ( +/obj/machinery/smartfridge/drying_rack{ + dir = 1 + }, +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"fpI" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/holocontrol) +"fpP" = ( +/obj/random/trash, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"fpU" = ( +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fpW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"fpX" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"fqc" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/cell2) +"fqh" = ( +/obj/machinery/door/airlock/multi_tile/medical{ + id_tag = "med_crit_d1"; + name = "Critical Wing First" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit1"; + name = "Infirmary Staging Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"fqm" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/command{ + c_tag = "Command - Starboard Bridge Entry"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"fqq" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/titanium, +/area/guppy_hangar/start) +"fqy" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"fqF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"fqJ" = ( +/turf/simulated/wall/prepainted, +/area/chapel/office) +"fqR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"fqU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"fqW" = ( +/obj/structure/flora/pottedplant/fern, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"frc" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/port) +"frh" = ( +/obj/item/stool/bar, +/obj/decal/cleanable/filth, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"frl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fru" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/crystal{ + name = "Adherent Maintenance" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/adherent) +"frJ" = ( +/obj/machinery/power/apc/charon{ + dir = 1; + name = "north bump"; + pixel_y = 24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 8; + name = "DOCKING TO WASTE" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/radiation, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"frK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"frN" = ( +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/maintenance/firstdeck/aftstarboard) +"frX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"fsb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/storage/box/donut, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"fsc" = ( +/obj/machinery/constructable_frame/computerframe{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"fsu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"fsz" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"fsI" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"fsK" = ( +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"fsR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"fsX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"ftg" = ( +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/sign/warning/pods/east{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"ftk" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"ftn" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"fto" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ftw" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/thirddeck/center) +"ftD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"ftF" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ftI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"ftL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Escape Pods - Port - Dock"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"ftM" = ( +/obj/structure/disposalpipe/segment, +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_l) +"ftP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"ftS" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "solar_port"; + pixel_x = -5; + pixel_y = 21; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_port_sensor"; + master_tag = "solar_port"; + pixel_x = 8; + pixel_y = 27 + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"ftU" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"fua" = ( +/obj/structure/table/glass, +/obj/random/snack, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"fub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"fuc" = ( +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fue" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/sofa/m/red{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"fuf" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"fuh" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/grey, +/obj/random/action_figure, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"fui" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"ful" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 8; + id_tag = "eng2"; + name = "Third Deck Port Nacelle Access"; + pixel_x = 20; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/thruster/d3port) +"fuw" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/steel_reinforced, +/obj/item/pen, +/obj/item/paper_bin, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"fux" = ( +/turf/simulated/floor/reinforced, +/area/vacant/monitoring) +"fuA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fuH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "escape_pod_5_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"fuL" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fuP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"fuX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault/bolted{ + autoset_access = 0; + id_tag = "medsafe_fore"; + name = "Emergency Exit" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"fvb" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"fvn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"fvA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/meter, +/obj/floor_decal/techfloor, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"fvE" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + target_pressure = 200 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"fvF" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"fvG" = ( +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fvJ" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fvL" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "eng1"; + name = "Third Deck Starboard Nacelle Access"; + pixel_x = -20; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/machinery/power/apc/high/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Fourth Deck - Starbound Necelle - Airlock" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"fvM" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fvR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/office/post) +"fvU" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"fwa" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/firstdeck) +"fwg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"fwh" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"fwr" = ( +/obj/structure/catwalk, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"fwu" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"fww" = ( +/obj/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fwy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"fwE" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/closet/hydrant{ + pixel_x = 28 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"fwG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"fwJ" = ( +/obj/floor_decal/corner/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"fwO" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/random/ironing_board_structure, +/obj/decal/cleanable/dirt, +/obj/item/ironing_iron, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"fwR" = ( +/obj/structure/sign/warning/airlock{ + dir = 8 + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/airlock) +"fwS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/vacant/cargo) +"fwW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"fxb" = ( +/obj/structure/mattress, +/obj/item/bedsheet/purple, +/obj/item/clothing/gloves/daft_punk, +/obj/structure/curtain/bed, +/turf/simulated/floor/carpet, +/area/maintenance/seconddeck/foreport) +"fxl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/floor_decal/corner/paleblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/infirmary) +"fxm" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"fxn" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/storage/belt/archaeology, +/obj/item/storage/belt/archaeology, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/red, +/obj/item/stack/flag/red, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/storage/excavation, +/obj/item/device/measuring_tape, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"fxq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"fxt" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"fxV" = ( +/obj/machinery/r_n_d/protolathe, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"fxZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"fyb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"fyc" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"fyd" = ( +/obj/machinery/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"fyg" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/crayon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"fyw" = ( +/obj/structure/catwalk, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"fyB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"fyE" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/mauve/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/mauve/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"fyJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"fyN" = ( +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"fyW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/safe_room/bridge) +"fzb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"fzh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"fzo" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"fzr" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"fzt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fzu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"fzA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"fzC" = ( +/turf/simulated/floor/wood, +/area/command/chief_steward) +"fzF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"fzG" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"fzK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"fAh" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"fAj" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/fabricator/micro/bartender{ + pixel_x = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/item/paper/sierra, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"fAm" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobio4"; + name = "Containment Blast Doors" + }, +/obj/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"fAp" = ( +/obj/structure/bookcase, +/obj/item/book/manual/anomaly_spectroscopy, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"fAq" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/expedition/storage) +"fAC" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/item/toy/figure/captain{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"fAD" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"fAE" = ( +/obj/structure/closet/secure_closet/atmos_sierra, +/obj/item/rpd, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fAO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + autoset_access = 0; + dir = 4; + frequency = 1379; + id_tag = "xeno_airlock_inner"; + name = "Xenobiology Access"; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/storage2) +"fBg" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/aftport) +"fBi" = ( +/obj/random/trash, +/obj/item/reagent_containers/glass/bucket, +/obj/item/device/flashlight/flare/glowstick/random, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"fBj" = ( +/turf/simulated/floor/reinforced/n20, +/area/engineering/atmos) +"fBl" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fBs" = ( +/obj/structure/roller_bed, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"fBu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"fBM" = ( +/obj/structure/bed/chair/padded/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"fBO" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/bed/sofa/l/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"fBT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"fCf" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Infrimary - Patient Ward"; + dir = 4; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"fCl" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"fCx" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/cap/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crucian_hangar/start) +"fCA" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"fCB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/structure/curtain/open/bed, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"fCD" = ( +/obj/structure/table/rack, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass{ + amount = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"fCG" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"fCI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"fCJ" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"fCM" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"fCW" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"fDd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"fDo" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"fDr" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"fDt" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/outline/orange, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"fDC" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"fDE" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"fDI" = ( +/obj/structure/closet/emcloset, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"fDJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + autoset_access = 0; + frequency = 1331; + id_tag = "guppy_shuttle_inner"; + name = "Guppy Internal Access"; + req_access = list("ACCESS_GUPPY") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"fDL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/civilian{ + name = "Cryo Storage"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sleep/cryo/thirddeck) +"fDQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"fDT" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/forestarboard) +"fEe" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"fEj" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fEm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Head of Personnel"; + sort_type = "Head of Personnel" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"fEo" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"fEw" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"fEy" = ( +/obj/floor_decal/corner/red/half{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"fEz" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"fEA" = ( +/obj/machinery/uniform_vendor{ + icon_state = "robotics" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"fEC" = ( +/obj/shuttle_landmark/ert/deck1, +/turf/space, +/area/space) +"fED" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"fEE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"fEG" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"fEN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/forestarboard) +"fEQ" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"fES" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"fEX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/fabricator/micro/bartender{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"fEY" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"fFd" = ( +/obj/structure/bookcase/manuals/engineering, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"fFf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"fFi" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Second Deck Substation Bypass" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"fFn" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/machine/jukebox_custom, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"fFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"fFx" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/recharger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"fFB" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"fFC" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance{ + name = "Maintenance Storage" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/backstorage) +"fFG" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"fFO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"fFR" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"fFU" = ( +/obj/machinery/anomaly_container, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"fGa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"fGb" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"fGn" = ( +/obj/item/ladder_mobile, +/obj/random/junk, +/obj/random/junk, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"fGp" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"fGs" = ( +/obj/item/stool/padded/red, +/obj/random/junk, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"fGt" = ( +/obj/structure/ladder, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/aftport) +"fGv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"fGA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/scrap/stacking_machine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"fGH" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Bluespace Drive"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"fGI" = ( +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"fGK" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"fGL" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"fHe" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"fHg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"fHi" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"fHq" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"fHs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"fHv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"fHz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"fHI" = ( +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_circuit_printer, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"fHP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"fHS" = ( +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window" + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"fHU" = ( +/obj/machinery/computer/modular/preset/security, +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"fHV" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"fIa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"fIb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - R-UST - SMES"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"fIc" = ( +/obj/structure/closet/lawcloset, +/obj/structure/window/reinforced, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"fIe" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/ship_munition/disperser_charge/emp, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"fIg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"fIj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/development) +"fIk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"fIn" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Personnel - Office" + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"fIr" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"fIw" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/fourthdeck/foreport) +"fIA" = ( +/obj/paint_stripe/red, +/obj/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod4/station) +"fIB" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"fIG" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Misc. Test Chamber - Large"; + network = list("Research","Miscellaneous Reseach"); + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"fIJ" = ( +/obj/floor_decal/corner/paleblue{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"fIK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"fIL" = ( +/obj/floor_decal/techfloor, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"fIN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fIQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "solar_bridge_port_pump" + }, +/obj/machinery/light/small, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "solar_bridge_port_airlock"; + pixel_x = 2; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL"); + tag_airpump = "solar_bridge_port_pump"; + tag_chamber_sensor = "solar_bridge_port_sensor"; + tag_exterior_door = "solar_bridge_port_outer"; + tag_interior_door = "solar_bridge_port_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_bridge_port_sensor"; + pixel_x = -12; + pixel_y = 24 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_port) +"fIW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"fIZ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"fJa" = ( +/obj/structure/cable/yellow, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"fJi" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"fJk" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"fJr" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/compactor) +"fJC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"fJD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/holocontrol) +"fJJ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"fJK" = ( +/obj/floor_decal/corner/grey/full, +/obj/machinery/photocopier, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"fJM" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"fJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"fJV" = ( +/obj/machinery/papershredder, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"fJZ" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"fKa" = ( +/obj/machinery/disperser/middle{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/command/bsa) +"fKd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/lime/bordercorner, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"fKj" = ( +/obj/machinery/constructable_frame/computerframe{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"fKp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"fKs" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"fKt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"fKB" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar/bridge_port) +"fKC" = ( +/obj/structure/closet/shipping_wall/filled{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Hydroponics - Fore"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"fKI" = ( +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos) +"fKO" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/rig/eva/equipped, +/obj/machinery/door/window/brigdoor/southleft{ + req_access = list("ACCESS_SENENG"); + autoset_access = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"fKT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/aiModule/robocop, +/obj/item/aiModule/solgov_aggressive, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"fLa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"fLb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"fLe" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/rnd/xenobiology/water_cell) +"fLf" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/space, +/area/space) +"fLm" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "calypso_shuttle_sensor"; + master_tag = "calypso_shuttle"; + pixel_x = 25 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/airlock) +"fLp" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cadetwindow" + }, +/turf/simulated/floor/plating, +/area/security/range) +"fLx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"fLB" = ( +/obj/structure/bed/sofa/l/black{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"fLK" = ( +/obj/structure/closet/secure_closet/adjutant, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/device/flash, +/obj/item/device/flashlight, +/obj/item/storage/secure/safe{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/gun/energy/gun/small/secure, +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"fLQ" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list("ACCESS_BRIDGE"); + dir = 2; + autoset_access = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"fLW" = ( +/obj/item/stack/tile/floor, +/obj/random/junk, +/obj/random/junk, +/obj/decal/cleanable/filth, +/obj/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fMg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/captain) +"fMi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"fMs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Report desk"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"fMt" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"fMx" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "admin_shuttle_dock_pump" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"fMy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/bed/sofa/r/red{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"fMz" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"fMD" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"fMG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"fMI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"fMJ" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/forestarboard) +"fMK" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Storage"; + network = list("Command","Engineering") + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"fMQ" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"fMR" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"fMU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"fNa" = ( +/obj/machinery/vending/cola, +/obj/floor_decal/corner/red/half{ + dir = 8 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/directions/security{ + pixel_y = 24; + dir = 8 + }, +/obj/structure/sign/directions/infirmary{ + dir = 4; + pixel_y = 31 + }, +/obj/structure/sign/directions/science{ + pixel_y = 38; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"fNb" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized{ + id = "forensicswindow" + }, +/turf/simulated/floor/plating, +/area/security/sierra/forensic) +"fNr" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/storage/eva) +"fNt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"fNz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"fNB" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"fNC" = ( +/obj/floor_decal/corner/green{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"fND" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"fNJ" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "SupermatterDoor"; + name = "Supermatter Access Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"fNW" = ( +/turf/simulated/wall/r_wall/hull, +/area/medical/virology/atmos) +"fNX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"fNY" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"fOg" = ( +/obj/machinery/organ_printer/robot/mapped, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"fOi" = ( +/turf/simulated/wall/prepainted, +/area/security/sierra/prison) +"fOj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/galley/freezer) +"fOk" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/medical/wardhallway) +"fOl" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/hangar_stairs) +"fOr" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cadetwindow" + }, +/turf/simulated/floor/plating, +/area/security/range) +"fOt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"fOB" = ( +/turf/simulated/floor/tiled, +/area/holocontrol) +"fOF" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"fOG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"fOL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"fOO" = ( +/obj/machinery/optable, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"fOP" = ( +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fOT" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"fOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"fPb" = ( +/obj/machinery/light/spot, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"fPc" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/button/blast_door{ + dir = 4; + pixel_x = -21; + name = "Space Shields"; + id_tag = "med_dorms_blast_doors" + }, +/obj/item/device/flashlight/lamp{ + pixel_y = 16; + pixel_x = -2 + }, +/obj/item/material/ashtray/plastic{ + pixel_y = 3; + pixel_x = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = 2 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"fPl" = ( +/obj/structure/ladder/up, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"fPp" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "Tech Storage - Main" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"fPs" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/xenobio) +"fPC" = ( +/obj/structure/table/standard, +/obj/item/device/geiger, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/health, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"fPE" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fPH" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"fPJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"fPK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"fPL" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"fPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"fPT" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"fPZ" = ( +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"fQd" = ( +/obj/machinery/recharger, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"fQf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/lounge/upper) +"fQk" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"fQo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"fQy" = ( +/obj/structure/holoplant, +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/fernybush, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"fQz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"fQA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"fQF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/forestarboard) +"fQJ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"fQM" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = -6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobio3_vent"; + name = "Cell 3 Vent"; + pixel_x = 6; + req_access = list("ACCESS_RESEARCH") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"fQU" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"fQV" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"fQW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/solar, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"fRj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"fRk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"fRq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"fRz" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"fRG" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sauna) +"fRI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/structure/bed/sofa/r/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"fRK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"fRO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Central Hallway" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"fRP" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"fRQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"fRR" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fRZ" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + injecting = 1; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d1port) +"fSa" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod1/station) +"fSq" = ( +/obj/item/storage/mirror{ + pixel_x = -26; + pixel_y = 1 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"fSs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"fSv" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/green/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/vending/hydronutrients{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"fSx" = ( +/obj/structure/railing/mapped{ + dir = 8; + color = "#aed18b"; + init_color = "#aed18b" + }, +/turf/simulated/open, +/area/hallway/primary/seconddeck/central_stairwell) +"fSA" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"fSV" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"fTe" = ( +/obj/item/stock_parts/circuitboard/telecomms/processor, +/obj/item/stock_parts/circuitboard/telecomms/receiver, +/obj/item/stock_parts/circuitboard/telecomms/server, +/obj/item/stock_parts/circuitboard/telecomms/bus, +/obj/item/stock_parts/circuitboard/telecomms/broadcaster, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/ntnet_relay, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"fTk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"fTr" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/deckofficer) +"fTt" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"fTv" = ( +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"fTU" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"fTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"fTY" = ( +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"fUd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"fUf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"fUh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"fUi" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/eva) +"fUt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"fUv" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"fUJ" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"fUK" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"fUO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"fUP" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id_tag = "eng_lockdown_emg1"; + name = "Emergency Exit" + }, +/obj/machinery/door/airlock/glass/engineering/no_stripe{ + name = "Engineering Bay" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engineering_monitoring) +"fUR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/industrial/traffic, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"fUV" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/security{ + name = "Security Maintenance"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"fVc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"fVg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"fVh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/foreport) +"fVk" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fVm" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"fVp" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 10 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"fVs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"fVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/airlock) +"fVA" = ( +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"fVH" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/firstdeck) +"fVM" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"fVO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/bridge/nano) +"fVR" = ( +/obj/structure/table/rack, +/obj/floor_decal/spline/plain/yellow{ + dir = 10 + }, +/obj/item/beartrap, +/obj/item/beartrap, +/obj/item/device/flashlight/upgraded, +/obj/item/device/flashlight/upgraded, +/obj/item/device/flashlight/upgraded, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/item/tape_roll, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"fVS" = ( +/obj/machinery/door/window/westright{ + name = "Xenoflora Environment"; + req_access = newlist() + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Xenoflora Environment" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/xenoflora) +"fWa" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"fWb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"fWe" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"fWs" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/foreport) +"fWF" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/toxins) +"fWM" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/command/bsa) +"fWP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"fWS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"fXg" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"fXl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"fXm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"fXs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"fXB" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"fXF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"fXJ" = ( +/obj/machinery/suit_storage_unit/security/alt, +/obj/machinery/camera/network/security{ + c_tag = "Security - Suits Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"fXP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"fXQ" = ( +/obj/structure/catwalk, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "sauna_maint"; + name = "Lock"; + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sauna) +"fXX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"fYd" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"fYj" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"fYk" = ( +/obj/structure/table/steel{ + flipped = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/forestarboard) +"fYw" = ( +/obj/machinery/light, +/obj/floor_decal/corner/paleblue/bordercee{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"fYz" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"fYA" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"fYE" = ( +/obj/machinery/telecomms/bus/preset_four, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"fYI" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"fYO" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"fYS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"fYV" = ( +/obj/machinery/button/blast_door{ + id_tag = "teleport3"; + name = "Third Deck Teleporter Access Shutter Control"; + pixel_x = -6; + pixel_y = 29 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"fZb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"fZi" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"fZl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"fZn" = ( +/obj/structure/closet/crate/plastic, +/obj/structure/railing/mapped, +/obj/floor_decal/spline/plain/black, +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"fZo" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/freezer, +/area/medical/virology/lab) +"fZp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/virology{ + dir = 8 + }, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"fZy" = ( +/turf/simulated/wall/prepainted, +/area/medical/backstorage) +"fZD" = ( +/obj/machinery/space_heater, +/obj/decal/cleanable/dirt, +/obj/machinery/light_construct/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/vacant/sauna) +"fZE" = ( +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"fZL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"fZM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/rnd/research) +"fZP" = ( +/obj/machinery/button/blast_door{ + id_tag = "portaux_warehouse"; + name = "Warehouse Shutters Control"; + pixel_y = 24; + req_access = list("ACCESS_CARGO") + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"fZS" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gab" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"gai" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"gal" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"gap" = ( +/obj/machinery/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Floor mounted flash" + }, +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"gat" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"gav" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"gaA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"gaF" = ( +/obj/structure/cryofeed{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/thirddeck) +"gaG" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 15000 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine thruster blast doors."; + id_tag = "ThrusterVents"; + name = "Thruster Blast Door control"; + req_access = list("ACCESS_ENGINE_EQUIP"); + pixel_x = -24; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gaH" = ( +/obj/machinery/disposal, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gaJ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "security_entry_airlock_enter"; + name = "Security Entry Airlock"; + pixel_x = 5; + pixel_y = 22; + req_access = list("ACCESS_SECURITY") + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "security_entry_airlock_exit"; + name = "Security Exit Airlock"; + pixel_x = -5; + pixel_y = 22; + req_access = list("ACCESS_SECURITY") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/pen, +/obj/machinery/button/blast_door{ + pixel_y = 30; + id_tag = "prison_lobby_window"; + name = "Prison Lobby Windows Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"gaP" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/security) +"gaQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"gaU" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"gaW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/mentalhealth/therapyroom) +"gaY" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"gbc" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gbg" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"gbk" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"gbu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"gbC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"gbE" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"gbH" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"gbM" = ( +/obj/structure/bed/chair/office/comfy/blue{ + dir = 1 + }, +/obj/landmark/start{ + name = "Head of Personnel" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"gbT" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"gcb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"gcc" = ( +/obj/structure/table/steel, +/obj/item/material/hatchet, +/obj/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"gce" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"gcg" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"gck" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/computer/station_alert/all{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"gcz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"gcF" = ( +/obj/structure/table/rack, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"gcH" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"gcK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"gcN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"gdc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = 1; + name = "Research Director Dorm"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#ffffff" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/rd/cobed) +"gdm" = ( +/obj/structure/hygiene/toilet{ + name = "captain's throne"; + color = "ffdd33" + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"gdD" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "bridge_outer_windows" + }, +/turf/simulated/floor/plating, +/area/bridge/nano) +"gdH" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"gdN" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"gdZ" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"gec" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Core Interior"; + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"gek" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/thirddeck/forestarboard) +"gen" = ( +/obj/structure/closet/crate/freezer, +/obj/item/storage/pill_bottle/antitox, +/obj/item/storage/pill_bottle/paracetamol, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"geq" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "merchant_shuttle_station_sensor"; + master_tag = "merchant_shuttle_station"; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "merchant_shuttle_station_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"gew" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"geF" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"geL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 8; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftstarboard) +"geT" = ( +/obj/machinery/pager/cargo{ + dir = 8; + name = "Call Cargoworkers button"; + pixel_x = -20; + pixel_y = 16 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/supply_public, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"geU" = ( +/obj/structure/closet/crate/secure/biohazard/alt, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"gfe" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"gfi" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/evidence) +"gfk" = ( +/obj/machinery/computer/shuttle_control/explore/crucian{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"gfo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gfp" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"gfq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gfz" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"gfS" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gfV" = ( +/obj/structure/sign/directions/med{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"ggb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 15; + pixel_x = 3 + }, +/obj/random/tool{ + pixel_x = -5; + pixel_y = -9 + }, +/obj/random/tool{ + pixel_y = -1; + pixel_x = 5 + }, +/obj/random/tech_supply{ + pixel_y = -6; + pixel_x = 10 + }, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/hangar) +"ggf" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ggj" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + display_name = "Starboard Dock C"; + frequency = 1380; + id_tag = "admin_shuttle_dock"; + pixel_x = -20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"ggm" = ( +/obj/structure/table/standard, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"ggp" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "fuel2p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"ggq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"ggH" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Gravity Generator"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"ggO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ggZ" = ( +/obj/structure/holoplant, +/obj/floor_decal/corner/yellow/half, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"gha" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/holocontrol) +"ghb" = ( +/obj/floor_decal/corner/black/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ghd" = ( +/obj/floor_decal/corner/beige/diagonal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"ghg" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ghk" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_r) +"ghn" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gho" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/forestarboard) +"ghs" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"ght" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"ghv" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "disvent"; + name = "Incinerator Vent" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/incinerator) +"ghC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/sign/warning/compressed_gas{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"ghE" = ( +/obj/structure/bed/sofa/r/teal, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"ghJ" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/thirddeck/foreport) +"ghN" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod10/station) +"ghO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"ghT" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/table/woodentable_reinforced/walnut, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"ghU" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng1"; + name = "First Reactive Engine Access"; + pixel_y = 21; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/light/small, +/obj/machinery/atmospherics/valve/shutoff/fuel{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/thruster/d3starboard) +"ghY" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"ghZ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"gih" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/artifact_analyser, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"gip" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/item/folder/nt/rd, +/obj/item/folder/nt/rd, +/obj/item/folder/nt/rd, +/obj/item/folder/nt/rd, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"gir" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"git" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"gix" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"giC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/cargo) +"giL" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"giO" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"giR" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"giS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/security/opscheck) +"giT" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/air_control{ + dir = 8; + input_tag = "toxins_petrov_in"; + name = "Toxins Gas Monitor"; + output_tag = "toxins_petrov_out"; + sensor_name = "Toxins Test Chamber"; + sensor_tag = "toxins_petrov_sensor" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"giU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"giZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"gjc" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1port) +"gjd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"gjj" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"gjE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/bluespace) +"gjJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"gjK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gjP" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gjQ" = ( +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"gjT" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"gjX" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"gkg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gki" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"gko" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "cChamber2pV"; + name = "Chamber Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"gkq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"gks" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d3portnacelle" + }, +/obj/machinery/atmospherics/valve/digital{ + id_tag = "RE3F"; + name = "RE3 digital valve" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"gku" = ( +/obj/structure/iv_stand, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"gky" = ( +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"gkD" = ( +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"gkG" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/button/blast_door{ + dir = 4; + pixel_x = -24; + id_tag = "miners_restroom_sierra" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"gkQ" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/galley/freezer) +"gkX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/bed/chair/office/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"gli" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"gll" = ( +/obj/machinery/vending/wallmed2{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"glv" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1; + name = "Toxin Air Vent"; + id_tag = "toxin_out" + }, +/obj/machinery/sparker{ + pixel_x = -21 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"glA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"glU" = ( +/obj/floor_decal/techfloor, +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"glV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"glW" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"gml" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gmn" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "specops_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"gms" = ( +/obj/machinery/disposal, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/hangar{ + c_tag = "Hangar - Flight Control" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"gmz" = ( +/obj/machinery/barrier, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"gmF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"gmH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gmK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"gmM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"gmQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"gnd" = ( +/obj/machinery/light/small, +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"gnr" = ( +/obj/decal/cleanable/generic, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"gns" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/random/tool, +/obj/machinery/button/blast_door{ + id_tag = "petrovcell1"; + name = "Test Chamber Vent"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/button/ignition{ + id_tag = "Isocell1"; + pixel_x = -36; + pixel_y = -25 + }, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Isolation Chambers - Cells"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"gnE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"gnL" = ( +/obj/structure/table/standard, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/scanning_module, +/obj/item/device/paicard, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/development) +"gnO" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"gnR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"gnW" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/floor_decal/corner/red/bordercee, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"gnX" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"gop" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark, +/obj/item/dice/d100, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"gor" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "sierra_surgery1"; + name = "Operation room 1"; + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/holosign/surgery{ + dir = 4; + id_tag = "surgery1" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"gos" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"goA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"goD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"goG" = ( +/obj/floor_decal/corner/brown/mono, +/obj/machinery/computer/modular/preset/cardslot/command_eng{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"goM" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"goN" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"goT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/deckofficer) +"gpb" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"gpd" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/obj/floor_decal/solarpanel, +/turf/simulated/open, +/area/solar/port) +"gpg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gpi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"gpq" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"gpr" = ( +/obj/floor_decal/carpet/orange{ + dir = 1 + }, +/obj/floor_decal/carpet/orange{ + dir = 4 + }, +/obj/floor_decal/carpet/orange{ + dir = 5 + }, +/obj/structure/table/woodentable/ebony, +/obj/item/device/flashlight/lamp/lava/yellow{ + pixel_y = 12; + pixel_x = 7 + }, +/obj/item/crowbar/prybar, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"gpv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"gpw" = ( +/obj/structure/table/steel, +/obj/machinery/button/windowtint{ + id = "sec_equip_windows"; + pixel_x = 7; + pixel_y = 29 + }, +/obj/machinery/light_switch{ + pixel_y = 29; + pixel_x = -7 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet/medical_wall/filled{ + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"gpx" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/space, +/area/space) +"gpy" = ( +/obj/machinery/requests_console{ + department = "Canteen"; + departmentType = 4; + pixel_x = -30 + }, +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/barbecue{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/ketchup, +/obj/item/reagent_containers/food/condiment/mayo{ + pixel_y = 9; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"gpA" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/techfloor/orange/corner, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"gpE" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"gpN" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/tool, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"gpR" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"gpS" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"gpU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Mail" + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"gpW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"gqe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"gql" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"gqm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"gqw" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"gqF" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft_stairwell) +"gqH" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/safe_room/bridge) +"gqK" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/central_stairwell) +"gqL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/turret_protected/ai_cyborg_station) +"gqM" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"gqO" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_south = 3; + tag_west = 1 + }, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Isolation Chambers - Atmospherics" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"gqS" = ( +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair/padded/teal{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"gqT" = ( +/obj/structure/bed/chair/pew, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"gqV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gqW" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"grk" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "auxair_inner"; + name = "Auxiliary Air Storage Interior Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/storage) +"grn" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/storage/box/donut, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"grp" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"grs" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/engineering_chief_sierra, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/item/device/gps, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"grt" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/door/blast/shutters{ + id_tag = "vir_isol" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"grv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"grD" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/blue/three_quarters, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"grE" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/storage) +"grF" = ( +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/smartfridge/secure/virology{ + req_access = null + }, +/obj/decal/cleanable/cobweb2, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"grI" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp/lava/green, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"grL" = ( +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"grR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "null"; + name = "Bridge Wardroom"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain/beach) +"grY" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"grZ" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/hangar) +"gse" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + id_tag = "cafe"; + name = "Cafe Shutters"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/galley) +"gsf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"gsg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"gss" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"gst" = ( +/obj/floor_decal/carpet/blue2, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"gsv" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"gsw" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway - Medical" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"gsz" = ( +/obj/structure/closet/crate/secure/phoron, +/obj/item/stack/material/phoron/ten, +/obj/item/stack/material/phoron/ten, +/obj/item/stack/material/phoron/ten, +/obj/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"gsH" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"gsM" = ( +/obj/structure/table/rack, +/obj/item/device/scanner/mining, +/obj/item/device/scanner/mining, +/obj/item/device/scanner/mining, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"gsX" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"gte" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"gtq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gtt" = ( +/obj/machinery/button/alternate/door/bolts{ + dir = 4; + id_tag = "engine_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 7; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - TEGs"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gtv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"gtz" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1379; + id_tag = "engine_airlock_outer"; + name = "Engine Airlock Exterior" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"gtG" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/closet/crate/trashcart, +/obj/random/firstaid, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gtI" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Leader's suit"; + req_access = newlist() + }, +/obj/item/clothing/mask/gas/half, +/obj/item/rig/exploration/equipped, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"gtO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_port, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"gtP" = ( +/obj/machinery/seed_storage/garden{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"gua" = ( +/obj/structure/railing/mapped, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"guo" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"guH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"guN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "td_port"; + name = "interior access button"; + pixel_x = -32; + pixel_y = -24; + req_access = list("ACCESS_EXTERNAL") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"guV" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"gve" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/corner/blue/mono, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"gvf" = ( +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"gvi" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"gvy" = ( +/obj/machinery/constructable_frame/computerframe{ + dir = 4 + }, +/mob/living/simple_animal/hostile/scarybat, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"gvz" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21; + pixel_x = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"gvD" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"gvE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/chapel/mortuary) +"gvI" = ( +/obj/structure/cryofeed{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/bridge) +"gvL" = ( +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"gvQ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"gvU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/rounded/beige, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"gwh" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"gwp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"gwt" = ( +/obj/floor_decal/carpet/orange{ + dir = 1 + }, +/obj/floor_decal/carpet/orange{ + dir = 8 + }, +/obj/floor_decal/carpet/orange{ + dir = 9 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/ce, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"gwF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"gwG" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Kitchen"; + sort_type = "Kitchen" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"gwL" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/red, +/obj/structure/fuel_port{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"gwZ" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/device/flashlight/lamp/lava/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"gxi" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"gxk" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/aft_stairwell) +"gxm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"gxn" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"gxp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"gxA" = ( +/obj/structure/bed/chair/office/comfy/blue, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"gxK" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"gxM" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"gxN" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"gxS" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"gyn" = ( +/obj/structure/closet/fridge, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/random/single/cola, +/obj/random/single/cola, +/obj/random/single/cola, +/obj/random/single/cola, +/obj/random/single/cola, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"gyq" = ( +/turf/simulated/open, +/area/medical/sleeper) +"gyH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"gyP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"gyQ" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"gyU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"gyY" = ( +/turf/simulated/wall/prepainted{ + can_open = 1 + }, +/area/maintenance/thirddeck/aftport) +"gzc" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/security) +"gze" = ( +/obj/machinery/vending/hydronutrients{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"gzs" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/backstorage) +"gzu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/grille, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "engineroomvent"; + name = "Engine Room Vent" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"gzA" = ( +/obj/item/clothing/suit/unathi/mantle, +/obj/item/clothing/shoes/jackboots/unathi, +/obj/item/device/flashlight/lantern, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"gzF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft_stairwell) +"gzO" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1379; + id_tag = "engine_airlock_inner"; + name = "Engine Airlock Interior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gzR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/hatch{ + autoset_access = 0; + name = "Cockpit"; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cockpit) +"gAa" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_pod/escape_pod4/station) +"gAi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"gAr" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"gAu" = ( +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo/firstdeck) +"gAv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"gAC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gAD" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"gAI" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"gAJ" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"gAN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"gBi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"gBk" = ( +/obj/structure/table/glass, +/obj/item/material/ashtray/bronze, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/diagonal, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"gBo" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"gBq" = ( +/obj/item/stack/material/steel, +/obj/item/stack/material/steel, +/obj/item/stack/material/rods, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"gBF" = ( +/obj/structure/railing/mapped, +/obj/structure/cart{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"gBN" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"gBT" = ( +/obj/structure/fitness/punchingbag, +/obj/floor_decal/corner/black/full, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"gCb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"gCe" = ( +/obj/structure/bed/chair/padded/red, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"gCl" = ( +/obj/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"gCz" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"gCD" = ( +/obj/structure/railing/mapped, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gCG" = ( +/obj/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/vacant/mess) +"gCM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_room) +"gCO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/sign/xenobio_3{ + pixel_y = 32 + }, +/obj/machinery/door/airlock/research{ + id_tag = "xenohight_airlock_outer"; + name = "Xenobiology Internal Airlock"; + frequency = 1379; + locked = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry) +"gDd" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"gDf" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + name = "Bar" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"gDl" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"gDo" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"gDq" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1; + color = "#393f43"; + init_color = "#393f43" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"gDr" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + id_tag = "vir_blast_window" + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"gDw" = ( +/obj/structure/table/rack, +/obj/machinery/power/apc/super/critical{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/inflatable_dispenser, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"gDD" = ( +/obj/structure/closet/secure_closet/el, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"gDH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"gDL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"gDT" = ( +/obj/machinery/door/airlock/highsecurity{ + autoset_access = 0; + name = "Secure Tech Storage"; + req_access = list("ACCESS_BRIDGE","ACCESS_TECH_STORAGE") + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/tech/high_risk) +"gDZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"gEb" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/recharger, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"gEd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"gEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"gEm" = ( +/obj/structure/bed/chair/office/teal, +/obj/floor_decal/corner/beige{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "chemistry_lockdown"; + name = "Chemistry Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = list("ACCESS_MEDICAL") + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"gEx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"gEz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"gEF" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_11_berth"; + name = "escape pod eleven berth controller"; + pixel_x = -32; + pixel_y = -28; + tag_door = "escape_pod_11_berth_hatch"; + frequency = 1380; + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/steeldecal/steel_decals_central4, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"gEO" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_7" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"gET" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"gEV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/closet/crate/plastic, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"gFa" = ( +/obj/structure/bed/chair/office/dark, +/obj/floor_decal/techfloor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"gFe" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"gFg" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"gFh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/item/taperoll/bog{ + pixel_x = -12; + pixel_y = -10 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"gFi" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gFj" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"gFl" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"gFs" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"gFv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng2"; + name = "Deck Four Port status indicator"; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"gFM" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_7_hatch"; + name = "Escape Pod Seven Hatch" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod7/station) +"gFS" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"gFU" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"gFW" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "hop_road_shutters"; + name = "Line Shutters Control"; + pixel_x = -6; + pixel_y = 27 + }, +/obj/machinery/button/blast_door{ + id_tag = "hop_shutters"; + name = "Desk Shutters Control"; + pixel_x = 6; + pixel_y = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"gGd" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_smes) +"gGi" = ( +/obj/floor_decal/corner/darkblue/half{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/vendor{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"gGx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"gGy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"gGH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/structure/sign/warning/airlock{ + color = "#ff9900"; + name = "\improper WAY TO SPACE"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"gGJ" = ( +/obj/wallframe_spawn/reinforced/polarized, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"gGM" = ( +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/kit/mech, +/obj/item/device/paint_sprayer, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"gGO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gGX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/lava/orange{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"gGZ" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/floor_decal/corner/purple/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/security) +"gHg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensor_name = "Tank"; + sensor_tag = "n2o_sensor" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"gHi" = ( +/obj/shuttle_landmark/ert/deck4, +/turf/space, +/area/space) +"gHj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"gHl" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/obj/floor_decal/corner/blue/mono, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"gHp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"gHq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gHs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"gHu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted, +/area/vacant/infirmary) +"gHx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/command{ + dir = 4; + id_tag = "portbridgedoor"; + name = "Bridge"; + secured_wires = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge_ent"; + name = "Bridge Lockdown" + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"gHC" = ( +/obj/floor_decal/corner/red, +/obj/structure/table/standard, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"gHE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/brig) +"gHI" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"gHL" = ( +/obj/decal/cleanable/remains, +/obj/decal/cleanable/blood, +/obj/structure/foamedmetal, +/obj/item/passport/iccg/north_gaia, +/obj/item/handcuffs/cable/tape, +/obj/item/handcuffs, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/foreport) +"gHN" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"gHP" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/aftport) +"gHQ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"gHX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Fore Hallway Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"gIe" = ( +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"gIf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"gIl" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"gIn" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"gIx" = ( +/obj/machinery/fabricator, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"gIy" = ( +/obj/structure/table/rack, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"gIz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gIM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gIN" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/ce) +"gIR" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"gIZ" = ( +/obj/structure/bed/sofa/m/red{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"gJd" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + dir = 4; + name = "Warehouse"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/storage) +"gJl" = ( +/obj/machinery/shieldwallgen, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"gJm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"gJt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"gJv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "expe_warehouse"; + name = "Storage Door Control"; + pixel_x = 6; + pixel_y = 24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_XENOARCH","ACCESS_EL")) + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"gJw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/warning/high_voltage{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gJE" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"gJG" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"gJH" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"gJQ" = ( +/obj/floor_decal/techfloor, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"gKr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"gKy" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/constructable_frame/computerframe, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gKz" = ( +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"gKF" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/gambling) +"gKH" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/corner/grey_alt{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"gKN" = ( +/obj/item/folder/nt/rd, +/obj/structure/table/glass/boron, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"gKR" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/chair/shuttle, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_9"; + name = "escape pod nine controller"; + pixel_x = -20; + tag_door = "escape_pod_9_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod9/station) +"gKT" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/assembly/office) +"gKW" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"gKX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"gLb" = ( +/obj/structure/closet/emcloset, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"gLc" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/item/stack/material/glass/reinforced/fifty, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"gLg" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"gLh" = ( +/obj/structure/table/woodentable/walnut, +/obj/random/single/playing_cards, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"gLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"gLt" = ( +/turf/simulated/wall/r_wall/hull, +/area/security/sierra/hallway/port) +"gLu" = ( +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"gLB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"gLI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/corner/purple, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"gLS" = ( +/obj/machinery/shipsensors, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced, +/area/guppy_hangar/start) +"gLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftstarboard) +"gLZ" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/cable{ + d2 = 8; + icon_state = "32-8"; + d1 = 32 + }, +/turf/simulated/open, +/area/maintenance/seconddeck/forestarboard) +"gMa" = ( +/obj/structure/holoplant, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"gMt" = ( +/obj/machinery/shieldwallgen, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"gMC" = ( +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"gMI" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"gMR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/light/small, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"gMW" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/floor_decal/industrial/traffic/corner, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"gMZ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/vacant/monitoring) +"gNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/fourthdeck/aft) +"gNq" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"gNu" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gNw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"gNA" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"gND" = ( +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"gNL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"gNM" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"gNP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"gNW" = ( +/turf/simulated/wall/prepainted, +/area/rnd/misc_lab) +"gOr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/spot, +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes{ + pixel_x = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"gOv" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"gOx" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = -9 + }, +/obj/floor_decal/steeldecal/steel_decals9, +/obj/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"gOA" = ( +/obj/structure/disposaloutlet, +/obj/machinery/shield_diffuser, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"gOH" = ( +/obj/floor_decal/corner/black/border{ + dir = 10 + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"gOK" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gOY" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/vacant/monitoring) +"gPd" = ( +/obj/structure/table/rack, +/obj/item/stack/material/steel/ten, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"gPe" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/abandoned_hydroponics) +"gPg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = 24; + dir = 8 + }, +/obj/structure/sign/directions/bridge{ + pixel_y = 31; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"gPh" = ( +/obj/random/closet, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"gPl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"gPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"gPw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"gPA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_1{ + desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"gPD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"gPE" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"gPH" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"gPJ" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 32; + pixel_y = -37 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"gPL" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"gPM" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"gPP" = ( +/obj/structure/sign/warning/docking_area{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"gPR" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"gPU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Isolation Cell One"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"gPV" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"gPZ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"gQd" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + id_tag = "escape_pod_1_berth"; + name = "escape pod one berth controller"; + pixel_x = -20; + pixel_y = 32; + tag_door = "escape_pod_1_berth_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"gQl" = ( +/obj/structure/sign/warning/compressed_gas{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/wrench, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"gQn" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"gQr" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"gQz" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + frequency = 1380; + id_tag = "skipjack_shuttle_dock_airlock_outer"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"gQA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"gQB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"gQF" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/laundry) +"gQG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"gQI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/bed/sofa/r/blue{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"gQN" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"gQV" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"gRa" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"gRb" = ( +/obj/machinery/computer/teleporter, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"gRg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"gRi" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/blast/shutters/open{ + name = "Supply Desk Shutters"; + id_tag = "sup_office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"gRj" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "sierra_surgery1" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/surgery/second) +"gRn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"gRr" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"gRs" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"gRw" = ( +/obj/floor_decal/techfloor, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"gRz" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/window/boron_reinforced, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"gRB" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gRO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"gRR" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/exploration/storage) +"gRU" = ( +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"gSc" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"gSd" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"gSe" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"gSf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"gSk" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"gSm" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small, +/obj/machinery/recharger/wallcharger{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"gSp" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"gSw" = ( +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/port) +"gSx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 1; + frequency = 1380; + id_tag = "centcom_shuttle_dock"; + pixel_x = 32; + pixel_y = -29; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"gSB" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"gSC" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"gSH" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/bed/sauna_bench/middle, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"gSJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"gSO" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/exploration/eva) +"gSQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"gSU" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/mining{ + dir = 4; + c_tag = "Mining - EVA" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"gSV" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/firstaid, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/white/monotile, +/area/maintenance/fourthdeck/aft) +"gTc" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"gTl" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/abandoned_hydroponics) +"gTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"gTA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/compactor) +"gTB" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"gTL" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1; + tag_west = 3 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"gTN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"gTP" = ( +/obj/catwalk_plated, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/hangar, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"gTT" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/purple{ + dir = 8 + }, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/office) +"gUf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"gUj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"gUl" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/starboard) +"gUp" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"gUC" = ( +/obj/machinery/atm{ + pixel_y = 32 + }, +/obj/floor_decal/corner/blue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/hop) +"gUF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 6 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"gUM" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/table/rack, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"gUO" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"gUS" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Substation - Fourth Deck" + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"gUT" = ( +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hop/cobed) +"gUV" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"gUX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/table/woodentable/walnut, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"gUY" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"gVa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftport) +"gVb" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/equipstorage) +"gVj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"gVk" = ( +/obj/structure/bed/chair/armchair/brown{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Captain's Office"; + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"gVl" = ( +/obj/structure/closet/secure_closet/scientist_sierra, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"gVn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"gVs" = ( +/obj/machinery/power/apc/super/critical{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"gVz" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/reagent_containers/pill/pod/cream{ + pixel_y = 7; + pixel_x = 8 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"gVE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft_stairwell) +"gVS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gVV" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"gVY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gWa" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"gWh" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"gWi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"gWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"gWk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"gWu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/flora/pottedplant/tall, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/fourth_deck{ + dir = 1; + c_tag = "Fourth Deck - Dock Bay - Visitors" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"gWy" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"gWA" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"gWF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"gWK" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ + id = "cafewindow" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/crew_quarters/cafe/upper) +"gWL" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "rescue_shuttle_dock_airlock_pump"; + power_rating = 25000 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"gWQ" = ( +/obj/structure/window/reinforced, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"gWR" = ( +/obj/structure/curtain/medical, +/obj/structure/kitchenspike, +/obj/structure/window/basic, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"gWU" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"gWW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"gXf" = ( +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"gXj" = ( +/obj/structure/cryofeed, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"gXo" = ( +/obj/structure/flora/seaweed/mid, +/mob/living/simple_animal/aquatic/fish{ + name = "Marry" + }, +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/crew_quarters/cafe/upper) +"gXp" = ( +/obj/random/closet, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/forestarboard) +"gXv" = ( +/obj/structure/table/rack, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"gXw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"gXD" = ( +/obj/structure/fitness/punchingbag, +/obj/floor_decal/corner/red/full, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"gXZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/sign/warning/pods/south{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"gYd" = ( +/turf/simulated/wall/r_wall/hull, +/area/rnd/toxins/storage) +"gYk" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"gYr" = ( +/obj/machinery/button/windowtint{ + dir = 8; + id = "ce_windows"; + pixel_x = 24; + pixel_y = 19 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 8; + id_tag = "cedoor"; + name = "Office Door Control"; + pixel_x = 24; + pixel_y = 6; + req_access = list("ACCESS_CHIEF_ENGINEER") + }, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "eng_lockdown"; + name = "Emergency Lockdown Control"; + pixel_x = 24; + pixel_y = -7; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"gYt" = ( +/obj/spider/spiderling/mundane/dormant, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"gYu" = ( +/obj/machinery/light/small, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"gYx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"gYC" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"gYE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"gYL" = ( +/obj/floor_decal/corner/purple/full, +/obj/structure/flora/pottedplant/mysterious, +/obj/machinery/light_switch{ + dir = 4; + on = 1; + pixel_x = -25 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/rd/cobed) +"gYM" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"gYN" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/folder/nt, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"gYS" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/trash, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"gYU" = ( +/obj/structure/sign/warning/vent_port, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/incinerator) +"gZb" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"gZf" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/hos, +/obj/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"gZm" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"gZs" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"gZv" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"gZz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"gZD" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"gZK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"gZL" = ( +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/crucian_hangar/start) +"gZM" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "o24p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"gZU" = ( +/obj/floor_decal/corner/yellow/half, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"gZX" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/mint, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"gZZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"haa" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/corner/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"hae" = ( +/obj/floor_decal/industrial/hatch/green, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"hal" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"haq" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"har" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"has" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"haz" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"haA" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"haH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"haJ" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"haL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"haP" = ( +/obj/structure/table/standard, +/obj/item/deck/cards{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"haV" = ( +/obj/machinery/keycard_auth/sierra{ + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"haW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"hba" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/development) +"hbb" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"hbd" = ( +/obj/floor_decal/corner/black/bordercee{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hbi" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"hbv" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"hbz" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/chair/pew, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"hbD" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/message_server, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"hbG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"hbM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/airlock) +"hbS" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"hbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_y = -4 + }, +/obj/item/pen{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"hcd" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 4 + }, +/obj/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/vitals_monitor, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"hcf" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/keycard_auth/sierra{ + pixel_x = -24 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"hci" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"hck" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "fuel3p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"hcr" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/table/woodentable, +/obj/item/paper/workvisa, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"hcz" = ( +/obj/machinery/floodlight{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"hcF" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"hcG" = ( +/obj/structure/closet/emcloset/anchored, +/turf/simulated/floor/tiled/techfloor, +/area/bridge) +"hcM" = ( +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"hcP" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"hcQ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/floor_decal/carpet{ + dir = 8 + }, +/obj/floor_decal/carpet{ + dir = 1 + }, +/obj/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"hcS" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"hcT" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"hcW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"hcZ" = ( +/obj/structure/undies_wardrobe, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/clothing/under/schoolgirl, +/obj/item/clothing/head/kitty, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"hdb" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"hdc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/rd/cobed) +"hdi" = ( +/obj/structure/sign/warning/airlock{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Port Two"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hdo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/equipment) +"hdp" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/button/blast_door{ + id_tag = "firingspace"; + name = "Firing Range Shields"; + req_access = list("ACCESS_SEC_DOORS"); + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hdq" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bed/sofa/m/brown{ + dir = 10 + }, +/obj/floor_decal/carpet{ + dir = 4 + }, +/obj/floor_decal/carpet{ + dir = 1 + }, +/obj/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"hdr" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/corner/black/half{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"hdI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/aft) +"hdJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/decal/cleanable/blood/drip, +/obj/decal/cleanable/blood/splatter, +/obj/structure/hygiene/toilet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"hdN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hem" = ( +/obj/structure/bed/chair/padded/green{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"hes" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"heG" = ( +/turf/simulated/wall/prepainted, +/area/security/sierra/brig) +"heJ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"heL" = ( +/obj/shuttle_landmark/escape_pod/start/pod3, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod3/station) +"heP" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/ship) +"heQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/grey, +/obj/item/clothing/mask/gas/aquabreather, +/obj/item/clothing/mask/gas/aquabreather, +/obj/item/clothing/mask/gas/aquabreather, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"heT" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"heV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"heX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hfc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/emcloset, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/research) +"hfl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical/mortus{ + autoset_access = 0; + name = "Mass Driver"; + req_access = list("ACCESS_CHAPEL_STORAGE") + }, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "chapel_shutters_md"; + name = "Mass Driver Shutters"; + opacity = 0; + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/chapel/main) +"hfm" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"hfu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"hfv" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"hfB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"hfF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"hfG" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/tele_pad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"hfH" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/random/powercell, +/obj/random/powercell, +/obj/random/powercell, +/obj/item/folder/nt, +/obj/item/stack/nanopaste, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/development) +"hfK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"hfO" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"hfX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/stack/material/plastic/ten, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"hgg" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"hgw" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/bunk) +"hgz" = ( +/obj/machinery/light, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"hgB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"hgH" = ( +/obj/structure/closet/coffin, +/obj/structure/railing/mapped, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"hgI" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"hgJ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/synthesized_instrument/guitar, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"hgL" = ( +/obj/floor_decal/corner/black/border{ + dir = 10 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hgM" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"hgX" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"hgZ" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/centralport) +"hha" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"hhg" = ( +/obj/floor_decal/floordetail/edgedrain{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"hhl" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"hhq" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"hhy" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"hhD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"hhE" = ( +/turf/simulated/floor/carpet, +/area/chapel/main) +"hhG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"hhI" = ( +/mob/living/carbon/slime, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"hhN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/grey{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"hhO" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"hhP" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"hhW" = ( +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 4 + }, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"hhZ" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"hil" = ( +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"him" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng4_outer"; + name = "First Deck Port Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1port) +"hio" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"hip" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"hiM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"hiT" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/hallway/infirmary) +"hiV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"hjf" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/structure/flora/pottedplant/floorleaf, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"hjg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"hjn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"hjo" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"hjx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"hjA" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "fusion_observation" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/control) +"hjC" = ( +/obj/floor_decal/corner/black/full, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = 29 + }, +/obj/structure/bed/chair/office/comfy/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"hjI" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"hjK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hjL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hjP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"hjS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"hka" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"hkb" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Port"; + dir = 1 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"hkf" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"hkg" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/port) +"hko" = ( +/obj/machinery/vending/cigarette, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"hkq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"hkv" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"hkw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Private Room"; + id_tag = "bar_private_room_2"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"hkx" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Port One" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hkA" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"hkH" = ( +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"hkL" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"hkN" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"hkZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hla" = ( +/obj/decal/cleanable/blood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/foreport) +"hlc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"hlo" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "PetrovShield"; + name = "Blast Shutter Control"; + pixel_x = 5; + pixel_y = -3 + }, +/obj/machinery/button/blast_door{ + id_tag = "PetrovBiohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"hlu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"hlz" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"hlC" = ( +/obj/structure/disposalpipe/segment, +/obj/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"hlF" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/corner/green/half, +/obj/machinery/vending/wallmed1{ + dir = 1; + name = "Emergency NanoMed"; + pixel_y = -29 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"hlL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/grey{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/storage/box/cups{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"hlM" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "CO24p_out"; + initialize_directions = 1; + internal_pressure_bound = 1000; + internal_pressure_bound_default = 1000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"hlO" = ( +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"hlT" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/barrier, +/obj/item/storage/toolbox/mechanical, +/obj/item/gun/energy/ionrifle/small, +/obj/item/gun/energy/gun, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/gloves/captain, +/obj/item/clothing/head/caphat, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"hlU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"hlX" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"hmg" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"hmD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"hmE" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/steel_reinforced, +/obj/item/ladder_mobile, +/obj/item/ladder_mobile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"hmN" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"hmP" = ( +/obj/wallframe_spawn/reinforced/polarized, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hmT" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"hmZ" = ( +/obj/structure/closet/crate/internals/fuel, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"hnk" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/toolbox{ + pixel_y = 14 + }, +/obj/item/folder/yellow{ + pixel_y = -1; + pixel_x = -5 + }, +/obj/item/screwdriver{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"hnq" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"hnw" = ( +/obj/structure/bed/chair/comfy/captain{ + dir = 8 + }, +/obj/landmark/start{ + name = "Captain" + }, +/obj/machinery/button/blast_door{ + id_tag = "bridge_windows"; + name = "Bridge Window Blast Doors"; + pixel_x = 36; + pixel_y = -3 + }, +/obj/machinery/button/blast_door{ + id_tag = "bridge_ent"; + name = "Bridge Entarence Blast Doors"; + pixel_x = 36; + pixel_y = 7 + }, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"hnx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hnB" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/tech_supply{ + pixel_y = 5 + }, +/obj/random/tech_supply{ + pixel_y = -7; + pixel_x = -6 + }, +/obj/random/tech_supply{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/random/tool{ + pixel_y = -4; + pixel_x = 4 + }, +/obj/random/tool{ + pixel_y = 9; + pixel_x = -3 + }, +/obj/random/tank{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"hnL" = ( +/obj/shuttle_landmark/skipjack/deck4, +/turf/space, +/area/space) +"hnN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"hnT" = ( +/obj/structure/table/woodentable_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + dir = 4; + pixel_y = 6 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "сhief_steward_windows"; + pixel_x = -24; + pixel_y = -6; + range = 2 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = 10; + pixel_x = -5 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"hoa" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"hof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/navbeacon/sierra/SD_forehallway1, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"hoi" = ( +/obj/structure/table/standard, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/item/gun/energy/laser/practice, +/obj/structure/window/reinforced, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"hos" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"hou" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/sticky_pad/random, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/item/pen, +/obj/item/storage/box/cups{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"hoJ" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"hoN" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/maintenance, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"hoQ" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"hpa" = ( +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"hpb" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hpc" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/maintenance/bridgedeck/starboard) +"hpd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"hpm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"hpF" = ( +/obj/item/storage/mirror{ + dir = 8; + pixel_x = -1; + pixel_y = -24 + }, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"hpL" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hpO" = ( +/obj/structure/table/standard, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/item/gun/energy/laser/practice, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"hpR" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"hpS" = ( +/obj/structure/flora/pottedplant/minitree{ + pixel_y = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"hpT" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"hpV" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + injecting = 1; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d3starboard) +"hpX" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"hqa" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/structure/fuel_port, +/turf/simulated/wall/titanium, +/area/exploration_shuttle/power) +"hql" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"hqn" = ( +/obj/floor_decal/corner/darkblue, +/obj/structure/janitorialcart, +/obj/item/mop, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"hqt" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"hqv" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"hqB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hqH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"hqO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/landmark/start{ + name = "Research Director" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry) +"hqY" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"hrb" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/forestarboard) +"hrj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"hrr" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/camera/network/command{ + c_tag = "Command - Bridge Port"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"hrz" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"hrB" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"hrO" = ( +/obj/structure/bed/sofa/l/black, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"hrT" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "prototype_controller"; + pixel_x = -23; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"hrY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_r) +"hse" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"hsm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"hsn" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"hsq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/taperoll/bog{ + pixel_x = -12; + pixel_y = -10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"hsw" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/emergency) +"hsT" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/brace{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"hsY" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"hsZ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"htc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/tool{ + pixel_y = -6; + pixel_x = -5 + }, +/obj/random/tool{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/random/tank{ + pixel_y = -1; + pixel_x = 8 + }, +/obj/random/tech_supply{ + pixel_y = 11; + pixel_x = -10 + }, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/hangar) +"htd" = ( +/obj/random/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"htf" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"htl" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/forestarboard) +"htn" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "guppy_shuttle_pump_out_external" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"htx" = ( +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"htB" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"htI" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"htJ" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/decal/cleanable/greenglow, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"htU" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup, +/obj/item/reagent_containers/food/condiment/small/packet/coffee{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"htV" = ( +/obj/floor_decal/carpet/orange{ + dir = 4 + }, +/obj/structure/dogbed, +/mob/living/simple_animal/passive/opossum/poppy, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"htW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"htX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"hui" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hux" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"huG" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"huK" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"huO" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/atmos_alert, +/obj/item/stock_parts/circuitboard/powermonitor, +/obj/item/stock_parts/circuitboard/stationalert, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"huY" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"hva" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/sleep/cryo/south) +"hvd" = ( +/obj/floor_decal/techfloor, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"hvh" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_construct/small, +/obj/random/maintenance, +/turf/simulated/floor/tiled/freezer, +/area/medical/virology/lab) +"hvk" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"hvn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"hvo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/aftport) +"hvp" = ( +/obj/machinery/door/airlock/atmos, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hvt" = ( +/obj/structure/curtain/medical, +/obj/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"hvF" = ( +/obj/random/closet, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"hvO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"hvR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "escape_pod_5_pump" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"hvT" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/computer/upload/ai, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"hvU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"hvZ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 24 + }, +/obj/machinery/button/holosign{ + id_tag = "sierra_surgery2"; + pixel_y = 24 + }, +/obj/machinery/button/windowtint{ + id = "sierra_surgery2"; + pixel_x = -8; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"hwe" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"hwk" = ( +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"hwm" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4; + name = "Maintenance Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/backstorage) +"hwv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/toxins/storage) +"hww" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"hwE" = ( +/obj/structure/grille, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hwI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "ai_core"; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"hwN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"hwP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"hwS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"hwU" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"hwV" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"hwW" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"hwX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/space) +"hwZ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"hxb" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"hxm" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"hxu" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = -21 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"hxy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/mauve/bordercorner2, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"hxD" = ( +/obj/machinery/door/window/brigdoor/eastright{ + id_tag = "iaaleft"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"hxU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"hxY" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/table/woodentable_reinforced/ebony, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen/multi, +/obj/item/sticky_pad/random{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"hya" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"hyc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"hyf" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"hyg" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"hyj" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"hyk" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"hyo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"hys" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hyu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/paint_stripe/turquoise, +/obj/paint/black, +/obj/paint/black, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_teleport) +"hyz" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway - Aft"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"hyA" = ( +/obj/structure/table/rack, +/obj/item/storage/firstaid/regular{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular{ + pixel_y = -10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"hyC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/vending/snix{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"hyD" = ( +/obj/structure/bed/padded, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/vacant/dormintories) +"hyH" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/item/modular_computer/telescreen/preset/medical{ + pixel_x = -32 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"hyL" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"hyP" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/bed/chair/armchair/black, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"hyS" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Research General Cabin"; + req_access = list("ACCESS_RESEARCH"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"hyW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/security/sapper, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"hzb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"hzh" = ( +/obj/machinery/power/tracker, +/obj/floor_decal/solarpanel, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"hzl" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/bed/sofa/l/brown{ + dir = 4 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"hzn" = ( +/obj/structure/sign/thera{ + pixel_y = 32 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"hzv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "solar_bridge_pump" + }, +/obj/machinery/light/small, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "solar_bridge_airlock"; + pixel_x = 2; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL"); + tag_airpump = "solar_bridge_pump"; + tag_chamber_sensor = "solar_bridge_sensor"; + tag_exterior_door = "solar_bridge_outer"; + tag_interior_door = "solar_bridge_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_bridge_sensor"; + pixel_x = -12; + pixel_y = 24 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_starboard) +"hzN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"hzR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"hzW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"hAc" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hAe" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"hAt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hAu" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hAz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hAA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/blue/bordercorner2, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Hallway Two"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hAB" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"hAD" = ( +/obj/structure/ladder/up, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hAE" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/virology{ + locked = 1; + id_tag = "virology_access_inner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"hAJ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"hAO" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"hAP" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"hAV" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"hAZ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/artifact_scanpad, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"hBd" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + name = "Internal Affairs Agent Dorm"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/cobed) +"hBn" = ( +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "security_pod_flash"; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"hBo" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"hBq" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1379; + id_tag = "engine_airlock_outer"; + name = "Engine Airlock Exterior" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hBr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"hBs" = ( +/obj/random/vendor/contraband/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"hBu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"hBv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"hBx" = ( +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"hBL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"hBO" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology) +"hBS" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"hBY" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"hBZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"hCb" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"hCt" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/rnd/toxins) +"hCv" = ( +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"hCw" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"hCF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"hCG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"hCS" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"hCT" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hCU" = ( +/obj/structure/table/woodentable/mahogany, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"hCY" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"hDf" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"hDl" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"hDn" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/containment) +"hDo" = ( +/obj/structure/hygiene/shower{ + dir = 1 + }, +/obj/structure/hygiene/drain/bath, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/random/soap, +/obj/item/towel/fleece, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"hDr" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"hDt" = ( +/obj/floor_decal/industrial/outline/orange, +/obj/structure/ship_munition/disperser_charge/mining, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"hDE" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"hDN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"hDS" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"hDW" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"hEe" = ( +/obj/random/junk, +/obj/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"hEf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"hEt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/structure/bed/chair/armchair/black{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Internal Affairs Communications Relay"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"hEw" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/shipsensors, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/bridge) +"hED" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -24; + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/floor_decal/corner/lime/mono, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"hEE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"hEH" = ( +/obj/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"hEI" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"hEJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/eva) +"hEQ" = ( +/obj/structure/railing/mapped, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"hFb" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"hFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"hFe" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"hFo" = ( +/obj/structure/table/rack/dark, +/obj/item/storage/box/latexgloves, +/obj/item/storage/box/nitrilegloves, +/obj/item/storage/box/bloodpacks, +/obj/item/storage/box/beakers, +/obj/item/storage/box/masks, +/obj/item/storage/box/syringes, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/freezer{ + pixel_y = 13 + }, +/obj/item/storage/med_pouch/burn, +/obj/item/storage/med_pouch/burn, +/obj/item/storage/med_pouch/oxyloss, +/obj/item/storage/med_pouch/oxyloss, +/obj/item/storage/med_pouch/toxin, +/obj/item/storage/med_pouch/toxin, +/obj/item/storage/med_pouch/trauma, +/obj/item/storage/med_pouch/trauma, +/obj/item/roller_bed, +/obj/item/roller_bed, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/auto_cpr, +/obj/floor_decal/spline/plain/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"hFu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"hFB" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"hFC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/machinery/vending/costumes{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"hFK" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"hFN" = ( +/obj/structure/catwalk, +/obj/random/hat, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"hFS" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"hFU" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"hFV" = ( +/obj/structure/railing/mapped, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"hFW" = ( +/obj/floor_decal/spline/plain/black, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hGd" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"hGe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"hGf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"hGh" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"hGj" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"hGr" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/deck/fourth{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"hGt" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hGy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"hGC" = ( +/obj/structure/closet/secure_closet/personal/empty, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sauna) +"hGD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"hGK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"hGM" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hGN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"hGR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bsa_door2"; + name = "Obstruction Field Disperser Blast Door" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/command/bsa) +"hGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Fore Hallway"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"hHa" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/constructable_frame/machine_frame, +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"hHd" = ( +/obj/structure/sign/warning/moving_parts{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"hHm" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"hHp" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"hHv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/research{ + id_tag = "researchdoor_interior"; + name = "Research Division Access"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hHA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"hHC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Escape Pods - Starboard"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"hHF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"hHI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"hHQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"hHX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"hHY" = ( +/obj/structure/table/glass, +/obj/item/device/scanner/spectrometer, +/obj/item/device/scanner/reagent, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"hId" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"hIf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"hIn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/engine_setup/coolant_canister, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hIo" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Aft Starboard"; + dir = 4 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"hIq" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"hIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"hIs" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "teleport3"; + name = "Third Deck Teleporter Access Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"hIu" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"hIE" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/obj/structure/sign/nanotrasen{ + dir = 8 + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod4/station) +"hIP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"hIT" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"hIX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"hJd" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/camera/network/command{ + c_tag = "Command - Chief Medical Officer"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"hJi" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/suplocker_room) +"hJk" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hJw" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"hJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"hJM" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"hJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"hJT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hJV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"hKb" = ( +/obj/structure/railing/mapped, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"hKd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"hKe" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"hKg" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hKj" = ( +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"hKk" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hKl" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"hKq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry) +"hKx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"hKA" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "o24p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"hKH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"hKK" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/center) +"hKN" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"hKO" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"hKY" = ( +/turf/simulated/wall/prepainted, +/area/bridge/adjutants/cobed) +"hLe" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"hLf" = ( +/obj/structure/door_assembly, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hLq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"hLv" = ( +/obj/floor_decal/spline/plain/black, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hLw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"hLG" = ( +/obj/structure/table/glass, +/obj/item/folder, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"hLJ" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hLM" = ( +/obj/structure/table/standard, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level2) +"hLO" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/eva) +"hLX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"hMg" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Backroom"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"hMi" = ( +/obj/random/closet, +/obj/random/maintenance, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"hMp" = ( +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"hMA" = ( +/obj/machinery/computer/modular/preset{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"hMC" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/catwalk, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Shield Subgrid"; + name_tag = "Shield Bypass" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"hMO" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/nano) +"hMV" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"hMX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"hNf" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"hNk" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/fourth_deck{ + dir = 4; + c_tag = "Fourth Deck - Dock Bay - Starboard Two" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hNm" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"hNn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"hNp" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"hNs" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hNC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "d3portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"hNE" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/airlock) +"hNN" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"hNZ" = ( +/obj/structure/railing/mapped, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"hOi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + req_access = newlist(); + name = "Main Warehouse" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"hOp" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"hOq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"hOu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1starboard) +"hOv" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/incinerator) +"hOz" = ( +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/structure/table, +/obj/item/stack/material/wood/walnut{ + amount = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"hOF" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft_stairwell) +"hOL" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"hOR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "petrov_shuttle_airlock"; + pixel_x = -24; + pixel_y = 22 + }, +/obj/floor_decal/corner/purple, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"hOU" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/wrench, +/obj/item/clothing/mask/breath, +/obj/item/tank/oxygen_emergency_extended, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"hOX" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"hPc" = ( +/obj/machinery/suit_storage_unit/medical/alt, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"hPf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"hPn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"hPx" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"hPy" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/bed/chair/padded/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"hPF" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/photocopier, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"hPN" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Bridge Engine" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"hPP" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"hPR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hPX" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/maintenance/seconddeck/forestarboard) +"hQf" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"hQn" = ( +/turf/simulated/wall/prepainted, +/area/medical/maintenance_equipstorage) +"hQr" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"hQt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"hQy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"hQA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"hQO" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"hQX" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"hQZ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "petrov3"; + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"hRc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"hRh" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"hRp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/substation/bridgedeck) +"hRu" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/seconddeck/center) +"hRz" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Pump - waste to connector" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"hRQ" = ( +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hRS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"hRT" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"hRW" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"hRZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/pager/security{ + name = "Call Guards button"; + pixel_x = -12; + pixel_y = 22 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"hSc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad{ + pixel_y = 16; + pixel_x = -16 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"hSf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"hSn" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access_maintaince"; + name = "Xenobotany Lab Access Console"; + pixel_y = 24; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH") + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"hSq" = ( +/obj/machinery/door/airlock/vault/bolted{ + autoset_access = 0; + id_tag = "medsafe_aft"; + name = "Emergency Exit" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"hSu" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"hSw" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"hSx" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/mirror{ + pixel_x = 26; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"hSE" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/flora/pottedplant/thinbush{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"hSU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"hTf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"hTi" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"hTm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"hTt" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/alternate/door{ + pixel_y = 10; + id_tag = "bridge_hallway_doors_starboadr"; + name = "Bridge Hallway Doors Starboard"; + dir = 1 + }, +/obj/machinery/button/blast_door{ + id_tag = "lobb_shutt"; + name = "Lobby shutters control"; + pixel_y = -4; + pixel_x = -4; + dir = 1 + }, +/obj/machinery/button/blast_door{ + id_tag = "lobb_hall_shutt"; + name = "Hallway shutters control"; + pixel_y = -4; + pixel_x = 6; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"hTu" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/circuitboard/bluespacerelay, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"hTA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"hTK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"hTN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"hTO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/button/alternate/door{ + id_tag = "med_crit_d1"; + pixel_y = -4; + pixel_x = -5; + dir = 4; + name = "Critical Wing Deck 1 Entrance" + }, +/obj/machinery/button/alternate/door{ + id_tag = "MedbayInf"; + dir = 4; + pixel_y = 6; + pixel_x = -5; + name = "Infirmary Main Entrance" + }, +/obj/machinery/button/alternate/door{ + id_tag = "med_crit_d2"; + dir = 4; + pixel_y = -4; + pixel_x = 5; + name = "Critical Wing Deck 2 Entrance" + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"hTP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"hTS" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"hTZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech/high_risk) +"hUq" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/paleblue/diagonal, +/obj/item/toy/figure/md, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"hUv" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hUB" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/computer/ship/engines, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"hUE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"hUG" = ( +/obj/structure/bed/sofa/l/teal{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"hUN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"hUQ" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"hUX" = ( +/obj/machinery/door/airlock/civilian{ + id_tag = "toilet_eng_1"; + name = "Toilet"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"hUZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/forestarboard) +"hVf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/light, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"hVg" = ( +/obj/machinery/computer/modular/preset/medical, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"hVh" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse2"; + name = "Warehouse Door Control"; + pixel_y = -27; + req_access = list("ACCESS_CARGO"); + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"hVi" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"hVo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"hVv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/hop) +"hVy" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "cockpit_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cockpit) +"hVE" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 40 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"hVF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"hVK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hVS" = ( +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"hVT" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"hWb" = ( +/obj/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"hWe" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "cedoor"; + name = "Chief Engineer"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#ffbf00" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/ce) +"hWh" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"hWm" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"hWt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"hWB" = ( +/turf/unsimulated/mask, +/area/hallway/primary/fourthdeck/center) +"hWR" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"hWW" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"hWZ" = ( +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"hXe" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_1" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"hXj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"hXn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"hXo" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Captain"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/captain) +"hXp" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/grey, +/obj/random/masks, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"hXt" = ( +/obj/machinery/air_sensor/nacelle/second/co2, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"hXy" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/spot, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hXB" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"hXE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"hXG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"hXP" = ( +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 8; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"hXT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"hXU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"hXZ" = ( +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"hYf" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"hYi" = ( +/obj/shuttle_landmark/lift/rndmaint_bottom, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"hYl" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/woodentable, +/obj/item/tape_roll{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/item/reagent_containers/chem_disp_cartridge/coffee{ + pixel_y = 3; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/beaglemug{ + pixel_y = -5; + pixel_x = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"hYm" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"hYy" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"hYz" = ( +/obj/machinery/seed_storage/random, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"hYB" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hYN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"hYX" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"hZc" = ( +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/obj/item/storage/candle_box/scented, +/obj/structure/bed/sofa/l/lime, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"hZf" = ( +/obj/floor_decal/corner/black/mono, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"hZn" = ( +/turf/simulated/wall/prepainted, +/area/vacant/cargo) +"hZo" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hZp" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/firstdeck/aft) +"hZy" = ( +/obj/machinery/vending/cigarette, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"hZF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"hZG" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/seconddeck/hangar) +"hZK" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"hZL" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"hZN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"hZQ" = ( +/obj/structure/bookcase/manuals, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"hZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"iah" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"ian" = ( +/obj/structure/table/rack, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/crowbar/red, +/obj/item/device/megaphone, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/binoculars, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"ias" = ( +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"iau" = ( +/obj/structure/largecrate, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"iaM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"iaQ" = ( +/obj/machinery/vending/sovietsoda{ + dir = 1 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"iaT" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + dir = 8; + name = "Hallway" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/center) +"iaX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"ibi" = ( +/obj/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/vacant/mess) +"ibt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"ibv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"ibw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"iby" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"ibC" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"ibE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ibF" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"ibG" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/corner/red/bordercee, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ibJ" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"ibQ" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "outercheckwindow"; + name = "Outer Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/opscheck) +"ibS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ibU" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s" + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod7/station) +"ibW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"ich" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 5 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"ick" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"icv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/starboard) +"icw" = ( +/obj/machinery/smartfridge/foods, +/obj/machinery/door/blast/shutters{ + id_tag = "cafe"; + name = "Cafe Shutters"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"icG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"icI" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"icR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"icT" = ( +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/purple/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"icW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"idc" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"idj" = ( +/obj/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"idk" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"idp" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"idq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"idr" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"idu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"idw" = ( +/obj/structure/flora/pottedplant/flower, +/obj/floor_decal/carpet/green{ + dir = 8 + }, +/obj/floor_decal/carpet/green{ + dir = 1 + }, +/obj/floor_decal/carpet/green{ + dir = 9 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"idA" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/space) +"idB" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"idD" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Auxiliary Medical Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/equipstorage) +"idG" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/cafe) +"idH" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"idI" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/obj/floor_decal/corner/black/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"idK" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"idQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Fore Hallway Aft"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"idY" = ( +/obj/structure/table/rack/wooden, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"iej" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/floor_decal/industrial/outline/orange, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"iel" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Control Room"; + network = list("Command","Engineering") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"iep" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"ier" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"ies" = ( +/obj/structure/closet/emcloset, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"ieu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"iew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + frequency = 1380; + id_tag = "merchant_shuttle_station_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"ieD" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ieG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"ieJ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"ieR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"ifd" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/forensic) +"ife" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/light/spot, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/corner/grey/three_quarters, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"ifh" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"ifq" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"ift" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"ifv" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_7"; + name = "escape pod seven controller"; + pixel_x = -20; + tag_door = "escape_pod_7_hatch"; + frequency = 1380 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod7/station) +"ify" = ( +/obj/floor_decal/corner/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"ifz" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/safe_room/seconddeck) +"ifH" = ( +/obj/machinery/power/terminal, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/cell/high{ + pixel_x = 1 + }, +/obj/item/cell/high{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"ifL" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/vending/wallbartender{ + pixel_y = 30 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 6 + }, +/obj/machinery/reagentgrinder/juicer{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"ifM" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/range) +"igs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Security Sergeant's Desk"; + req_access = newlist(); + id_tag = "bo_windows" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_sergeant_shutters"; + name = "Warden Desk" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/sergeant) +"igx" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/crew_quarters/visitors) +"igy" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"igz" = ( +/obj/floor_decal/techfloor, +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"igB" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/forestarboard) +"igE" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"igF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"igH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"igN" = ( +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"igT" = ( +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"igU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"igY" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/sofa/r/brown, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 5 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Canteen - Lounge"; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"ihc" = ( +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ihh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"ihl" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/window/boron_reinforced, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"ihs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"ihx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_room) +"ihy" = ( +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/bikehorn, +/obj/item/storage/candle_box, +/obj/item/device/toner, +/obj/item/device/taperecorder, +/obj/structure/closet/crate, +/obj/item/laserframe, +/obj/machinery/light, +/obj/floor_decal/spline/plain/purple{ + dir = 1 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ihA" = ( +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/obj/floor_decal/industrial/danger, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"ihM" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"ihT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos/bridge) +"ihU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"ihX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"iia" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"iib" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"iid" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random_multi/single_item/space_rabbit, +/turf/simulated/floor/airless, +/area/solar/starboard) +"iif" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"iij" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iim" = ( +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/obj/item/stack/material/plasteel/ten, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/rods/fifty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"iir" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_to_maint" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"iiu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + id_tag = "observation_shielding"; + name = "Observation Shield" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/dungeon_master_lounge) +"iix" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"iiG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"iiS" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"iiX" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"iiZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ijh" = ( +/obj/structure/table/rack, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"ijj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"ijo" = ( +/obj/structure/cart{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_burned{ + pixel_x = -26 + }, +/obj/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/obj/decal/cleanable/cobweb, +/obj/decal/cleanable/ash, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ijv" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"ijx" = ( +/obj/machinery/optable, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"ijE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/chem_disp_cartridge/tea, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; + name = "metal tea cup"; + pixel_x = 10; + pixel_y = 6 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ijM" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ijN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"ijO" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Fore Hallway - Actors" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"ijP" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"ika" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"ikb" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"ike" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "AI Core Access" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai) +"ikg" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Chemistry Refrigerator" + }, +/obj/machinery/smartfridge/secure/medbay{ + req_access = list(list("ACCESS_CHEMISTRY","ACCESS_MEDICAL_EQUIP")) + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"iko" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_6_berth"; + name = "escape pod six berth controller"; + pixel_x = -32; + pixel_y = 21; + tag_door = "escape_pod_6_berth_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"ikr" = ( +/obj/machinery/door/airlock/glass/mining{ + name = "Shuttle Fuel Bay Interior"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"ikx" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Hallway One" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ikB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"ikC" = ( +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"ikH" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/chair/shuttle, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_10"; + name = "escape pod ten controller"; + pixel_x = -20; + tag_door = "escape_pod_10_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod10/station) +"ikK" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"ikN" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/incinerator) +"ile" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/barrier, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"ilr" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/storage/candle_box, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"ils" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/modular/preset/civilian, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"ilt" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"ily" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_starboard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"ilz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"ilB" = ( +/obj/machinery/door/blast/regular{ + id_tag = "petrovcell3"; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"ilO" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"ilR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"ilV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"imi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"imm" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"imn" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"imr" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"ims" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/actor) +"imx" = ( +/obj/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/bridge/nano) +"imA" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "calypso_shuttle_pump_out_internal" + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"imE" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"imH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"imJ" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"imM" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"imR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/wallframe_spawn/reinforced/hull, +/turf/simulated/floor/plating, +/area/bridge) +"imY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/firstdeck/aft_stairwell) +"ina" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"inb" = ( +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/filth, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"inh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/safe_room/bridge) +"inl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"inI" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"inO" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_2_pump" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"inQ" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"inS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"inU" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_1_pump" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"ioc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ioi" = ( +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1starboard) +"iok" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"ioI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ioU" = ( +/obj/machinery/papershredder, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"ipa" = ( +/obj/structure/bed/sofa/r/black, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Lounge - Library" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"ipg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"ipj" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ipo" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ipp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"ipu" = ( +/obj/machinery/camera/network/research{ + c_tag = "Research - Misc. Test Chamber"; + network = list("Research","Miscellaneous Reseach") + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"ipR" = ( +/obj/paint_stripe/yellow, +/obj/paint/dark_gunmetal, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"ipU" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"ipX" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ipZ" = ( +/obj/machinery/door/airlock/glass/command{ + autoset_access = 0; + dir = 4; + name = "Primary Docking Port Control"; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"iqa" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"iqb" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"iqc" = ( +/obj/machinery/door/airlock/research{ + name = "Equipment Storage" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"iqg" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/sauna_bench/middle/north, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"iqj" = ( +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/lava/purple{ + pixel_y = 5; + pixel_x = -8 + }, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"iql" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"iqx" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/access_button/airlock_exterior{ + pixel_y = -24; + master_tag = "solar_bridge_port_airlock"; + pixel_x = -26 + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"iqy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"iqA" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/material/ocp/ten, +/obj/item/stack/material/ocp/ten, +/obj/item/stack/material/plasteel/fifty, +/obj/structure/railing/mapped, +/obj/floor_decal/spline/plain/black, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"iqH" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"iqL" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"iqM" = ( +/obj/structure/table/rack, +/obj/item/device/flashlight, +/obj/item/device/radio, +/obj/item/crowbar, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"iqR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/virology/lab) +"irc" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"irx" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"irA" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"irD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"irE" = ( +/obj/structure/table/glass, +/obj/machinery/keycard_auth/sierra, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"irG" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"irS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng4_inner"; + name = "First Deck Port Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1port) +"irV" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, +/obj/structure/fireaxecabinet{ + dir = 4; + pixel_y = 30 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"irZ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"isi" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"isq" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"isu" = ( +/turf/simulated/wall/prepainted, +/area/assembly/office) +"isv" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"isx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"isA" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"isH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"isJ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"isN" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"isX" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"isY" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bed/sofa/m/brown, +/obj/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"isZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "observation_shielding"; + name = "Observation Shield" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/dungeon_master_lounge) +"iti" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"itj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"itm" = ( +/obj/floor_decal/ntlogo, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"itA" = ( +/obj/item/stack/tile/floor{ + pixel_y = -12; + pixel_x = -7 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"itC" = ( +/obj/structure/bed/chair/office/green, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"itG" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/test_room) +"itJ" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"itQ" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "xenobioaqua"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/water_cell) +"iud" = ( +/obj/floor_decal/corner/research/mono, +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"iue" = ( +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/corner/lime/border, +/obj/structure/curtain/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"iui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"iul" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ius" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"iuu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/navbeacon/sierra/FD_afthallway1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"iuv" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"iuB" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"iuE" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/sergeant) +"iuK" = ( +/obj/structure/bed/chair/office/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"iuS" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/equipment) +"iuW" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "cChamber4pV"; + name = "Chamber Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"iuZ" = ( +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"ivb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ivd" = ( +/obj/machinery/door/blast/regular{ + id_tag = "d4portnacelle" + }, +/obj/machinery/atmospherics/valve/digital{ + id_tag = "RE4F"; + name = "RE4 digital valve" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"ivl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"ivu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sign/warning/radioactive{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for engine core."; + dir = 4; + id_tag = "gravgen-antirad-shielding"; + name = "Gravitational Generator Radiation Shielding Control"; + pixel_x = -21; + pixel_y = 10 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"ivv" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "guppy_shuttle_pump_out_external" + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1331; + id_tag = "guppy_shuttle_exterior_sensor"; + master_tag = "guppy_shuttle"; + pixel_x = 25; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"ivw" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"ivz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"ivB" = ( +/turf/simulated/wall/prepainted, +/area/rnd/storage) +"ivC" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/landmark{ + name = "JoinLateCyborg" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"ivD" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"ivJ" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "briefing_windows" + }, +/turf/simulated/floor/plating, +/area/bridge/marine_room) +"ivL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"ivM" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_eva) +"ivP" = ( +/obj/machinery/photocopier, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"ivT" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"ivW" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"iwf" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/b_green/border, +/obj/machinery/cell_charger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"iwh" = ( +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"iwi" = ( +/obj/machinery/power/smes/buildable/preset/patrol/engine_gyrotron, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"iwk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"iwz" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"iwE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"iwY" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"iwZ" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/bridge) +"ixb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/tool, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"ixc" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod11/station) +"ixd" = ( +/obj/floor_decal/industrial/outline/red, +/obj/structure/ship_munition/disperser_charge/fire, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"ixk" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"ixu" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -1 + }, +/obj/item/folder/red, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"ixA" = ( +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ixH" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ixK" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"ixM" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ixQ" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"ixU" = ( +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "bridge_windows" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge_ent"; + name = "Bridge Lockdown" + }, +/turf/simulated/floor/plating, +/area/bridge) +"iyb" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio1"; + name = "Containment Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"iyd" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + target_pressure = 200 + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"iyi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Substation - Second Deck" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"iyk" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"iyn" = ( +/obj/machinery/light_switch{ + pixel_x = 21; + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/stool/wood, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"iyp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/cooker/fryer, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"iyv" = ( +/obj/floor_decal/corner/darkblue/half, +/obj/floor_decal/corner/darkblue{ + dir = 5 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"iyx" = ( +/obj/structure/ladder, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/foreport) +"iyA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "RND - Servers"; + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"iyB" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/compactor) +"iyC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"iyF" = ( +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/generic{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"iyG" = ( +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"iyO" = ( +/obj/machinery/disposal, +/obj/item/mop, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"iyZ" = ( +/obj/machinery/papershredder, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/machinery/camera/network/expedition{ + c_tag = "Expedition - Leader"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"izf" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/ship/navigation{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"izh" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"izi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"izj" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"izk" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "Mail" + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"izl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"izp" = ( +/obj/machinery/honey_extractor, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/light/spot, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"izs" = ( +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "waste_in"; + name = "Waste Tank Control"; + output_tag = "waste_out"; + sensor_name = "Waste Tank"; + sensor_tag = "waste_sensor" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"izt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"izv" = ( +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/fluid_mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"izz" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/structure/sign/directions/security{ + pixel_y = -24; + pixel_x = 32 + }, +/obj/structure/sign/directions/infirmary{ + pixel_y = -31; + pixel_x = 32 + }, +/obj/structure/sign/directions/science{ + pixel_y = -38; + pixel_x = 32 + }, +/obj/machinery/camera/network/second_deck{ + dir = 8; + c_tag = "Second Deck - Aft Stairwell" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"izE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"izW" = ( +/obj/structure/bed/sofa/l/red{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"iAj" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"iAm" = ( +/obj/structure/catwalk, +/obj/structure/sign/warning/hot_exhaust{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/open, +/area/space) +"iAq" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/starboard) +"iAt" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"iAv" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"iAD" = ( +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "infimary_staging" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit1"; + name = "Infirmary Staging Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/sleeper) +"iAP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200 + }, +/obj/structure/closet/medical_wall/filled{ + pixel_x = 32 + }, +/obj/random/firstaid, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"iAQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"iAT" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/open, +/area/maintenance/seconddeck/aftstarboard) +"iAW" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"iBa" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"iBd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"iBl" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/regular{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"iBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"iBu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"iBA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"iBB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"iBH" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"iBI" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/camera/network/command{ + c_tag = "Command - Vault"; + dir = 8 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"iBJ" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"iBN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"iBO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"iBT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"iBZ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/condiment/small/packet/sugar{ + pixel_y = 3; + pixel_x = 8 + }, +/obj/item/reagent_containers/food/condiment/small/packet/sugar{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/condiment/small/packet/sugar{ + pixel_y = -5; + pixel_x = 8 + }, +/obj/item/reagent_containers/food/drinks/pitcher{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/machinery/reagent_temperature{ + pixel_x = -3 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"iCa" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"iCf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"iCg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/cargo) +"iCj" = ( +/obj/shuttle_landmark/ninja/deck1, +/turf/space, +/area/space) +"iCl" = ( +/obj/structure/railing/mapped{ + color = "#46698c"; + init_color = "#46698c" + }, +/turf/simulated/open, +/area/hallway/primary/bridgedeck/central_stairwell) +"iCD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"iCF" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/development) +"iCK" = ( +/obj/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"iCS" = ( +/obj/decal/cleanable/dirt, +/obj/structure/synthesized_instrument/synthesizer/piano, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"iDb" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"iDf" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/structure/sign/botany{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"iDj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"iDl" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"iDo" = ( +/obj/machinery/atmospherics/valve/shutoff/fuel{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"iDp" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"iDr" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/table/standard, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/stamp/cargo{ + name = "supply rubber stamp" + }, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/item/device/eftpos{ + pixel_y = 11; + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"iDB" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"iDE" = ( +/obj/structure/window/basic, +/obj/machinery/door/window{ + autoset_access = 0; + dir = 4 + }, +/obj/structure/curtain/open/privacy, +/obj/item/stool/padded, +/obj/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"iDK" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/floor_decal/corner/grey/border{ + dir = 5 + }, +/obj/machinery/vending/lavatory{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"iDP" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"iDU" = ( +/obj/structure/mattress, +/turf/simulated/floor/tiled, +/area/maintenance/firstdeck/aftstarboard) +"iEb" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"iEl" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/mauve/border, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"iEm" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"iEq" = ( +/obj/floor_decal/industrial/outline/red, +/obj/structure/ship_munition/disperser_charge/fire, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"iEt" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/computer/air_control{ + input_tag = "CO22p_in"; + name = "Propellent Supply Control"; + output_tag = "CO22p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngCO22" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"iEv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"iEy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"iEB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"iEJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"iEL" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"iEY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"iFe" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"iFg" = ( +/obj/shuttle_landmark/sierra/deck1/vox_raider, +/turf/space, +/area/space) +"iFo" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/sleeper/survival_pod{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"iFx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"iFD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/vending/soda{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"iFF" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"iFH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"iFP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"iGb" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/gloves, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"iGf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"iGg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"iGi" = ( +/obj/machinery/pointdefense_control{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"iGl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"iGm" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"iGp" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"iGv" = ( +/obj/structure/closet/crate/critter, +/obj/item/device/scanner/health, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/mining, +/obj/item/autopsy_scanner, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/price, +/obj/item/device/scanner/xenobio, +/obj/item/device/t_scanner, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/floor_decal/spline/plain/purple{ + dir = 9 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Warehouse - Shutters"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"iGy" = ( +/obj/machinery/door/airlock/research{ + dir = 4; + name = "RND - Servers"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"iGA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iGE" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"iGS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/center) +"iGV" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"iGY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"iGZ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"iHc" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"iHg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"iHh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iHn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/incinerator) +"iHt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"iHw" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"iHy" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"iHA" = ( +/obj/structure/hygiene/shower{ + pixel_y = 15 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"iHF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"iHT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"iHU" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "forensicswindow" + }, +/turf/simulated/floor/plating, +/area/security/sierra/forensic) +"iHX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod6/station) +"iIc" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"iIe" = ( +/obj/floor_decal/corner/black/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iIk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"iIm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"iIp" = ( +/obj/item/stack/tile/floor{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"iIr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"iIz" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "xenobio1"; + name = "Containment Blast Doors" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"iIA" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/red, +/obj/structure/curtain/open/bed, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/item/storage/secure/safe{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"iIC" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"iIE" = ( +/obj/structure/railing/mapped, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iIF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iIJ" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"iIK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"iJh" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"iJi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"iJp" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"iJr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"iJE" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"iJH" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"iJK" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"iJL" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"iJM" = ( +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iJQ" = ( +/obj/decal/cleanable/blood/drip, +/obj/decal/cleanable/blood/splatter, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/foreport) +"iJU" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"iKb" = ( +/obj/structure/flora/seaweed/glow, +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"iKf" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/robotics, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"iKi" = ( +/obj/structure/catwalk, +/obj/structure/sign/warning/moving_parts{ + dir = 8; + pixel_x = 34 + }, +/obj/structure/railing/mapped, +/obj/machinery/conveyor_switch/oneway{ + id = "charon_cargo_in"; + name = "charon external conveyor switch"; + pixel_x = 10; + pixel_y = 15 + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"iKj" = ( +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"iKp" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"iKs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"iKt" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"iKu" = ( +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "iaaright"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"iKw" = ( +/obj/floor_decal/industrial/warning/full, +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1331; + id_tag = "calypso_shuttle_exterior_sensor"; + master_tag = "calypso_shuttle"; + pixel_x = -2; + pixel_y = 27; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "calypso_shuttle_pump_out_external" + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"iKy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"iKC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"iKK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"iKQ" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/fabricator, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Hard Storage" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"iKU" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d2portnacelle" + }, +/obj/machinery/atmospherics/valve/digital{ + id_tag = "RE2F"; + name = "RE2F digital valve" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"iLc" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iLd" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/closet/crate/secure/biohazard, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"iLh" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/junkfood, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iLG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"iLJ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"iLM" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"iLO" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"iLZ" = ( +/obj/machinery/air_sensor/nacelle/third/plasma, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"iMa" = ( +/turf/simulated/wall/prepainted{ + can_open = 1 + }, +/area/maintenance/firstdeck/foreport) +"iMf" = ( +/obj/structure/railing/mapped, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"iMg" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/aftport) +"iMh" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "ai_starboard_inner"; + name = "Engineering External Access" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"iMi" = ( +/obj/floor_decal/industrial/traffic, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"iMo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id_tag = "Isocell3"; + pixel_x = -6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"iMs" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"iMu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"iMx" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"iMy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"iMB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"iMF" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"iMM" = ( +/obj/machinery/door/airlock/security{ + autoset_access = 0; + name = "Escape Pod Cell"; + req_access = list("ACCESS_BRIG") + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"iMO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iMS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"iMW" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"iMY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"iNb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8; + pixel_y = -5 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"iNd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"iNg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"iNj" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"iNm" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"iNo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"iNp" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper/sierra/engineering_SMairlock, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "engine_airlock"; + name = "Cycle to Engineering"; + pixel_x = -24; + pixel_y = 24 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"iNv" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/powercell, +/obj/machinery/cell_charger, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/spline/plain/purple{ + dir = 5 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"iNw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"iNG" = ( +/obj/shuttle_landmark/supply/station, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"iNH" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"iNN" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"iNW" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"iOb" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"iOc" = ( +/obj/structure/table/steel, +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/random/powercell, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"iOj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/sign/warning/vacuum{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"iOl" = ( +/obj/structure/closet/crate/secure/biohazard{ + req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER")) + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"iOt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"iOu" = ( +/obj/machinery/atmospherics/unary/tank{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"iOw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"iOx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"iOy" = ( +/obj/structure/table/standard, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/robotics_cyborgs, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/assembly/office) +"iOE" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"iOH" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"iOJ" = ( +/obj/item/bodybag, +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/storage/box/autoinjectors, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"iOP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"iPd" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"iPj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"iPk" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/module/power_control, +/obj/item/module/power_control, +/obj/item/module/power_control, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/obj/item/airlock_electronics, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"iPl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/auxpower) +"iPp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"iPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"iPw" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 26; + pixel_y = 2 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"iPB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"iPQ" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"iPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "shower2"; + name = "Lock"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"iPZ" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaaleft" + }, +/obj/structure/filingcabinet{ + pixel_x = 5 + }, +/obj/structure/filingcabinet{ + pixel_x = -6 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "iaadoorleft"; + name = "Office Door Control"; + pixel_y = 24; + req_access = list("ACCESS_IAA"); + pixel_x = -5 + }, +/obj/machinery/button/windowtint{ + id = "iaaleft"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"iQc" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "sd_port_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"iQd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"iQe" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"iQh" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/obj/item/book/manual/nt_regs, +/obj/structure/table/glass/boron, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"iQl" = ( +/obj/floor_decal/industrial/danger/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"iQn" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/space) +"iQp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + name = "Break Room" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/range) +"iQy" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/closet/hydrant{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"iQz" = ( +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"iQB" = ( +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_upload) +"iQF" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"iQG" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"iQH" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"iQR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/iv_stand, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"iQS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/civilian{ + name = "Bartenders'"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/spline/fancy/black, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/grey, +/obj/structure/curtain/open/shower/security{ + name = "bar curtain" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar) +"iQX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"iQY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"iRb" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"iRg" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/seconddeck/fore) +"iRm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"iRr" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"iRu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"iRv" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/sergeant) +"iRA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"iRB" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_r) +"iRD" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"iRF" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/three_quarters, +/obj/structure/table/steel_reinforced, +/obj/item/device/taperecorder, +/obj/item/device/tape, +/obj/item/device/tape, +/obj/item/device/tape, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"iRI" = ( +/obj/machinery/power/breakerbox{ + RCon_tag = "Shield Substation Bypass" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"iRR" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/curtain/bed{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/bottle/premiumvodka{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/drinks/glass2/shot{ + pixel_y = 9; + pixel_x = 7 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"iSd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"iSe" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"iSn" = ( +/obj/machinery/crusher_base{ + icon_state = "middle" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"iSy" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"iSK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"iSR" = ( +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/corner/purple/half{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"iSW" = ( +/obj/structure/lattice, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"iSY" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"iSZ" = ( +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"iTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/sofa/r/red{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"iTh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/thruster/d1port) +"iTl" = ( +/obj/structure/closet/secure_closet/CMO_sierra, +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"iTp" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/hole{ + dir = 8 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"iTq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"iTv" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"iTy" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"iTz" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"iTD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_fore9, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"iTH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"iTM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/mining{ + dir = 8; + name = "Hangar Bay"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_1" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"iTQ" = ( +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/assembly/office) +"iTR" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/exploration/briefing_room) +"iTX" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"iTZ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"iUf" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/medbay{ + c_tag = "Equipment - First Aid"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"iUm" = ( +/obj/machinery/light/small, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"iUA" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sauna) +"iUC" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"iUN" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"iUO" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"iVd" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"iVe" = ( +/obj/machinery/chem_master, +/obj/floor_decal/corner/beige/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"iVf" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"iVg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "mental_health_windows" + }, +/turf/simulated/floor/plating, +/area/medical/mentalhealth) +"iVs" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Maintenance"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id_tag = "eng_lockdown_emg3"; + name = "Emergency Exit" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"iVt" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"iVA" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"iVJ" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"iVK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"iVN" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/central_stairwell) +"iVQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"iVR" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"iVV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"iVZ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "rd_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/rd) +"iWe" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"iWf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/expedition/storage) +"iWp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"iWs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"iWt" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/storage/bible/bible, +/obj/item/storage/bible/bible, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"iWB" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"iWD" = ( +/obj/machinery/space_heater, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"iWF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"iWG" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_5_hatch"; + name = "Escape Pod Five Hatch" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"iWK" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"iWM" = ( +/obj/structure/holoplant, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Fore Hallway - Mantenance"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"iWV" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/bridgedeck/aft) +"iWX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"iXp" = ( +/obj/structure/bed/chair/padded/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"iXz" = ( +/obj/structure/flora/seaweed, +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish/grump, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"iXA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"iXM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"iXS" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/oxygen_pump{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access"; + name = "Xenobotany Lab Access Console"; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"iYa" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"iYp" = ( +/turf/simulated/wall/r_wall/hull, +/area/bridge) +"iYx" = ( +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"iYy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"iYD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"iYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"iYI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_eva) +"iYR" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood{ + icon_state = "wood_broken5" + }, +/area/vacant/sauna) +"iYT" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"iYZ" = ( +/obj/machinery/computer/fusion/fuel_control{ + dir = 4; + initial_id_tag = "aux_fusion_plant"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"iZc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"iZg" = ( +/obj/structure/catwalk, +/obj/structure/ladder/up, +/turf/simulated/floor/airless, +/area/space) +"iZs" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"iZu" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/closet/secure_closet/warden/sierra, +/obj/item/device/scanner/price, +/obj/item/device/eftpos{ + eftpos_name = "Warden's EFTPOS scanner" + }, +/obj/item/device/radio/off, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"iZx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"iZP" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_eva) +"iZZ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"jac" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"jal" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "hos_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hos) +"jan" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"jaq" = ( +/obj/machinery/papershredder, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"jar" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jav" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"jay" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"jaJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"jaO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos/bridge) +"jaU" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"jaZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"jbe" = ( +/obj/machinery/door/airlock/glass/civilian{ + name = "Primary Tool Storage" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"jbr" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"jbw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d2portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"jbH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"jbJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jbK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/floodlight{ + dir = 8 + }, +/obj/structure/sign/emergonly{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jbN" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"jbO" = ( +/obj/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/bridge/nano) +"jbQ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"jce" = ( +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"jcg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"jcn" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_y = 30 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"jcy" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"jcz" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"jcA" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"jcE" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/vendor/contraband/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"jcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"jcL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/pew, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"jcM" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/starboard) +"jcU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "xenohight_airlock_inner"; + name = "Xenobiology External Airlock"; + frequency = 1379; + locked = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry) +"jdc" = ( +/obj/structure/closet/fridge, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"jdd" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"jdg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"jdm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"jdy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"jdC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jdD" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"jdW" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jdX" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"jdY" = ( +/obj/machinery/door/airlock/multi_tile/research{ + dir = 8; + frequency = 1379; + id_tag = "xenolow_airlock_inner"; + locked = 1; + name = "Xenobiology Internal Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry2) +"jee" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/fourthdeck/central_stairwell) +"jej" = ( +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"jes" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"jev" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jey" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"jeH" = ( +/obj/structure/bed/sofa/l/black{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"jeK" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/closet/walllocker{ + pixel_y = 28 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - Morgue - Cadavers" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"jeV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jeX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"jfc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"jfg" = ( +/obj/item/stool, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/solar/bridge_port) +"jfh" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/hos) +"jfi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"jfm" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"jfo" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/tape/research, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"jfq" = ( +/obj/structure/table/standard, +/obj/item/paper{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/folder{ + pixel_y = -6; + pixel_x = -5 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"jfu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"jfv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain/secret_room/level_one) +"jfy" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/mask/gas/half, +/obj/item/tank/oxygen_emergency_extended, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"jfA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"jfF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"jfH" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"jfR" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"jfS" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/obj/machinery/flasher{ + dir = 1; + id_tag = "ai_core"; + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"jfY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/black/border{ + dir = 9 + }, +/obj/structure/filingcabinet/wallcabinet{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"jga" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"jgb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"jgL" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"jgM" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"jgT" = ( +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos/bridge) +"jhb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"jhc" = ( +/obj/shuttle_landmark/merc/deck4, +/turf/space, +/area/space) +"jhd" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"jhh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"jhl" = ( +/obj/machinery/radio_beacon, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"jhm" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ + id = "сhief_steward_windows" + }, +/turf/simulated/floor/plating, +/area/command/chief_steward) +"jhq" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"jhr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"jhy" = ( +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"jhB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"jhF" = ( +/obj/machinery/papershredder, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"jhJ" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"jhN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"jhQ" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/radiation{ + pixel_y = 9 + }, +/obj/item/storage/firstaid/trauma{ + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = -6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"jhS" = ( +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes{ + pixel_y = 10 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"jhY" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/secure/briefcase/nukedisk, +/obj/prefab/hand_teleporter, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"jic" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"jid" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/corner/grey{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"jil" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"jit" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"jiv" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"jiA" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"jiD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"jiE" = ( +/obj/item/ladder_mobile, +/turf/simulated/floor/tiled/white, +/area/maintenance/firstdeck/aftstarboard) +"jiI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"jiQ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "bridgesafe_back"; + name = "Emergency Exit door-control"; + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"jiT" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"jiU" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/item/paper_bin, +/obj/item/pen/multi, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"jiV" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"jja" = ( +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"jjh" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"jjj" = ( +/turf/simulated/floor/greengrid{ + map_airless = 1 + }, +/area/engineering/engine_room) +"jjn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"jjo" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/machinery/sparker{ + id_tag = "engines"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"jjp" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "solar_bridge_airlock"; + name = "interior access button"; + pixel_x = 24; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"jjB" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Lab" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"jjF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet, +/area/chapel/main) +"jjH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Bluespace Engine" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"jjJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"jjV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/tele_beacon, +/obj/floor_decal/corner/purple/border, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the cargo doors."; + dir = 1; + id_tag = "researchdoor_interior"; + name = "Research Door Control"; + pixel_x = 6; + pixel_y = -24; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -6; + pixel_y = -24; + req_access = list("ACCESS_RESEARCH") + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jkc" = ( +/obj/structure/bed/chair/office/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"jkg" = ( +/obj/structure/table/woodentable, +/obj/item/book/manual/detective, +/obj/item/device/camera, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"jkq" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + name = "First Deck Starboard Nacelle"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1starboard) +"jkr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"jky" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"jkC" = ( +/obj/machinery/door/blast/regular{ + id_tag = "sensor_shutters" + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/seats_place) +"jkH" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"jkL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "med_pub_hall"; + name = "Infirmary Entry Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/hallway/infirmary) +"jkN" = ( +/obj/structure/table/woodentable_reinforced/mahogany/walnut, +/obj/floor_decal/spline/fancy/black, +/obj/item/spirit_board, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"jkR" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"jkS" = ( +/obj/structure/handrail, +/turf/simulated/floor/reinforced, +/area/space) +"jkU" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"jll" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"jlp" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/brown/bordercorner2, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"jlt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"jlK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/obj/machinery/button/blast_door{ + id_tag = "disvent"; + name = "Incinerator Vent Control"; + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"jlU" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/sofa/l/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jmb" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"jmc" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "specops_dock_sensor"; + master_tag = "specops_dock"; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "specops_dock_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"jme" = ( +/obj/structure/bed/chair/pew/mahogany{ + dir = 1; + icon_state = "chair_pewchapel_middle_over" + }, +/obj/decal/cleanable/dirt, +/obj/item/towel/random, +/obj/structure/bed/chair/pew/left/mahogany, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"jmm" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/machine/jukebox_custom, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"jms" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"jmt" = ( +/obj/machinery/computer/modular/preset/supply_public, +/obj/floor_decal/corner/purple/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/security) +"jmu" = ( +/obj/structure/bed/chair/office/comfy/teal, +/obj/floor_decal/corner/blue/diagonal, +/obj/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"jmx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"jmz" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"jmE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + dir = 4; + id_tag = "mental_health_door"; + name = "Mental Health" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/mentalhealth) +"jmI" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/ce) +"jmN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"jmP" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/airlock_sensor{ + id_tag = "fd_starboard_sensor"; + master_tag = "fd_starboard"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "fd_starboard_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jmW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"jny" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/structure/table/rack, +/obj/item/rig/ce/equipped, +/obj/item/clothing/mask/gas/half, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "suit storage"; + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/ce) +"jnD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"jnG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/machinery/computer/air_control{ + dir = 1; + name = "Nacelle Chamber Monitoring"; + sensor_name = "Chamber"; + sensor_tag = "ReacEng1" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"jnJ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"jnK" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/flora/pottedplantsmall/leaf{ + pixel_x = 6 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"jnT" = ( +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"jnY" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/barrier, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"joa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"jol" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"joo" = ( +/obj/random/closet, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"jor" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 8 + }, +/obj/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"jou" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/vacant/dormintories) +"joA" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"joT" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"jpb" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/port) +"jpo" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Energy Storage - First Deck" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"jpD" = ( +/obj/structure/bed/chair/padded/green, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"jpF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/wall/r_wall/hull, +/area/space) +"jpS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/power/terminal, +/obj/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"jpT" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"jqb" = ( +/obj/structure/bookcase, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/book/manual/anomaly_testing, +/obj/item/book/manual/excavation, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"jqf" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/starboard) +"jqk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"jqv" = ( +/obj/structure/table/rack, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"jqG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"jqI" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"jqP" = ( +/obj/machinery/button/blast_door{ + id_tag = "cafe"; + name = "Cafe Shutters"; + pixel_x = 26; + req_access = list("ACCESS_KITCHEN") + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"jqX" = ( +/obj/floor_decal/corner/red, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"jrj" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/vacant/gambling) +"jrw" = ( +/obj/machinery/door/airlock/external{ + autoset_access = 0; + frequency = 1331; + id_tag = "calypso_shuttle_inner"; + name = "Charon External Access"; + req_access = list(list("ACCESS_EXPEDITION_SHUTTLE")) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"jrx" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jry" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"jrz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red, +/obj/machinery/door_timer/cell_2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"jrD" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"jrF" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/floodlight{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jrK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "guppy_shuttle_pump" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"jrL" = ( +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"jrQ" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"jrX" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"jsb" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/floor_decal/corner/grey/full, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"jse" = ( +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"jsg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"jsk" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"jsl" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"jsn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"jsq" = ( +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo/firstdeck) +"jsr" = ( +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"jss" = ( +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"jsz" = ( +/obj/structure/bed/chair/office/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"jsD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"jsG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"jsH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"jsP" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "cedoor"; + name = "Chief Engineer Dorm"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#ffbf00" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/ce/cobed) +"jsR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"jsU" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"jsV" = ( +/obj/structure/mattress, +/obj/random/drinkbottle, +/obj/random/snack, +/obj/random/snack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/foreport) +"jsW" = ( +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"jsY" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/gym) +"jtf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/navbeacon/sierra/SD_fore2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"jtg" = ( +/obj/fluid_mapped, +/obj/item/clothing/under/shorts/grey, +/obj/random/trash, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/item/soap, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"jtu" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo{ + name = "stairs" + }, +/area/crew_quarters/garden_room) +"jtx" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"jtD" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Sensors Maintenance"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "bridge_ent"; + name = "Bridge Lockdown" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge) +"jtL" = ( +/obj/floor_decal/corner/black/border{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jtY" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Substation - Bridge Deck"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"juk" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/navbeacon/sierra/SD_afthallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"jul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"jun" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"juu" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/obj/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"juH" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/cockpit) +"juR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"juZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/civilian{ + name = "Cryogenic Storage" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"jvi" = ( +/obj/machinery/hologram/holopad{ + pixel_x = -16 + }, +/obj/floor_decal/corner/red, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_fitst_cell_shutters"; + name = "1st Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_x = 21; + dir = 8 + }, +/obj/machinery/button/flasher{ + dir = 8; + pixel_x = 22; + pixel_y = -9; + id_tag = "security_first_cell_flash"; + req_access = list("ACCESS_SECURITY") + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"jvu" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"jvv" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/foreport) +"jvA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"jvK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/air_control/supermatter_core{ + dir = 8; + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + pressure_setting = 100; + sensor_name = "Engine Core"; + sensor_tag = "engine_sensor" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"jvL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"jvP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"jwe" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "fd_starboard_outer"; + name = "First Deck Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "fd_starboard"; + name = "exterior access button"; + pixel_x = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"jwh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"jwl" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"jwp" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "32-8"; + d1 = 32 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/engineering/atmos/bridge) +"jws" = ( +/obj/machinery/power/smes/buildable/preset/sierra/shuttle{ + RCon_tag = "Shuttle - Petrov" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"jwx" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/body_scanconsole{ + dir = 1 + }, +/obj/machinery/button/alternate/door{ + id_tag = "MedbayInf"; + dir = 8; + pixel_y = 24; + pixel_x = 23; + name = "Treatment Center Exit" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"jwM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault/bolted{ + autoset_access = 0; + id_tag = "bridgesafe_back"; + name = "Emergency Exit" + }, +/obj/item/airlock_brace{ + req_access = list("ACCESS_BRIDGE") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/bridge) +"jwN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Incinerator" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/incinerator) +"jwX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jwZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"jxi" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/black/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"jxj" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"jxp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng4"; + name = "Deck One Port status indicator"; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"jxv" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"jxw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"jxz" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"jxH" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/heads/office/rd/cobed) +"jxI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/spot, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jxR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"jxW" = ( +/obj/machinery/vending/hydronutrients{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"jxX" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/equipment) +"jxY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"jyb" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical{ + name = "Critical Wing"; + id_tag = "med_crit_d2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit2"; + name = "Infirmary Staging Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"jyh" = ( +/obj/random/obstruction, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dungeon) +"jyp" = ( +/obj/fluid_mapped, +/obj/random/trash, +/obj/random/soap, +/mob/living/simple_animal/aquatic/fish, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"jyr" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/machinery/photocopier, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"jyD" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"jyG" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/storage/box/donut, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"jyO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Aft Hallway Starboard"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"jyU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jyV" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/office) +"jyW" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/clothing/gloves/insulated, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"jyX" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"jze" = ( +/obj/structure/disposalpipe/junction/mirrored{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals6, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"jzf" = ( +/obj/floor_decal/chapel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"jzm" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/expedition/storage) +"jzv" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"jzA" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"jzJ" = ( +/obj/structure/bed, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"jzL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"jzN" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/structure/bed/chair/armchair/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"jzR" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"jAd" = ( +/turf/simulated/floor/airless, +/area/space) +"jAm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"jAr" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"jAx" = ( +/obj/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/bed/chair/pew/mahogany, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"jAF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/orange, +/area/security/range) +"jAH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jAJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"jAU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/civilian{ + autoset_access = 0; + name = "Comissary" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"jAV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/actor) +"jAW" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod1/station) +"jAY" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"jBb" = ( +/turf/unsimulated/mask, +/area/hallway/primary/thirddeck/center) +"jBc" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/folder/nt, +/obj/item/pen, +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/obj/floor_decal/corner/purple/three_quarters{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"jBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"jBp" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"jBz" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/fourthdeck) +"jBE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"jBO" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/substation/seconddeck) +"jBQ" = ( +/obj/machinery/bluespacerelay, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"jBS" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"jBT" = ( +/obj/floor_decal/spline/fancy/black, +/obj/floor_decal/corner/red/border, +/obj/machinery/light/led/small, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"jBX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/machinery/meter, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"jBY" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"jCd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jCo" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"jCp" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"jCr" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "toxins_petrov_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"jCA" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1379; + heat_proof = 1; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"jCI" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"jCQ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"jCW" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"jCZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jDc" = ( +/obj/floor_decal/corner/grey/full, +/obj/machinery/papershredder, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"jDf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"jDi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"jDj" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"jDk" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"jDq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jDr" = ( +/obj/structure/table/standard, +/obj/item/storage/box/checkers/chess, +/obj/item/storage/box/checkers, +/obj/item/storage/box/checkers/chess/red, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"jDs" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"jDv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"jDJ" = ( +/obj/machinery/artifact_scanpad, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"jDK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jDO" = ( +/obj/machinery/door/airlock/research{ + name = "Cockpit" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"jDS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"jEc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"jEd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/space) +"jEh" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"jEl" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"jEo" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Supply" + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jEq" = ( +/obj/structure/lattice, +/turf/simulated/wall/r_wall/prepainted, +/area/bridge) +"jEt" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/largecrate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"jED" = ( +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"jEE" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"jEI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"jEJ" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"jEL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"jET" = ( +/turf/simulated/wall/r_wall/hull, +/area/security/sierra/brig) +"jFl" = ( +/obj/random/vendor/contraband/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jFo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"jFp" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jFr" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"jFv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"jFy" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"jFF" = ( +/obj/structure/railing/mapped, +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"jFG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jFH" = ( +/obj/machinery/door/airlock/civilian{ + autoset_access = 0; + name = "Long Term Toilet"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"jFK" = ( +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"jFL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jGi" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/item/folder, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"jGr" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"jGz" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"jGA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Fusion Generator"; + name_tag = "Fusion Generator" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"jGD" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "lounge_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/garden_room) +"jGP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"jGQ" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jGV" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"jGW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"jGY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"jGZ" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/woodentable, +/obj/item/dice/d10, +/obj/item/dice/d4, +/obj/item/dice/d8, +/turf/simulated/floor/tiled/dark, +/area/vacant/dungeon) +"jHd" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"jHe" = ( +/obj/machinery/computer/fusion/core_control{ + dir = 4; + initial_id_tag = "aux_fusion_plant"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"jHh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/decal/graffiti_bam{ + desc = "Something scribbled on the wall. It reads: 'HoS xyecoc' " + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"jHi" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"jHq" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"jHu" = ( +/obj/machinery/ntnet_relay, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"jHB" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "cockpit_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cockpit) +"jHC" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cart{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"jHG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"jHH" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"jHS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/storage) +"jHX" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"jHY" = ( +/obj/structure/ladder, +/obj/structure/cable{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"jIa" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod5/station) +"jIl" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"jIs" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jIv" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/soap, +/obj/item/storage/box/lights/led_neon, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"jIA" = ( +/obj/structure/closet/crate, +/obj/random/firstaid, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"jIF" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"jIH" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/security/brig) +"jIQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"jIR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/navbeacon/sierra/SD_fore3, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"jJa" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jJh" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"jJm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"jJw" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"jJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"jJY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"jKa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/mining{ + name = "Port Auxiliary Storage"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/item/airlock_brace{ + req_access = list("ACCESS_QUARTERMASTER") + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"jKd" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"jKg" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/generic, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"jKh" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"jKs" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"jKE" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"jKH" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/dressheels, +/obj/item/clothing/shoes/dressheels, +/obj/item/clothing/shoes/dressheels, +/obj/item/clothing/shoes/dressheels, +/obj/item/clothing/under/dress, +/obj/item/clothing/under/dress, +/obj/item/clothing/under/dress, +/obj/item/clothing/under/dress, +/obj/item/clothing/gloves/color/evening, +/obj/item/clothing/gloves/color/evening, +/obj/item/clothing/gloves/color/evening, +/obj/item/clothing/gloves/color/evening, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"jKJ" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted{ + can_open = 1 + }, +/area/maintenance/firstdeck/foreport) +"jKL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"jKQ" = ( +/obj/structure/table/marble, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/item/book/manual/chef_recipes{ + pixel_y = -1; + pixel_x = 6 + }, +/obj/item/sticky_pad/random{ + pixel_x = -8; + pixel_y = 11 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"jKU" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"jKV" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"jLc" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"jLf" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 4 + }, +/obj/floor_decal/corner/blue/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"jLm" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"jLr" = ( +/obj/structure/bed/chair/padded/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"jLt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/fuelbay) +"jLA" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jLB" = ( +/obj/wallframe_spawn/reinforced/polarized{ + id = "rbtk_office" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/assembly/office) +"jLI" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jLK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"jLN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"jLV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"jMh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8; + autoset_access = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/center) +"jMp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Internal Affairs Agent"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"jME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"jMM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"jMS" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"jMY" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall/hull, +/area/vacant/cargo) +"jMZ" = ( +/obj/machinery/papershredder, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"jNk" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical{ + name = "Critical Wing" + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit2"; + name = "Infirmary Staging Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"jNm" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/office/post) +"jNq" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"jNv" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/tank{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "fuel1p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"jNE" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/yellow/half, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stack/material/glass/ten, +/obj/item/stack/material/aluminium/ten, +/obj/item/stack/material/plastic/ten, +/obj/item/stack/material/steel/ten, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"jNK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Kitchen Cold Storage" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/galley/freezer) +"jOa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"jOh" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"jOi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"jOq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"jOC" = ( +/obj/structure/bed/chair/pew/left, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"jOL" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"jON" = ( +/obj/machinery/light/led/small, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"jOT" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_2_hatch"; + name = "Escape Pod Two Hatch" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod2/station) +"jOU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"jOZ" = ( +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_x = 6 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"jPb" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/cafe/upper) +"jPd" = ( +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"jPe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"jPh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"jPi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/seconddeck/aft_stairwell) +"jPk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"jPr" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"jPs" = ( +/obj/structure/bed/chair/office/comfy/black{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"jPx" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/traffic/corner{ + dir = 8; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"jPB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/toy/figure/ninja{ + desc = "A \"Space Life\" brand Exploration Team action figure."; + name = "Exploration Team Hero action figure"; + pixel_x = -6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/steel, +/obj/item/storage/firstaid/light{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"jPN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jPS" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/button/alternate/door{ + pixel_y = -6; + id_tag = "bridge_hallway_doors_port"; + name = "Bridge Hallway Doors Port" + }, +/obj/machinery/button/blast_door{ + id_tag = "lobb_shutt"; + name = "Lobby shutters control"; + pixel_y = 8; + pixel_x = -4 + }, +/obj/machinery/button/blast_door{ + id_tag = "lobb_hall_shutt"; + name = "Hallway shutters control"; + pixel_y = 8; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"jPZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jQa" = ( +/obj/structure/table/steel, +/obj/item/soap, +/obj/item/soap, +/obj/item/soap, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"jQd" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/solar) +"jQk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"jQo" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/floor_decal/corner/blue/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"jQx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"jQy" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jQz" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"jQG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"jQS" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"jQU" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance/solgov, +/obj/random/maintenance/solgov, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"jQX" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"jQY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"jRa" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/machinery/computer/modular/preset/civilian/professional{ + dir = 4 + }, +/obj/item/wrench{ + name = "spanner 10"; + color = "#a2819e" + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/obj/floor_decal/industrial/traffic{ + dir = 1; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + pixel_y = -21; + dir = 1; + id_tag = "rbtk_office"; + pixel_x = 2 + }, +/obj/machinery/button/alternate/door{ + id_tag = "rbtk_door"; + pixel_y = -22; + dir = 1; + pixel_x = -8 + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"jRh" = ( +/obj/machinery/crusher_base{ + icon_state = "leftcap" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"jRt" = ( +/obj/structure/table/woodentable/maple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"jRw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/reagent, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"jRJ" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"jRK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/decal/cleanable/cobweb{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"jRN" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"jSg" = ( +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"jSh" = ( +/obj/structure/table/rack, +/obj/item/stack/material/tritium{ + amount = 50 + }, +/obj/item/stack/material/deuterium/fifty, +/obj/item/stack/material/deuterium/fifty, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"jSi" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "compactor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"jSj" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jSl" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Cryogenics" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"jSm" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"jSn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"jSB" = ( +/obj/structure/bed/chair/wood/walnut, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"jSD" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"jSE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"jSF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"jSI" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"jSM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"jSR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jSW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1port) +"jSZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"jTc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/mining{ + dir = 8; + name = "Hangar Bay"; + req_access = newlist() + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar/upper) +"jTg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"jTn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"jTo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"jTr" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"jTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"jTy" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"jTC" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"jTE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + name = "Gym" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"jTJ" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"jTL" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/port) +"jTN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"jTO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 1; + id_tag = "bsa_safe_room"; + name = "Lock"; + pixel_x = -6; + pixel_y = -21 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + dir = 4; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/freezer, +/area/command/bsa) +"jUc" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/glasses, +/obj/machinery/camera/network/expedition{ + c_tag = "Expedition - Briefing Room"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"jUf" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"jUl" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/militia, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"jUp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"jUt" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "bsa" + }, +/obj/machinery/disperser/back{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/command/bsa) +"jUv" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"jUA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"jUG" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"jUL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + id_tag = "shower1"; + name = "First Private Shower" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/head_big) +"jUZ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"jVc" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"jVe" = ( +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jVf" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"jVh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"jVl" = ( +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jVn" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/structure/bed/chair/shuttle/blue, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"jVo" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"jVp" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"jVv" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/item/device/geiger, +/obj/item/device/scanner/health, +/obj/item/device/scanner/gas, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"jVy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"jVC" = ( +/obj/structure/table/rack, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot/metal, +/obj/item/shield/riot/metal, +/obj/item/shield/riot/metal, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/recharger/wallcharger{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"jVE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 1; + name = "Security RC"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"jVH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"jVJ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"jVO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"jVP" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/pew/mahogany, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"jVS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"jVT" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/aftport) +"jVV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jVZ" = ( +/obj/floor_decal/spline/plain/black, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jWb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jWe" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/tank/air, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"jWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"jWo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"jWq" = ( +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"jWr" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"jWt" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hydroponics) +"jWw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jWA" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar/bridge_starboard) +"jWE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/hangar) +"jWL" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/aftstarboard) +"jWM" = ( +/obj/machinery/conveyor{ + id = "packageSort1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office/post) +"jWO" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/computer/modular/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"jWW" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/docking) +"jXb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad{ + pixel_y = 16; + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"jXi" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall/hull, +/area/hallway/primary/fourthdeck/center) +"jXl" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Morgue Locker"; + req_access = list("ACCESS_MEDICAL") + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"jXo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"jXs" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"jXA" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Isolation Cell Two"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"jXC" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"jXE" = ( +/obj/floor_decal/corner/blue/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"jXF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar/upper) +"jXK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"jXN" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"jYc" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"jYh" = ( +/obj/structure/table/woodentable_reinforced, +/obj/structure/flora/pottedplant/stoutbush{ + pixel_y = 10 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"jYi" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"jYm" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"jYs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_access_hatch"; + locked = 1; + req_access = newlist() + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "SupermatterDoor"; + name = "Supermatter Access Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"jYu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"jYx" = ( +/obj/structure/sign/warning/engineering_access{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"jYB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"jYC" = ( +/obj/shuttle_landmark/sierra/deck4/exploration_shuttle, +/turf/space, +/area/space) +"jYJ" = ( +/obj/machinery/light/spot, +/obj/floor_decal/corner/red/mono, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/computer/station_alert/security{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"jYP" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"jYQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"jYU" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/obj/shuttle_landmark/escape_pod/start/pod5, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod5/station) +"jYV" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medical Smoke Room" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"jZa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"jZk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"jZl" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"jZq" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"jZr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge) +"jZI" = ( +/obj/structure/sign/warning/radioactive{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"jZO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"jZR" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"jZW" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Auxiliary Access"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_maint) +"jZY" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"jZZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"kad" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"kae" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "eva_shutters"; + name = "EVA Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"kaf" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"kap" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"kaz" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"kaB" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"kaG" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"kaH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"kaL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"kaP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/meter, +/obj/wallframe_spawn/reinforced_phoron/hull, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"kaS" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"kaU" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kaX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"kbd" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id_tag = "xenobio3_vent"; + name = "Chamber Vent" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"kbe" = ( +/obj/structure/bed/chair/rounded/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"kbm" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"kbn" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"kbq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kbt" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"kby" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"kbB" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod9/station) +"kbM" = ( +/obj/structure/disposalpipe/down{ + dir = 2 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/firstdeck/aftport) +"kbR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/apc/high/critical{ + dir = 8; + name = "south bump"; + pixel_x = -25 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"kbW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + dir = 4; + id_tag = "eng2_inner"; + name = "Third Deck Port Nacelle Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d3port) +"kcf" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "o24p_in"; + name = "Oxygen Supply Control"; + output_tag = "o24p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngOxygen4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"kch" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/commissary) +"kcj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kcn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"kcp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"kcx" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/clothing/head/festive, +/obj/item/clothing/head/festive, +/obj/item/clothing/head/festive, +/obj/item/clothing/head/festive, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"kcA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"kcF" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"kcK" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftport) +"kcR" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/boombox{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/small/lager{ + pixel_y = -3; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"kcS" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"kda" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"kdd" = ( +/turf/simulated/wall/prepainted, +/area/storage/eva) +"kdg" = ( +/obj/machinery/atmospherics/valve/open, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"kdh" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/book/manual/psionics, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"kdk" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"kdm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/aft) +"kdq" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"kdr" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/papershredder, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"kdv" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/forestarboard) +"kdy" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"kdA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/development) +"kdF" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/field_generator, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"kdO" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"kdQ" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kdR" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kdS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"keb" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"kei" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/breakroom) +"kej" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"kek" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Unused Chamber"; + autoset_access = 0; + req_access = list("ACCESS_SEC_DOORS") + }, +/obj/structure/barricade, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"kem" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access = newlist() + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/starboard) +"kes" = ( +/obj/machinery/floodlight{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/airlock) +"ket" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"keA" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/structure/closet/medical_wall/filled{ + pixel_x = 32 + }, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/medical, +/obj/random/drinkbottle, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/obj/item/bodybag/rescue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"keJ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"keN" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/office) +"keP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"keQ" = ( +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine thruster blast doors."; + dir = 1; + id_tag = "ThrusterVents"; + name = "Thruster Blast Door control"; + pixel_y = -21; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_north = 1; + tag_west = 6 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/grey, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"keS" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"keU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kfc" = ( +/obj/machinery/vending/dinnerware{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"kfm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"kfs" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_r) +"kfu" = ( +/obj/random/obstruction, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"kfA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/prototype/control) +"kfH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"kfS" = ( +/obj/item/storage/firstaid/brute, +/turf/space, +/area/space) +"kfW" = ( +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"kga" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/high/critical{ + dir = 4; + pixel_x = 24; + name = "east bump" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"kgb" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5; + pixel_y = 16 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"kgc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"kgj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/displaycase{ + req_access = list("ACCESS_CAPTAIN") + }, +/obj/item/gun/projectile/revolver/medium/captain, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"kgk" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"kgs" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"kgu" = ( +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"kgy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"kgB" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"kgE" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled, +/area/maintenance/firstdeck/aftstarboard) +"kgG" = ( +/obj/machinery/light/spot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"kgI" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagent_temperature, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/floor_decal/corner/beige{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"kgN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1starboard) +"kgX" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"kha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/civilian{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/holocontrol) +"khc" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 8; + name = "External connector to thrusters" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"khd" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"khm" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 8 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Bar - Chief Steward"; + dir = 8 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"khu" = ( +/obj/machinery/button/crematorium{ + pixel_x = 24; + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"khA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"khC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/computer/air_control{ + name = "Nacelle Chamber Monitoring"; + sensor_name = "Chamber"; + sensor_tag = "ReacEng4" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"khG" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"khO" = ( +/turf/simulated/wall/prepainted, +/area/turret_protected/ai_cyborg_station) +"khP" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_maint) +"khQ" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"kib" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/decal/cleanable/vomit, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"kid" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/maintenance/cistern) +"kim" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"kin" = ( +/obj/floor_decal/corner/green/three_quarters, +/obj/machinery/vending/hydronutrients{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"kiw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenolow_airlock"; + name = "Xenobiology Access Console"; + req_access = list("ACCESS_XENOBIO"); + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"kiD" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"kiH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"kiK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"kiS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"kiU" = ( +/mob/living/simple_animal/hostile/scarybat, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"kiZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kjc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"kjg" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"kjo" = ( +/obj/structure/closet/secure_closet/iaa, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/obj/item/folder/envelope/blanks, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"kjp" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kjw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Miscellaneous Laboratory"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"kjC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 1; + id_tag = "petrov_shuttle_dock_pump" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"kjL" = ( +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"kjX" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/space) +"kka" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/bridgedeck/port) +"kkg" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"kkq" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/seconddeck/center) +"kkr" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/space) +"kks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"kkx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/book/manual/nt_sop, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"kkC" = ( +/obj/structure/lattice, +/turf/simulated/wall/r_wall/hull, +/area/bridge) +"kkG" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"kkI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"kkJ" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_1" + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/forestarboard) +"kkL" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + id_tag = "vir_isol" + }, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"kkN" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"kkO" = ( +/obj/decal/cleanable/blood, +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/foreport) +"klp" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/cabinet, +/obj/random/drinkbottle, +/obj/random/mre/dessert, +/obj/random/single/lighter, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"klq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"klu" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"kly" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"klB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"klJ" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/turbolift/medical_lift) +"klK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"klM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"klO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"klQ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"klZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"kmc" = ( +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"kmn" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/aft_stairwell) +"kmy" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"kmE" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"kmH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"kmI" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"kmK" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"kmO" = ( +/obj/floor_decal/industrial/hatch/red, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"kmV" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"kmZ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"knb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"knd" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"kno" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"knr" = ( +/obj/structure/bookcase/manuals/medical, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"knv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"knz" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"knC" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/camera{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/item/device/camera_film{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"knD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"knI" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"knP" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"knQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/vacant/cargo) +"knS" = ( +/obj/machinery/door/airlock/command{ + name = "Internal Affairs Agent"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa) +"knX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"koe" = ( +/obj/machinery/shieldgen, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"kog" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "prototype_access_hatch"; + locked = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"koh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"kok" = ( +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"koo" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"kot" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"kov" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"koy" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"koE" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"koH" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"koI" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"koW" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"koZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Visitors"; + id_tag = "hangar_hallway_doors"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"kpb" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/green/border, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"kph" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/recharger, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"kpk" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/toolcloset/excavation, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"kpt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kpz" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"kpM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"kpO" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"kpP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"kpR" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"kpV" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"kqh" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"kqn" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Test Chamber" + }, +/obj/machinery/door/window/southright{ + name = "Test Chamber" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"kqq" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"kqt" = ( +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 6 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/lava/cyan{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"kqy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"kqA" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/sign/xenoflora{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"kqE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"kqQ" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"kqT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"kqY" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + target_pressure = 15000; + regulate_mode = 1; + unlocked = 1 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos) +"kre" = ( +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"krm" = ( +/obj/floor_decal/corner/black{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"krn" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"kro" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"krs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"kru" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/shipping_wall/filled{ + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"krA" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"krI" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"krK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"krL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/vendor/contraband/maintenance{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"krN" = ( +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"krT" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "sd_port_outer"; + name = "Second Deck Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "sd_port"; + name = "exterior access button"; + pixel_x = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"krZ" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"ksk" = ( +/obj/machinery/camera/network/second_deck{ + c_tag = "Chapel - Entry"; + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"kso" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"ksp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/starboard) +"ksr" = ( +/obj/machinery/vending/tool/adherent{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"ksu" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"ksv" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "pathfinder_office" + }, +/turf/simulated/floor/plating, +/area/command/exploration_leader) +"ksw" = ( +/obj/machinery/door/airlock/research{ + name = "Storage and Power" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/ship) +"ksC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical/mortus{ + name = "Morgue"; + req_access = newlist() + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "med_morg"; + name = "Infirmary Emergency Quarantine Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"ksE" = ( +/obj/machinery/vending/snack, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"ksI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"ksM" = ( +/obj/machinery/computer/ship/helm{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"kte" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/sign/deck/second{ + dir = 4; + pixel_x = -32; + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft_stairwell) +"ktg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"ktq" = ( +/obj/floor_decal/techfloor, +/obj/structure/closet/crate/plastic, +/obj/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ktr" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"ktt" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"ktu" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"kty" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/navbeacon/sierra/FD_afthallway2, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"ktE" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"ktQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/navbeacon/sierra/TD_fore2, +/obj/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"ktT" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"kut" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"kuu" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"kuy" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/structure/sign/warning/pods/south{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"kuI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kuJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"kuK" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge Access"; + id_tag = "bridge_hallway_doors_port" + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"kuQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "petrov_shuttle_dock_inner"; + name = "Docking Port Airlock"; + autoset_access = 0; + req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")) + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"kuV" = ( +/obj/floor_decal/corner/brown/mono, +/obj/machinery/computer/modular/preset/supply_public{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"kuY" = ( +/obj/machinery/atmospherics/tvalve/digital{ + dir = 1; + id_tag = "fuelmode" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"kvc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"kvk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_port, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"kvm" = ( +/obj/structure/closet/crate/plastic, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"kvu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"kvv" = ( +/obj/machinery/computer/ship/sensors, +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"kvz" = ( +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/jukebox/custom_tape/old, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"kvF" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/green/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/button/blast_door{ + dir = 1; + pixel_y = -24; + id_tag = "vir_isol"; + name = "Virology isolator" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"kvH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"kvL" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - North"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kvN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/docking) +"kvW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"kwa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"kwc" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Exploration Leader" + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"kwf" = ( +/obj/structure/table/steel, +/obj/item/board, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"kwm" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"kwt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"kwG" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"kwI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/atmos) +"kwZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"kxg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"kxh" = ( +/obj/structure/table/steel, +/obj/item/storage/box/bodybags, +/obj/machinery/light, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"kxi" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"kxv" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"kxy" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"kxB" = ( +/obj/machinery/computer/modular/preset/civilian/professional, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"kxC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/woodentable_reinforced/mahogany, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/material/ashtray/bronze{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/paper/sierra, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"kxG" = ( +/obj/structure/filingcabinet/wallcabinet{ + pixel_x = 28 + }, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"kxH" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 10 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"kxI" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"kxQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"kxZ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"kya" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"kyc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"kye" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"kyf" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"kyg" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"kyh" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"kyj" = ( +/obj/structure/sign/directions/bridge{ + pixel_y = -13; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/aft_stairwell) +"kyp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + autoset_access = 0; + name = "Comissary" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"kyt" = ( +/obj/structure/bed/chair/office/comfy/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/landmark/start{ + name = "Research Director" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"kyw" = ( +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"kyx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kyz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"kyB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/mob/living/bot/cleanbot{ + name = "Crewman"; + will_patrol = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"kyC" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"kyH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/device/multitool/multimeter, +/obj/item/device/multitool/multimeter, +/obj/item/device/multitool/multimeter, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"kyI" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"kyL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"kyT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"kzg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"kzm" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"kzn" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"kzo" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/bridgedeck/port) +"kzx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"kzF" = ( +/obj/shuttle_landmark/sierra/deck3/exploration_shuttle, +/turf/space, +/area/space) +"kzH" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/medical_wall/filled{ + pixel_y = 24 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"kzJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"kzL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"kzO" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"kzR" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"kzS" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/command/bsa) +"kzX" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"kzZ" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"kAa" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/donkpocket_mixed{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"kAg" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"kAi" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"kAo" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/hand_labeler{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"kAq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kAy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"kAE" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"kAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"kAK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"kAL" = ( +/obj/floor_decal/corner/purple/half{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"kAQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"kAZ" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/window/brigdoor/northright{ + autoset_access = 0; + dir = 4; + name = "Test Chamber"; + req_access = list("ACCESS_TOXINS") + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"kBc" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/bar) +"kBe" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/white{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"kBk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"kBm" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"kBr" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Shield Subgrid"; + name_tag = "Shield Subgrid" + }, +/obj/structure/cable/cyan, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Shield Generator"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"kBs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"kBt" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/sign/emergonly{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/bed/chair/padded/teal{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"kBu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"kBw" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"kBD" = ( +/obj/structure/sign/warning/fire{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"kBS" = ( +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/quartermaster/hangar_stairs) +"kBW" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "armory_lethal" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/armory) +"kBZ" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Bridge Starboard" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"kCh" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"kCj" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"kCm" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/hangar_atmos) +"kCy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"kCz" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/rdserver, +/obj/item/stock_parts/circuitboard/protolathe, +/obj/item/stock_parts/circuitboard/destructive_analyzer, +/obj/item/stock_parts/circuitboard/rdconsole, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"kCD" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + id_tag = "vir_blast_window" + }, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"kCE" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"kCI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"kCN" = ( +/obj/structure/bed/sofa/r/black{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"kCS" = ( +/obj/machinery/navbeacon/sierra/SD_fore6, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kCT" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sauna) +"kCZ" = ( +/obj/structure/bed/chair/padded/green, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"kDb" = ( +/obj/structure/table/woodentable, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/circuitboard/autolathe, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"kDh" = ( +/obj/structure/filingcabinet, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/floor_decal/industrial/outline/blue, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"kDj" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"kDn" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"kDz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"kDC" = ( +/obj/structure/sign/warning/vent_port{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"kDM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"kDO" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 12 + }, +/obj/item/storage/box/cups{ + pixel_y = 4; + pixel_x = -11 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"kDQ" = ( +/obj/machinery/media/music_writer{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"kDS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/sparker{ + id_tag = "engines-4"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"kEe" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"kEk" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"kEx" = ( +/obj/floor_decal/corner/purple/three_quarters, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"kEB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/fore) +"kEC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"kEE" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"kEJ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kFn" = ( +/obj/structure/bed/chair/padded/green{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/holocontrol) +"kFs" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/item/storage/box/mousetraps, +/obj/machinery/camera/network/second_deck{ + c_tag = "Janitor"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"kFB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"kFC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"kFE" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"kFJ" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"kFL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"kFQ" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/obj/engine_setup/pump_max, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kFT" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/airlock) +"kFV" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/item/tank/oxygen, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"kFW" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"kGk" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"kGl" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kGw" = ( +/obj/machinery/optable, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"kGy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "xenobio4_vent"; + name = "Chamber Vent" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"kGC" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/power/rad_collector, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kGD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"kGG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"kGH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"kGL" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"kGM" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/material/plastic/fifty, +/obj/item/stack/material/plastic/fifty, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"kGN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"kGT" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"kGU" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/item/roller_bed{ + pixel_y = 16 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"kHd" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"kHe" = ( +/obj/floor_decal/industrial/warning/half, +/obj/machinery/computer/air_control{ + input_tag = "toxin_in"; + name = "Test Chamber Gas Monitor"; + output_tag = "toxin_out"; + sensor_name = "Toxin Chamber"; + sensor_tag = "toxinchamber_sensor" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"kHk" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 8; + linkedholodeck_area = /area/holodeck/alphadeck; + programs_list_id = "SierraMainPrograms" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"kHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"kHr" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"kHz" = ( +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kHF" = ( +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"kHK" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"kHQ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"kHT" = ( +/obj/machinery/door/airlock/science{ + name = "Exploration Leader"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/command/exploration_leader) +"kHX" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"kHY" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/vacant/sauna) +"kHZ" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_south = 5; + tag_west = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"kIk" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/waterstore) +"kIl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"kIm" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kIn" = ( +/obj/machinery/shield_diffuser, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kIp" = ( +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/visitors) +"kIq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/incinerator) +"kIx" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Bridge Air Storage to Bridge Supply" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"kIy" = ( +/obj/machinery/suit_storage_unit/engineering/alt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"kIz" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"kIR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"kIT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"kJa" = ( +/turf/simulated/wall/prepainted, +/area/engineering/engineering_monitoring) +"kJg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Cistern"; + req_access = newlist() + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"kJw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"kJA" = ( +/obj/floor_decal/industrial/traffic{ + dir = 10; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"kJC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"kJI" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"kJJ" = ( +/obj/structure/table/steel, +/obj/item/storage/belt/utility/full, +/obj/item/flame/lighter/zippo, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"kJO" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"kJP" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/borgupload, +/obj/item/stock_parts/circuitboard/aiupload, +/obj/machinery/camera/network/engineering{ + c_tag = "Tech Storage - Secure" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"kJV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm/monitor/isolation/xenobio{ + alarm_id = "xenobio1_alarm"; + dir = 8; + name = "Xenobiology First Xenopen"; + pixel_x = 23 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"kJW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange, +/obj/machinery/conveyor{ + dir = 4; + id = "compactor" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"kJX" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "td_port" + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"kJY" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/structure/bed/chair/pew, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"kKl" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"kKs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"kKt" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"kKv" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/structure/sign/directions/medical{ + pixel_y = -21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"kKz" = ( +/obj/structure/cryofeed, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"kKC" = ( +/obj/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"kKF" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"kKI" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"kKL" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + injecting = 1; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d3port) +"kKP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"kKR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/aftport) +"kKT" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"kKU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/silver{ + autoset_access = 0; + name = "Resource Storage"; + req_access = list("ACCESS_CENT_GENERAL"); + secured_wires = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"kLd" = ( +/obj/structure/bed/chair/comfy/purple{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"kLe" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"kLl" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/obj/item/storage/photo_album{ + pixel_y = -1 + }, +/obj/item/device/camera{ + pixel_y = 9 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"kLn" = ( +/obj/machinery/jukebox/custom_tape/old, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"kLp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"kLx" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"kLB" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/firstaid, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/storage/tech) +"kLD" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Aft Stairwell"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"kLF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"kLM" = ( +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"kLQ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle/green, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"kLS" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 3500 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"kLV" = ( +/obj/machinery/suit_storage_unit/explorer, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"kLY" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"kMb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"kMd" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"kMf" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/random/cash, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/cockpit) +"kMn" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Control"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"kMu" = ( +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/item/device/camera, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"kMA" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "armory" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/armory/lobby) +"kMJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"kMK" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"kMO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/grey/bordercorner, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"kMP" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/outline/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kMT" = ( +/obj/machinery/power/solar_control{ + id = "auxsolarstarboard"; + name = "Starboard Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"kMW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"kMY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"kNi" = ( +/obj/structure/disposalpipe/tagger/partial{ + dir = 8; + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining{ + name = "Delivery Office"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office/post) +"kNr" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"kNv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"kNw" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + id_tag = "ai_core_sensor"; + pixel_x = 24 + }, +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"kNJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"kNL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kNR" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "lounge_windows" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/garden_room) +"kNS" = ( +/obj/machinery/computer/ship/sensors{ + dir = 1 + }, +/obj/machinery/power/apc/hyper{ + dir = 8; + name = "east bump"; + pixel_x = -24; + req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_GUPPY")) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/button/blast_door{ + active = "guppy_shield_left"; + dir = 1; + id_tag = "guppy_shield_left"; + name = "Left Window Shield Control"; + pixel_x = -6; + pixel_y = -20; + req_access = list("ACCESS_GUPPY") + }, +/obj/machinery/button/blast_door{ + airflow_od = -6; + dir = 1; + id_tag = "guppy_shield"; + name = "Window Shield Control"; + pixel_x = 6; + pixel_y = -20; + req_access = list("ACCESS_GUPPY") + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "guppy_hatch"; + name = "Rear Hatch Control"; + pixel_y = -32; + req_access = list("ACCESS_GUPPY") + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"kNU" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"kNV" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"kNX" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"kOi" = ( +/obj/floor_decal/industrial/traffic{ + dir = 5; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"kOo" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"kOt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"kOu" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"kOy" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"kOz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"kOA" = ( +/obj/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"kOF" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/item/stool/padded, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"kOJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Dock Bay - Commissary"; + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"kPc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"kPk" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/hull, +/area/security/sierra/prison) +"kPn" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"kPq" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"kPx" = ( +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"kPB" = ( +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"kPK" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/red/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kPL" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 1 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"kPV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"kPX" = ( +/obj/floor_decal/corner/paleblue, +/obj/decal/cleanable/dirt, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"kQa" = ( +/obj/machinery/door/airlock/glass/command{ + name = "Flight Control Tower" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"kQd" = ( +/obj/structure/rubble, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/decal/cleanable/filth, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"kQg" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"kQl" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"kQq" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"kQx" = ( +/obj/structure/closet/secure_closet/security/sierra/cadet, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"kQA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"kQE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A."; + req_access = newlist(); + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"kQF" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"kQH" = ( +/obj/structure/curtain/bed, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"kQK" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"kQN" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/modular/preset/civilian, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"kQP" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/foreport) +"kQU" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"kQW" = ( +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"kQX" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + pixel_y = 22; + id = "briefing_windows"; + range = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"kRb" = ( +/obj/structure/table/steel, +/obj/random/snack, +/obj/item/reagent_containers/food/drinks/teapot{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; + name = "metal tea cup"; + pixel_x = 10; + pixel_y = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"kRl" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"kRm" = ( +/obj/floor_decal/borderfloor, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"kRJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/woodentable_reinforced/mahogany, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/device/flashlight/lamp/lava/purple{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/paper/sierra, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"kRK" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"kRL" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"kRS" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/table/steel, +/obj/item/folder/yellow, +/obj/item/paper/sierra/bsd, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"kRW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "sec_equip_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/equipment) +"kSk" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/camera/network/command{ + c_tag = "Command - Conference Room"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"kSr" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/random/maintenance, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist() + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/single/cola, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"kSs" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + id_tag = "security_permabrig_lobby_shutters" + }, +/obj/paint_stripe/red, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"kSu" = ( +/obj/structure/bed/chair/pew/left, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"kSw" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/drinkbottle, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/single/playing_cards, +/obj/machinery/button/blast_door{ + id_tag = "comissary_shutters"; + name = "Counter Shutters"; + pixel_y = 24; + req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY")) + }, +/obj/machinery/requests_console{ + department = "Commissary"; + departmentType = 6; + name = "Commissary Requests Console"; + pixel_x = -32; + req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY")) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"kSG" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"kSS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"kSW" = ( +/obj/structure/railing/mapped, +/obj/structure/closet/crate/trashcart, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"kTb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"kTd" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"kTe" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"kTh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/firstdeck/center) +"kTi" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/random/maintenance, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/compactor) +"kTn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"kTu" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"kTD" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/fourthdeck/center) +"kTG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"kTQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"kTS" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"kTV" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"kTW" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"kUj" = ( +/obj/structure/table/marble, +/obj/item/material/kitchen/rollingpin, +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"kUs" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 8; + initial_id_tag = "aux_fusion_plant" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced, +/area/vacant/prototype/engine) +"kUy" = ( +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech/high_risk) +"kUD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"kUF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"kUV" = ( +/obj/floor_decal/chapel, +/obj/structure/bed/chair/pew/left/mahogany, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"kUW" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"kVd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/servers) +"kVf" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"kVg" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/bed/chair/armchair/purple{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"kVi" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"kVD" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"kVG" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"kVJ" = ( +/obj/engine_setup/smes, +/obj/machinery/power/smes/buildable/preset/sierra/engine_main{ + RCon_tag = "Engine - Main" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"kVY" = ( +/obj/machinery/door/airlock/research{ + name = "Suit Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/eva) +"kVZ" = ( +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"kWb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"kWd" = ( +/obj/machinery/suit_storage_unit/medical, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"kWm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"kWo" = ( +/obj/machinery/flasher{ + id_tag = "security_first_cell_flash"; + name = "Floor mounted flash" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"kWq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"kWA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"kWB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"kWC" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"kWG" = ( +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"kWI" = ( +/obj/machinery/power/shield_generator, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"kWT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"kXa" = ( +/obj/item/target, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"kXd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/button/blast_door{ + id_tag = "firingspace"; + name = "Firing Range Shields"; + req_access = list("ACCESS_SEC_DOORS"); + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"kXu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"kXz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"kXA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/engineering{ + name = "Equipment" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/locker_room) +"kXI" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"kXK" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"kXN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/gravitaional_generator) +"kXO" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"kXS" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"kXW" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"kYd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"kYf" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/galley/backroom) +"kYg" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"kYh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"kYo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"kYs" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/floor_decal/corner/lime/mono, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"kYu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"kYw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Second Deck Subgrid"; + name_tag = "Second Deck Subgrid" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"kYz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"kYE" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"kYH" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"kYN" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/camera/network/hangar, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"kYW" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"kZg" = ( +/obj/structure/bed/sofa/m/black{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"kZn" = ( +/obj/machinery/air_sensor{ + id_tag = "o2_sensor" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/atmos) +"kZq" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + name = "Engineering RC"; + pixel_x = 32 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Lobby"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"kZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"kZw" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "solar_starboard_pump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"kZC" = ( +/obj/machinery/atmospherics/valve/digital{ + name = "Emergency Cooling Bypass valve"; + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/red, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"kZG" = ( +/obj/structure/bed/chair/office/comfy/teal, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"kZI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"kZK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"lac" = ( +/obj/paint_stripe/yellow, +/obj/paint/dark_gunmetal, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"lad" = ( +/obj/structure/table/standard, +/obj/item/clothing/mask/gas/aquabreather, +/obj/item/clothing/mask/gas/aquabreather, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level2) +"lau" = ( +/obj/structure/bed/chair/padded/blue, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"laz" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"laG" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"laP" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_8_berth_hatch"; + name = "Escape Pod Eeigh" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"laV" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"lbg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"lby" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"lbF" = ( +/obj/floor_decal/techfloor, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/cell/high{ + pixel_x = 1 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/cell/high{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"lbK" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobioaqua"; + name = "Containment Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/water_cell) +"lbL" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/red{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/structure/sign/poster/nyc/know_the_enemy{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"lbY" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"lbZ" = ( +/obj/machinery/power/apc/hyper{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/radiation, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"lci" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/firstdeck) +"lcn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft_stairwell) +"lcv" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"lcB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"lcF" = ( +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 32; + icon_state = "32-1" + }, +/turf/simulated/open, +/area/maintenance/thirddeck/aftport) +"lda" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"ldg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d1portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"ldn" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"lds" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ldz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ldC" = ( +/obj/structure/table/steel, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"ldI" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"ldP" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "hangar_atmos_storage"; + name = "Storage Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"ldQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"ldT" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"ldV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"ldY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/padded/red{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"lea" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"leb" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Exterior Vent" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/gas) +"lek" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"lel" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"lem" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200; + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"leq" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id_tag = "med_pat_ward"; + name = "Infirmary Window Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/wardhallway) +"lex" = ( +/obj/machinery/libraryscanner, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"lez" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_morg"; + name = "Mogrue Exit Lockdown"; + pixel_x = 20; + pixel_y = 10; + req_access = list("ACCESS_MEDICAL"); + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_crit2"; + name = "Critical Wing 2 Lockdown"; + pixel_x = 28; + pixel_y = 10; + req_access = list("ACCESS_MEDICAL"); + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_crit1"; + name = "Critical Wing 1 Lockdown"; + pixel_x = 36; + req_access = list("ACCESS_MEDICAL"); + pixel_y = 10; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_quar_lock"; + name = "QUARANTINE FULL LOCKDOWN"; + dir = 8; + pixel_x = 43; + color = "#ff5500"; + req_access = list("ACCESS_MEDICAL") + }, +/obj/machinery/button/blast_door{ + id_tag = "med_to_maint"; + name = "Infirmary to Maintenance Lockdown"; + req_access = list("ACCESS_MEDICAL"); + dir = 8; + pixel_x = 20 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_pat_ward"; + name = "Infirmary Patient Ward Lockdown"; + pixel_y = -10; + req_access = list("ACCESS_MEDICAL"); + pixel_x = 20; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_main_reg"; + name = "Infirmary Main Entrance Lockdown"; + pixel_y = -10; + req_access = list("ACCESS_MEDICAL"); + pixel_x = 28; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_pub_hall"; + name = "Infirmary Public Hallway Lockdown"; + pixel_x = 36; + req_access = list("ACCESS_MEDICAL"); + pixel_y = -10; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"leB" = ( +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/material/kitchen/utensil/fork/plastic{ + pixel_x = 10; + name = "prisoners fork" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"leD" = ( +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/computer/arcade/orion_trail, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"leE" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"leG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/firstdeck/aft) +"leL" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/storage/mirror{ + pixel_x = 24; + pixel_y = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"leM" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"leO" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_8_hatch"; + name = "Escape Pod Eight Hatch" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod8/station) +"leU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"leW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"lfg" = ( +/obj/machinery/nuclearbomb/station{ + name = "ship self-destruct terminal" + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"lfh" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor, +/obj/item/material/bell, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar<-cafe"; + name = "Bar Shutters" + }, +/obj/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar) +"lfm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"lfs" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"lfB" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/half, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"lfD" = ( +/obj/shuttle_landmark/specops/out, +/turf/space, +/area/space) +"lfF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"lfG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_1{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"lfH" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lfN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"lfO" = ( +/obj/structure/table/steel, +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8 + }, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/engineering_guide, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"lfP" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"lfV" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 4; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"lfW" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"lgm" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance, +/obj/random/medical, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"lgo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"lgy" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"lgz" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "toxin_lab_access"; + name = "Toxin Lab Access Console"; + pixel_y = -20; + req_access = list("ACCESS_TOX_STORAGE") + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"lgB" = ( +/obj/structure/fuel_port{ + pixel_y = 32 + }, +/obj/structure/girder/displaced, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"lgE" = ( +/obj/structure/window/reinforced, +/obj/structure/table/standard, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"lgH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"lgN" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"lgS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"lgW" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1443; + id = "air_in"; + use_power = 1 + }, +/obj/machinery/sparker{ + id_tag = "Incinerator"; + pixel_y = -20 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/incinerator) +"lgZ" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"lhc" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"lhg" = ( +/obj/floor_decal/corner/green/bordercee, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lhv" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/assembly/chargebay) +"lhF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"lhU" = ( +/obj/decal/cleanable/greenglow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/crucian_hangar/start) +"lhY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"lif" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"lih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"lim" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"lis" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"liy" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 30 + }, +/obj/item/stack/material/steel{ + amount = 30 + }, +/obj/item/stack/material/steel/fifty, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"liA" = ( +/obj/structure/hygiene/sink/kitchen{ + dir = 4; + pixel_x = -20 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"liJ" = ( +/turf/simulated/wall/r_wall/hull, +/area/chapel/main) +"liK" = ( +/obj/floor_decal/corner/yellow/three_quarters, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/machinery/button/blast_door{ + id_tag = "qm_office"; + name = "QM Shutter Control"; + pixel_x = 2; + pixel_y = -24; + req_access = list("ACCESS_CARGO"); + dir = 1 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 1; + id_tag = "qmdoor-supply"; + name = "supply door control"; + pixel_x = -9; + req_access = list("ACCESS_QUARTERMASTER"); + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"liM" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"liR" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"liW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"liY" = ( +/obj/structure/table/glass, +/obj/machinery/keycard_auth/sierra, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ljf" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_8_berth"; + name = "escape pod eight berth controller"; + pixel_x = -32; + pixel_y = 21; + tag_door = "escape_pod_8_berth_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"ljg" = ( +/obj/machinery/cryopod/robot{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"ljm" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/structure/bed/sofa/m/brown{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ljn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"ljA" = ( +/obj/structure/bed/sofa/l/teal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"ljC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"ljL" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"ljR" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"ljT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/compactor) +"ljV" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"lkg" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"lkl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"lko" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/foreport) +"lkt" = ( +/obj/floor_decal/corner/green/half, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"lkA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "nuke_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -32; + pixel_y = -24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"lkB" = ( +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"lkC" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"lkG" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"lkM" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + initial_id_tag = "aux_fusion_plant"; + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/vacant/prototype/engine) +"lkP" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/scan) +"lkQ" = ( +/obj/paint_stripe/red, +/obj/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod3/station) +"lla" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/security/brig) +"llb" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder/juicer, +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"lld" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"llm" = ( +/obj/machinery/button/alternate/door/bolts{ + dir = 8; + id_tag = "cafe_private_room"; + name = "Unlock"; + pixel_x = 24; + pixel_y = 7; + req_access = list("ACCESS_BAR") + }, +/obj/structure/bed/chair/rounded/brown{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 6 + }, +/obj/floor_decal/carpet/blue{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/cafe/upper) +"lln" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"llq" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"llr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/high_voltage{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lls" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"llw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"llx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"llM" = ( +/obj/floor_decal/techfloor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"llO" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"llP" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"llT" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"llX" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"lmb" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/laser, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"lmg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"lmj" = ( +/obj/machinery/stasis_cage, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"lmE" = ( +/obj/machinery/status_light{ + alert_temperature = 340; + id_tag = "BSDrive"; + name = "Bluespace Drive status indicator"; + pixel_x = 24 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"lmM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"lmQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 1 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"lmT" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"lnc" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"lnd" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/airless, +/area/shuttle/escape_pod/escape_pod3/station) +"lnj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"lnp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"lnu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lny" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"lnC" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"lnE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"lnL" = ( +/obj/floor_decal/corner/purple/full, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/rd/cobed) +"lnN" = ( +/obj/machinery/door/airlock/vault/bolted{ + name = "AI Core Backup Access" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "AICore"; + name = "AI Core Security Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai) +"lnO" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"lnR" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"lob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"lod" = ( +/obj/structure/bed/sofa/r/black{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"loi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"lok" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"lou" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"loz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"loC" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"loO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/tcommsat/computer) +"loY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/window{ + autoset_access = 0; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"lpg" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"lpk" = ( +/turf/simulated/floor/reinforced, +/area/maintenance/incinerator) +"lpB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"lpG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 15000 + }, +/obj/machinery/button/ignition{ + dir = 1; + id_tag = "engines-3"; + pixel_y = -34 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "cChamber3pV"; + name = "First Deck Starboard Chamber Vent"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "d3portnacelle"; + name = "Combustion Chamber Blast Door Control"; + pixel_x = -8; + pixel_y = -24 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"lpI" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"lpQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"lpT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"lpY" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"lpZ" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/closet/secure_closet/explorer/medic, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"lqa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"lqj" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 29 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"lqu" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Cryogenics"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/thirddeck) +"lqA" = ( +/obj/fluid_mapped, +/turf/simulated/floor/reinforced, +/area/maintenance/waterstore) +"lqB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"lqC" = ( +/obj/structure/bed, +/obj/item/clothing/mask/muzzle, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"lqE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/airlock/civilian{ + name = "Visitors"; + id_tag = "hangar_hallway_doors"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"lqH" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lqI" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/heads/office/iaa) +"lqX" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"lra" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"lrf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"lrl" = ( +/obj/machinery/light/spot, +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"lrn" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"lru" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/structure/shotgun_rack{ + pixel_y = 29 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"lrw" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "fd_starboard_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"lrC" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -9; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"lrH" = ( +/obj/floor_decal/corner/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sauna) +"lrL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"lrR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"lrU" = ( +/obj/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "firing_range_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "firing_range"; + pixel_x = 20; + pixel_y = 4; + req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL")) + }, +/obj/machinery/airlock_sensor{ + id_tag = "firing_range_sensor"; + master_tag = "firing_range"; + pixel_x = 24; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"lrV" = ( +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"lrY" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/lift/rndmaint, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"lsb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/cmo/cobed) +"lsd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"lsj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenohight_airlock"; + name = "Xenobiology Access Console"; + pixel_y = 22; + req_access = list("ACCESS_XENOBIO") + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry) +"lsk" = ( +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"lsC" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"lsE" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/critical{ + name = "north bump"; + pixel_y = 21; + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"lsL" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/tele_pad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_teleport) +"lsM" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"lsV" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"ltl" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"ltp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"ltr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/prototype/engine) +"lts" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"ltu" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"lty" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/random/closet, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"ltH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ltN" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/camera/network/bridge_deck{ + dir = 1; + c_tag = "Bridge Deck - Aft Hallway - Turbolift" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"ltO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"ltP" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"ltU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"lub" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"luc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"lui" = ( +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1"; + init_color = "#aa5f61"; + color = "#aa5f61" + }, +/turf/simulated/open, +/area/hallway/primary/firstdeck/central_stairwell) +"lun" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"luo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"lur" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"luJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/snow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"luL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"luO" = ( +/obj/structure/bed/chair/wood/maple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"luT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"luU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"luY" = ( +/obj/machinery/power/apc/charon{ + name = "south bump"; + pixel_y = -24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/structure/cable/cyan, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 6 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"lva" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/airlock) +"lvf" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/tele_beacon, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"lvi" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"lvm" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"lvn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/space, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/fishbowl, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_teleport) +"lvs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"lvu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/structure/closet/secure_closet/infotech_sierra, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"lvv" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 1 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"lvy" = ( +/obj/structure/bed/chair/rounded/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"lvz" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"lvB" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"lvD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"lvI" = ( +/obj/structure/bed/sofa/r/beige, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"lvN" = ( +/obj/structure/table/standard, +/obj/item/auto_cpr, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"lwd" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 31 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"lwg" = ( +/obj/machinery/button/blast_door{ + id_tag = "eng_lockdown_emg1"; + name = "Main Enterence Control"; + pixel_y = 28; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"lwj" = ( +/obj/paint_stripe/yellow, +/obj/paint/dark_gunmetal, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"lwm" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stock_parts/circuitboard/batteryrack, +/obj/item/stock_parts/circuitboard/batteryrack, +/obj/item/stock_parts/circuitboard/smes, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_capacity, +/obj/item/stock_parts/smes_coil/super_io, +/obj/item/stock_parts/smes_coil/super_io, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"lwn" = ( +/obj/machinery/atmospherics/unary/heater, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"lwp" = ( +/obj/structure/table/steel, +/obj/item/storage/bible, +/obj/item/circular_saw, +/obj/item/scalpel/basic, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"lwt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"lwu" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/glowsticks, +/obj/item/tape_roll, +/obj/item/stock_parts/smes_coil/weak, +/obj/item/storage/box/lights/led_neon, +/obj/floor_decal/spline/plain/purple{ + dir = 1 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"lwD" = ( +/obj/floor_decal/techfloor/corner, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"lwJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"lwK" = ( +/obj/structure/sign/warning/airlock{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/recharge_station, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"lwU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"lwY" = ( +/obj/shuttle_landmark/escape_pod/start/pod10, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod10/station) +"lxb" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"lxd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + name = "Forensics" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/forensic) +"lxg" = ( +/obj/structure/bed/chair/office/teal{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"lxi" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/cyan, +/turf/simulated/open, +/area/space) +"lxj" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"lxl" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"lxq" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "prototype_exhaust" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"lxz" = ( +/obj/machinery/chem_master, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"lxJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"lxK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"lxQ" = ( +/obj/machinery/computer/station_alert/security, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"lxY" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "xenobio1_vent"; + name = "Chamber Vent" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"lxZ" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/tech_supply{ + pixel_y = -6 + }, +/obj/random/tech_supply{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/random/tech_supply{ + pixel_y = -6; + pixel_x = 8 + }, +/obj/random/tool{ + pixel_y = 5; + pixel_x = 10 + }, +/obj/random/tool{ + pixel_y = -2; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"lyk" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/sofa/r/brown{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"lyr" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"lyu" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"lyw" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_9_berth_hatch"; + name = "Escape Pod Nine" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"lyE" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"lyK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"lyO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/storage/medical_lolli_jar{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"lyR" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Fore Starboard Access"; + dir = 8 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"lyS" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"lyU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lyY" = ( +/obj/structure/table/steel_reinforced, +/obj/item/hand_labeler, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Captain's Quarters"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"lzi" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"lzj" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lzk" = ( +/obj/machinery/door/window/brigdoor/westleft{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/westright{ + dir = 2; + autoset_access = 0 + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "security_permabrig_lobby_shutters" + }, +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"lzz" = ( +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"lzC" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lzD" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16; + pixel_y = -16 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"lzG" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lzH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Canister Storage" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/airlock_canisters) +"lzL" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/sofa/r/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"lzO" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/white/monotile, +/area/maintenance/fourthdeck/aft) +"lzS" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"lzW" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/item/stool/padded/red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"lAe" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"lAk" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Port Hallway Entry"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"lAs" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/device/radio/electropack, +/obj/item/device/assembly/signaler, +/obj/item/screwdriver, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/red/bordercorner, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"lAv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"lAy" = ( +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "library_space_lower"; + name = "Space Shields"; + pixel_x = -24; + pixel_y = -21 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/rounded/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"lAE" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/port) +"lAM" = ( +/obj/random/drinkbottle, +/obj/structure/closet/medical_wall/filled{ + pixel_y = -24 + }, +/obj/floor_decal/corner/black/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"lAS" = ( +/obj/machinery/atmospherics/unary/tank/air, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - East" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"lAT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Aft Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"lAU" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"lAZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"lBc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"lBp" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"lBq" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"lBs" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"lBy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"lBz" = ( +/obj/structure/closet/jcloset/sierra, +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"lBJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lBS" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/sofa/m/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"lBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"lCb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"lCc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"lCk" = ( +/obj/machinery/door/window/brigdoor/southright{ + id = "Cell 1"; + name = "Cell one"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "security_permabrig_fitst_cell_shutters" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"lCm" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"lCn" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"lCC" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"lCH" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"lCJ" = ( +/obj/floor_decal/industrial/warning, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"lCK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"lCN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"lCR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 15000 + }, +/obj/machinery/button/ignition{ + id_tag = "engines-4"; + pixel_y = 34 + }, +/obj/machinery/button/blast_door{ + id_tag = "d4portnacelle"; + name = "Combustion Chamber Blast Door Control"; + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber4pV"; + name = "First Deck Port Chamber Vent"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"lCS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"lCT" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#6a97b0" + }, +/area/quartermaster/hangar/upper) +"lCV" = ( +/obj/random/junk, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"lCZ" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"lDe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"lDl" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/engineering/atmos) +"lDK" = ( +/obj/structure/closet/secure_closet/medical_sierrasenior, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"lDM" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"lDQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/item/stack/material/plasteel{ + amount = 20 + }, +/obj/item/stack/material/plasteel{ + amount = 20 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"lDR" = ( +/obj/machinery/ai_status_display, +/obj/paint/black, +/obj/paint_stripe/turquoise, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_teleport) +"lDS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"lDU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/button/blast_door{ + id_tag = "petrovcell2"; + name = "Test Chamber Vent"; + pixel_x = -26; + pixel_y = -26 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"lDW" = ( +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cart{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"lDX" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"lDZ" = ( +/obj/machinery/door/airlock/research{ + name = "Isolation Chambers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"lEe" = ( +/obj/floor_decal/corner/purple/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"lEq" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"lEz" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"lEA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"lEK" = ( +/obj/structure/morgue{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"lEP" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"lEQ" = ( +/obj/random/obstruction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lEY" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"lEZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"lFa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"lFe" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/item/trash/sosjerky, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"lFg" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"lFi" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"lFj" = ( +/obj/floor_decal/industrial/traffic{ + detail_color = "#a2819e"; + color = "#a2819e" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"lFk" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"lFn" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"lFA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"lFH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"lFI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"lFN" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#b19664" + }, +/area/quartermaster/hangar/upper) +"lFT" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cola{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"lFW" = ( +/obj/structure/table/rack/wooden, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"lFZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"lGb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"lGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"lGh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"lGm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"lGq" = ( +/obj/catwalk_plated/white, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"lGr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 3500 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"lGA" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + dir = 8; + name = "Cryo Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sleep/cryo/firstdeck) +"lGG" = ( +/obj/floor_decal/corner/black/three_quarters, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner2, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"lGJ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"lGO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/opscheck) +"lGQ" = ( +/obj/machinery/floodlight{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"lGY" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"lGZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"lHf" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"lHj" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa3"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"lHq" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lHs" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"lHt" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lHM" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"lHU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"lHV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"lIc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"lIf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"lIk" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/sterilizine, +/obj/item/reagent_containers/spray/luminol, +/obj/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"lIv" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"lIy" = ( +/obj/structure/table/steel, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"lIQ" = ( +/obj/machinery/shipsensors, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/seats_place) +"lIY" = ( +/obj/item/bedsheet/green, +/obj/structure/bed/padded, +/turf/simulated/floor/wood/walnut, +/area/vacant/cargo) +"lJb" = ( +/obj/structure/filingcabinet/wallcabinet{ + pixel_x = 30 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/black/border{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"lJi" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"lJm" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"lJo" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"lJp" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "escape_pod_4_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"lJq" = ( +/obj/machinery/atmospherics/unary/tank{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"lJv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/emcloset, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"lJx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/space) +"lJD" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"lJF" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"lJJ" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/overmap/visitable/ship/sierra, +/obj/floor_decal/corner/blue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"lJL" = ( +/obj/machinery/mech_recharger, +/mob/living/exosuit/premade/light/exploration, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"lJN" = ( +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit2"; + name = "Infirmary Staging Shutters" + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "infimary_staging" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/maintenance_equipstorage) +"lJY" = ( +/obj/machinery/floodlight{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"lKi" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"lKo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"lKq" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/open, +/area/space) +"lKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"lKy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"lKz" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"lKC" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards, +/turf/simulated/floor/carpet, +/area/vacant/gambling) +"lKH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftstarboard) +"lKL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"lKQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"lKS" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/atm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"lKZ" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/flame/lighter/zippo, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"lLc" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "comissary_shutters"; + name = "Commissary Shutters" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"lLf" = ( +/obj/structure/bed/chair/pew, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"lLh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"lLr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"lLu" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"lLv" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/item/device/flashlight/lamp/lava/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"lLE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/captain/secret_room/level_one) +"lLH" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/tool, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"lLL" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "CO23p_in"; + injecting = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"lLW" = ( +/obj/structure/bed/chair/office/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"lLY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"lLZ" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lMi" = ( +/obj/structure/bed/chair/office/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"lMl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"lMu" = ( +/obj/machinery/door/airlock/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/dungeon_master_lounge) +"lMB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"lME" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/mob/living/simple_animal/passive/mouse, +/turf/simulated/floor/wood{ + icon_state = "wood_broken3" + }, +/area/vacant/sauna) +"lMF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"lMG" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"lMP" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Aft Hallway Heads" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"lMQ" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"lMR" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"lMW" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"lMX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/sign/warning/internals_required{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"lMY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + name = "supply valve to Petrov" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lNb" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"lNg" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"lNk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/disposal, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"lNl" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"lNm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"lNn" = ( +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/aftport) +"lNv" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lNI" = ( +/obj/structure/closet/secure_closet/personal/empty, +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sauna) +"lNM" = ( +/obj/landmark{ + name = "carpspawn" + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"lNS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"lNU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"lNX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"lNZ" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"lOa" = ( +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/closet/secure_closet/hop2, +/obj/item/book/manual/nt_sop, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hop/cobed) +"lOd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"lOi" = ( +/obj/structure/table/woodentable, +/obj/item/trash/sosjerky, +/obj/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"lOn" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/brace{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"lOo" = ( +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/papershredder, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"lOp" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"lOr" = ( +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"lOA" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"lOI" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/head_big) +"lOO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/storage/primary) +"lOT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"lOU" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"lPa" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"lPd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"lPf" = ( +/obj/landmark{ + name = "carpspawn" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"lPg" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/starboard) +"lPl" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"lPo" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lPp" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/cabinet/forensics{ + name = "forensics technician's cabinet" + }, +/obj/item/storage/briefcase/crimekit{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"lPz" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"lPF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hydroponics) +"lPG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Central Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"lPI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"lPV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"lQb" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/aft) +"lQj" = ( +/obj/structure/table/standard, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"lQt" = ( +/obj/structure/table/standard, +/obj/item/roller_bed, +/obj/item/roller_bed, +/obj/item/roller_bed, +/obj/item/roller_bed, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"lQv" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway - Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"lQE" = ( +/obj/machinery/button/blast_door{ + id_tag = "heads_meeting"; + name = "Conference Room Shutters Control"; + pixel_y = 28; + pixel_x = 1 + }, +/obj/machinery/button/windowtint{ + id = "meeting_windows"; + pixel_x = 9; + pixel_y = 28 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 28 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"lQF" = ( +/obj/floor_decal/techfloor, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Aft Port"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"lQM" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lQP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"lQX" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/eva) +"lQY" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"lRm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"lRq" = ( +/turf/simulated/wall/prepainted, +/area/hydroponics/third_deck_storage) +"lRx" = ( +/obj/structure/closet/crate, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/smokes, +/obj/random/tank, +/obj/random/tool, +/obj/random/tool, +/obj/random/tech_supply, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/firstdeck/aftstarboard) +"lRN" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/interrogation/second) +"lRZ" = ( +/turf/simulated/wall/r_wall/hull, +/area/command/bsa) +"lSb" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "ai_starboard"; + name = "interior access button"; + pixel_y = 28; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lSc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"lSi" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/yellow/three_quarters, +/obj/item/device/megaphone, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"lSl" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_hall_shutt" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"lSq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"lSt" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"lSx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/xenoflora) +"lSK" = ( +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lSZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"lTj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"lTx" = ( +/obj/machinery/suit_storage_unit/medical/alt, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"lTE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"lTI" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"lTP" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"lTT" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/hologram/holopad{ + pixel_y = 16; + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"lTY" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lTZ" = ( +/turf/simulated/wall/prepainted, +/area/chapel/mortuary) +"lUa" = ( +/obj/machinery/door/window{ + autoset_access = 0; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"lUd" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/tableflag, +/obj/vehicle/train/cargo/trolley, +/obj/floor_decal/spline/plain/brown, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"lUe" = ( +/obj/structure/bed/sofa/m/brown{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"lUi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "iaaright"; + req_access = newlist(); + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"lUl" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/simulated/open, +/area/space) +"lUy" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lUz" = ( +/obj/structure/table/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/freezer, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/obj/item/storage/box/syringes, +/obj/item/storage/box/syringes, +/obj/item/storage/box/latexgloves, +/obj/item/storage/box/nitrilegloves, +/obj/item/storage/box/beakers, +/obj/machinery/light, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"lUI" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"lUK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"lUW" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lVe" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"lVm" = ( +/obj/floor_decal/corner/green/half, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"lVr" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"lVC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/mime, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"lVJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"lVP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lVT" = ( +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"lWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"lWe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "charon_cargo_in"; + name = "charon external conveyor belt" + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"lWg" = ( +/obj/structure/bed/chair/comfy/purple{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"lWr" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"lWs" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"lWt" = ( +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_teleport) +"lWu" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"lWC" = ( +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"lWD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"lWE" = ( +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"lWI" = ( +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"lWK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"lWO" = ( +/obj/structure/table/standard, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"lWR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"lXc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"lXk" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "prototype_controller"; + pixel_x = 23; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"lXp" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"lXx" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"lXy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"lXN" = ( +/turf/simulated/wall/prepainted, +/area/storage/airlock_canisters) +"lXQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"lXY" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hangar_ts_shutters"; + name = "Secondary Hallway Shutters"; + pixel_x = 5; + pixel_y = 1; + req_access = list("ACCESS_SECURITY") + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hangar_hallway_shutters"; + name = "Hallway Checkpoint Shutters"; + pixel_x = -5; + pixel_y = -3; + req_access = list("ACCESS_SECURITY") + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for shutters."; + id_tag = "hangar_checkpoint_shutters"; + name = "Checkpoint Window Shutters"; + pixel_x = -5; + pixel_y = 7; + req_access = list("ACCESS_SECURITY") + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"lYg" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"lYk" = ( +/obj/floor_decal/borderfloor, +/obj/machinery/light, +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"lYm" = ( +/obj/structure/bed/chair/wheelchair, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lYo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"lYw" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"lYx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"lYy" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"lYA" = ( +/obj/structure/reagent_dispensers/coolanttank, +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"lYK" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio2"; + name = "Containment Blast Doors" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"lYM" = ( +/obj/machinery/suit_storage_unit/security/alt, +/obj/structure/railing/mapped, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"lYP" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway - Fore"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"lZa" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green, +/obj/floor_decal/corner/red/bordercee{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"lZe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"lZj" = ( +/turf/simulated/open, +/area/hallway/primary/bridgedeck/central_stairwell) +"lZm" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 4; + id_tag = "skipjack_shuttle_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"lZF" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"lZJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/engineering{ + name = "Fusion Testing Facility"; + secured_wires = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/prototype/control) +"lZQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + locked = 1 + }, +/obj/item/taperoll/engineering/applied, +/obj/decal/cleanable/blood/tracks/footprints, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"lZU" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/interrogation/second) +"lZV" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/item/paper/sierra/engineering_SMairlock, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"lZZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/aft) +"mac" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"mae" = ( +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mah" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/lounge) +"mal" = ( +/obj/structure/closet/crate/plastic, +/obj/machinery/camera/network/hangar{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"maw" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/deckofficer) +"maz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"maC" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"maQ" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"maW" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"maZ" = ( +/obj/structure/table/woodentable, +/obj/item/storage/secure/briefcase, +/obj/item/device/taperecorder, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mba" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravitational Generator Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"mbd" = ( +/turf/simulated/wall/prepainted, +/area/hallway/infirmary) +"mbf" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar<-cafe"; + name = "Bar Shutters" + }, +/obj/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar) +"mbg" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_pub_hall"; + name = "Infirmary Entry Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/hallway/infirmary) +"mbh" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa1"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"mbk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + name = "Tech Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/tech) +"mbl" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/structure/sign/warning/hot_exhaust{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/guppy_hangar/start) +"mbq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"mbu" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"mby" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_y = 26 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mbH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mbT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"mbV" = ( +/obj/floor_decal/carpet/blue, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"mcp" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_1_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"mcq" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"mcr" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"mcw" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar) +"mcz" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "fd_starboard"; + name = "interior access button"; + pixel_x = -24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + id_tag = "fd_starboard_inner"; + name = "First Deck Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"mcA" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mcD" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"mcI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/industrial/danger, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"mcN" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "Command - EVA"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"mcO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"mcP" = ( +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mcU" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"mde" = ( +/obj/machinery/computer/air_control{ + dir = 8; + name = "Atmospheric Sensors"; + sensor_name = "Charon Out"; + sensor_tag = "calypso_out" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/paleblue/bordercorner2, +/obj/structure/window/reinforced/polarized, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"mdn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"mdp" = ( +/obj/structure/table/reinforced, +/obj/machinery/fabricator/micro/bartender{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/storage/box/beakers, +/obj/floor_decal/corner/beige/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"mdr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"mdA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"mdB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mdD" = ( +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"mdE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"mdM" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"mdZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"meb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"med" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"meg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"men" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"mep" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"mes" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube, +/obj/item/reagent_containers/food/snacks/monkeycube/spidercube, +/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/vial{ + name = "vial (mutational toxin)" + }, +/obj/item/reagent_containers/glass/beaker/vial, +/obj/item/scalpel/basic{ + pixel_y = 12 + }, +/obj/spider/stickyweb, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"meu" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Conference Room Maintenance" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge/meeting_room) +"mez" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"meC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"meE" = ( +/obj/structure/bed/sofa/r/teal{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"meG" = ( +/obj/structure/filingcabinet, +/obj/item/folder, +/obj/item/folder, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"meH" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"meJ" = ( +/turf/simulated/wall/r_wall/hull, +/area/teleporter) +"meN" = ( +/obj/floor_decal/corner/black/mono, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4; + name = "Commissary Counter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"meO" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/structure/table/woodentable/walnut, +/obj/machinery/light/spot, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"meS" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 24 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"meU" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"meX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"meY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/status_light{ + id_tag = "ReacEng1"; + name = "Deck Four Starboard status indicator"; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"meZ" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/computer/modular/preset/medical, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"mfl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"mfq" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"mfr" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"mfs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mft" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/sauna) +"mfv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"mfx" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + sort_type = "Research Equipment"; + name = "Research Equipment" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"mfA" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/lounge/upper) +"mfF" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/docking) +"mfI" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"mfJ" = ( +/obj/structure/cart{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"mfK" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "eng_lockdown_emg3"; + name = "Emergency Exit Control"; + pixel_x = -24; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"mfL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mfM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"mfP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mfZ" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mgc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"mge" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"mgg" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"mgx" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/head/deck3) +"mgy" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"mgz" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"mgE" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"mgK" = ( +/obj/structure/largecrate, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"mgL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"mgN" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"mgW" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/storage, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mgX" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mhc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"mhi" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/gym) +"mhn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/TD_port, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"mho" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/evidence) +"mhx" = ( +/obj/machinery/suit_storage_unit/science, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"mhF" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/command/bsa) +"mhK" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"mhL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Floor mounted flash" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"mhN" = ( +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"mhO" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"mhS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"mhV" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"mib" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/drinks/cans/speer, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"mih" = ( +/obj/structure/hygiene/shower, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"mik" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"mip" = ( +/obj/machinery/door/window, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"mit" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"miw" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"miC" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_2_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"miI" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"miL" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"miM" = ( +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"miS" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/obj/machinery/status_light{ + alert_temperature = 340; + id_tag = "BSDrive"; + name = "Bluespace Drive status indicator"; + pixel_x = -24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"miW" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/obj/structure/sign/poster/nyc/zeng_hu_pharmaceuticals{ + pixel_x = -32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"miY" = ( +/obj/floor_decal/corner/paleblue, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"mjf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"mjk" = ( +/obj/structure/closet/crate/secure/biohazard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/eva) +"mjB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mjE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"mjK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"mjM" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"mjY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"mjZ" = ( +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "Chief Medical Officer"; + secured_wires = 1; + stripe_color = "#00e1ff"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/cmo) +"mkc" = ( +/obj/structure/curtain/open/shower, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"mkh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mkj" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio3"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"mkq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"mkt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"mku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"mkE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"mkQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"mkS" = ( +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"mli" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/airless, +/area/space) +"mlr" = ( +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"mls" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"mlu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"mlH" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/storage, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"mlT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"mmh" = ( +/obj/structure/sign/warning/fire{ + dir = 1; + pixel_y = -40 + }, +/obj/machinery/light/spot, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"mmm" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"mmo" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/solar/starboard) +"mmt" = ( +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/range) +"mmx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"mmy" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/machinery/recharge_station, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_access"; + name = "Virology Lab Access Console"; + req_access = list("ACCESS_VIRO"); + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"mmH" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"mmJ" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"mmK" = ( +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"mmQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"mmR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/thruster/d1starboard) +"mmZ" = ( +/obj/structure/table/woodentable/ebony, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/synthesized_instrument/violin, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"mnb" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"mnk" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"mnp" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1; + tag_west = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"mnv" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"mnx" = ( +/obj/structure/lattice, +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mnz" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"mnH" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"mnN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + locked = 1; + dir = 4 + }, +/obj/item/taperoll/engineering/applied, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"mnO" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/portable_atmospherics/reagent_sublimator/sauna, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/lava/orange{ + pixel_y = 15; + pixel_x = -3 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"mnP" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"mnV" = ( +/obj/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"mnW" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"moe" = ( +/obj/structure/sign/warning/airlock{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar/bridge_starboard) +"moh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mop" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"moz" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"moM" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"moO" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"moY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"mpe" = ( +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos/storage) +"mpg" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner2, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"mpq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mpw" = ( +/obj/structure/table/rack, +/obj/item/screwdriver, +/obj/item/crowbar, +/obj/item/device/binoculars, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"mpx" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "hangar_atmos_storage"; + name = "Storage Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"mpB" = ( +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_station) +"mpE" = ( +/obj/machinery/vitals_monitor, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"mpK" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"mpS" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaaleft" + }, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"mpT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/structure/displaycase, +/obj/item/gun/projectile/revolver/capgun, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"mpU" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"mpV" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"mpY" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"mqc" = ( +/obj/floor_decal/corner/red, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"mqd" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"mqe" = ( +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"mqj" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"mqs" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"mqx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"mqO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"mqP" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "h2_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/engineering/atmos) +"mrg" = ( +/obj/structure/curtain/open/bed, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"mrh" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/photocopier/faxmachine{ + department = "Captain" + }, +/obj/item/paper/sierra/captain_fax, +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"mri" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/expedition) +"mrA" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "null"; + name = "Captain's office"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain) +"mrD" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"mrS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"mrY" = ( +/obj/floor_decal/corner/black/border{ + dir = 9 + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"msd" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"mse" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_1" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"msg" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"msi" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft_stairwell) +"msj" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"msl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + name = "Guards' Equipment" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/equipment) +"msn" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"msq" = ( +/obj/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"msv" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"msw" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 1 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"msz" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/crusher_base{ + icon_state = "rightcap" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"msE" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/eva) +"msF" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + id_tag = "vir_blast_window" + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"msI" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/self_destruct, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"msN" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/firedoor, +/obj/paint_stripe/blue, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"msZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/air_sensor/nacelle/fourth, +/obj/machinery/atmospherics/unary/outlet_injector{ + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"mtj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"mtt" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"mtC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"mtI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"mtJ" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Brig's visiting room shutters"; + id_tag = "visiting_room_windows_shutters" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"mtP" = ( +/obj/structure/closet/crate, +/obj/decal/cleanable/dirt, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"mtQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"mtR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mtW" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"muc" = ( +/obj/structure/closet/secure_closet/security/sierra, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/spot, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"mue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"mui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mum" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"muo" = ( +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe/xeno/hand, +/obj/item/pickaxe/xeno/hand, +/obj/item/device/scanner/mining, +/obj/item/device/scanner/mining, +/obj/item/storage/belt/utility/full, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/glowsticks, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"muq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/b_green/border, +/obj/machinery/conveyor_switch/oneway{ + id = "charon_cargo_out"; + name = "charon interior conveyor switch"; + pixel_x = 10; + pixel_y = 15 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"muw" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"muB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/vendor/contraband/maintenance{ + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"muF" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"muI" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"muW" = ( +/obj/structure/table/woodentable/maple, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"muX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"mvi" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_4_pump" + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"mvn" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"mvo" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "escape_pod_5_pump" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"mvq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mvy" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/thruster/d1starboard) +"mvA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Hallway" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mvC" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"mvD" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"mvM" = ( +/obj/machinery/alarm/monitor/isolation/xenobio{ + alarm_id = "xenobio2_alarm"; + dir = 8; + name = "Xenobiology Second Xenopen"; + pixel_x = 23 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"mvW" = ( +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"mwe" = ( +/obj/floor_decal/corner/darkblue/half{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue{ + dir = 6 + }, +/obj/machinery/disposal, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/directions/bridge{ + pixel_y = 24; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"mwf" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"mwi" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/mechanical, +/obj/random/powercell, +/obj/random/powercell, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"mwj" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/centralport) +"mwo" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"mwx" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"mwC" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Starboard" + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"mwD" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"mwF" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"mwJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/decal/cleanable/cobweb2{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mwN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"mwQ" = ( +/obj/machinery/door/airlock/glass/civilian{ + autoset_access = 0; + name = "Recreation Area" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/visitors) +"mwS" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/chem_master, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"mxc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"mxf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay - Morgue - Autopsy" + }, +/obj/structure/crematorium{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"mxg" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"mxj" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"mxo" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"mxv" = ( +/obj/floor_decal/industrial/traffic{ + dir = 10; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/structure/bed/chair/office/purple, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"mxA" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + name = "Third Deck Port Airlock Access"; + id_tag = "td_port_inner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mxC" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"mxD" = ( +/obj/machinery/photocopier, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"mxG" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/material/ashtray/glass, +/obj/item/storage/fancy/smokable/killthroat, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"mxK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/ablative, +/obj/item/clothing/head/helmet/ablative, +/obj/item/clothing/head/helmet/ablative, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"mxO" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenobotany_access"; + name = "Xenobotany Lab Access Console"; + req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"mxP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"mxS" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Bridge Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/nano) +"myc" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"myd" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/dormintories) +"myg" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge) +"myh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"myn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/tcommsat/computer) +"myr" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"myu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "hangar_atmos_storage"; + name = "Storage Door Control"; + pixel_x = 24; + req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP")) + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"myB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"myC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"myD" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"myN" = ( +/obj/structure/table/woodentable, +/obj/item/storage/secure/briefcase, +/obj/item/handcuffs, +/obj/item/grenade/smokebomb, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"myS" = ( +/obj/structure/lattice, +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"myX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/item/book/manual/nt_sop, +/obj/decal/cleanable/blood, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"mzc" = ( +/obj/structure/bed/sofa/l/brown{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"mze" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"mzk" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"mzp" = ( +/obj/structure/catwalk, +/turf/simulated/wall/r_wall/hull, +/area/space) +"mzt" = ( +/obj/structure/holoplant, +/obj/machinery/camera/network/medbay{ + c_tag = "Infrimary - Hospital"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"mzu" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mzv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_3" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"mzC" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"mzF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/mirrored{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"mzN" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/material/ashtray/bronze, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/cafe) +"mzU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"mzV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"mzZ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"mAf" = ( +/obj/structure/table/rack, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/item/flame/lighter/random, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"mAw" = ( +/obj/structure/closet/crate/freezer, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/drinkbottle, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/cola, +/obj/item/reagent_containers/food/drinks/cans/sodawater, +/obj/item/reagent_containers/food/drinks/cans/tonic, +/obj/item/reagent_containers/food/drinks/cans/tonic, +/obj/item/reagent_containers/food/drinks/cans/iced_tea, +/obj/item/reagent_containers/food/drinks/milk, +/obj/item/reagent_containers/food/drinks/small_milk_choc, +/obj/item/reagent_containers/food/drinks/soymilk, +/turf/simulated/floor/tiled/monotile, +/area/vacant/cargo) +"mAx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"mAz" = ( +/obj/machinery/photocopier, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"mAA" = ( +/obj/structure/flora/pottedplant/large, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"mAC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"mAI" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"mAN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"mAP" = ( +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"mAV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"mAW" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"mBb" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/cmo) +"mBc" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"mBf" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_pub_hall"; + name = "Infirmary Entry Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/hallway/infirmary) +"mBg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/recharger, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/table/reinforced, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"mBj" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/mirror{ + pixel_x = 24; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"mBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"mBp" = ( +/obj/structure/table/standard, +/obj/random/clipboard, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"mBr" = ( +/obj/structure/table/rack, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftstarboard) +"mBz" = ( +/turf/simulated/wall/prepainted, +/area/rnd/development) +"mBA" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"mBF" = ( +/obj/machinery/door/airlock/multi_tile/command{ + name = "Conference Room" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"mBG" = ( +/obj/structure/table/woodentable/maple, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/storage/box/donut, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"mBH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"mCa" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"mCo" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"mCr" = ( +/obj/structure/table/marble, +/obj/item/book/manual/chef_recipes, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Kitchen - Distribution"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"mCs" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"mCt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mCD" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"mCP" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/table/woodentable/walnut, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"mCS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"mCU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"mDb" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - R-UST - TOKAMAK Interior"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"mDe" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "charon_cargo_in"; + name = "charon external conveyor belt" + }, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"mDg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"mDi" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "cChamber3pV"; + name = "Chamber Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"mDk" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"mDl" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"mDw" = ( +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/crew_quarters/sleep/cryo/south) +"mDx" = ( +/obj/machinery/air_sensor/nacelle/first/plasma, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"mDy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"mDz" = ( +/obj/paint_stripe/turquoise, +/obj/paint/black, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai) +"mDD" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"mDE" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecoms Storage"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id_tag = "telecoms_s" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"mDF" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/structure/bed/sofa/l/brown, +/obj/machinery/vending/wallmed2{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"mDG" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"mDL" = ( +/obj/machinery/shieldgen, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"mDN" = ( +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/floor_decal/corner/black/bordercorner, +/obj/floor_decal/corner/black/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"mDS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"mDY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"mEd" = ( +/obj/random/ironing_board_structure, +/obj/item/ironing_iron, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"mEe" = ( +/obj/machinery/vending/engivend{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"mEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mEk" = ( +/obj/catwalk_plated, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"mEl" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Third Deck Subgrid"; + name_tag = "Third Deck Subgrid" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -21 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"mEr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"mEt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/rotating_alarm/supermatter{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"mEz" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_shutt" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/plating, +/area/bridge/lobby) +"mEE" = ( +/obj/structure/bed/chair/office/comfy/red{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"mEP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"mEX" = ( +/obj/structure/bed/chair/padded/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"mFj" = ( +/obj/machinery/door/window/southleft{ + name = "HoP's Desk"; + req_access = newlist(); + id_tag = "hop_windows" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hop_shutters"; + name = "HoP Desk's Shutters"; + opacity = 0 + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"mFl" = ( +/obj/structure/railing/mapped, +/obj/decal/cleanable/cobweb2, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"mFo" = ( +/obj/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"mFq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Interrogation" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/interrogation/second) +"mFv" = ( +/obj/machinery/papershredder, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"mFw" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"mFy" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"mFG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/closet/jcloset, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"mFL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mFO" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/material/ashtray/plastic{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"mFR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/corner/brown/mono, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs/upper) +"mGd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mGe" = ( +/obj/structure/ladder, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"mGr" = ( +/obj/paint_stripe/turquoise, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai) +"mGx" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod1/station) +"mGG" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/cell2) +"mGI" = ( +/obj/structure/ladder, +/obj/structure/cable{ + d2 = 8; + icon_state = "32-8"; + d1 = 32 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"mGJ" = ( +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#6a97b0" + }, +/area/quartermaster/hangar/upper) +"mGL" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange/corner, +/obj/structure/window/boron_reinforced{ + dir = 8 + }, +/obj/structure/window/boron_reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"mGP" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"mGV" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"mGY" = ( +/obj/machinery/computer/modular/preset/civilian{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = -21 + }, +/obj/machinery/button/windowtint{ + id = "rcheckinner_windows"; + pixel_x = 10; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"mHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"mHf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/radiation, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"mHg" = ( +/obj/structure/table/standard, +/obj/item/towel/random, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/towel/random, +/obj/item/towel/random{ + pixel_y = -4; + pixel_x = -5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"mHp" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"mHu" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"mHL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/garden_room) +"mHS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mHT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/virology) +"mIg" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/structure/flora/pottedplant/large{ + pixel_y = 9 + }, +/obj/item/trash/chips{ + pixel_y = 3; + pixel_x = -12 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"mIq" = ( +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mIs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"mIF" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/security{ + c_tag = "Security - Sergeant" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/sergeant) +"mIL" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"mIO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mIT" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm/server{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/servers) +"mIX" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"mJi" = ( +/obj/turbolift_map_holder/sierra, +/turf/unsimulated/mask, +/area/hallway/primary/fourthdeck/center) +"mJj" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"mJq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Mental Health"; + sort_type = "Mental Health" + }, +/obj/machinery/tele_beacon, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"mJt" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"mJw" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/obj/structure/curtain/open/bed{ + anchored = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"mJy" = ( +/obj/structure/filingcabinet{ + pixel_x = -6 + }, +/obj/structure/filingcabinet{ + pixel_x = 5 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"mJE" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai_teleport) +"mJM" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"mJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/equipment) +"mJU" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"mJV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/chapel/mortuary) +"mJW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"mJZ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"mKb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"mKd" = ( +/obj/structure/table/standard, +/obj/random/donkpocket_box, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"mKh" = ( +/obj/floor_decal/spline/fancy/black, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"mKo" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/item/stack/material/wood/walnut{ + amount = 2 + }, +/turf/simulated/floor/carpet, +/area/vacant/gambling) +"mKp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"mKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"mKG" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"mKH" = ( +/turf/simulated/floor/plating, +/area/vacant/gambling) +"mKZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mLa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"mLb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"mLn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"mLr" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "sd_starboard_outer"; + name = "Second Deck Port Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "sd_starboard"; + name = "exterior access button"; + pixel_x = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"mLz" = ( +/obj/floor_decal/corner/black/mono, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"mLQ" = ( +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Chemisty Desk" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters/open{ + id_tag = "chemistry_lockdown"; + name = "Chemistry Shutters" + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"mLR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"mMg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"mMm" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/chemistry) +"mMs" = ( +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"mMx" = ( +/obj/structure/stairs/west, +/obj/structure/sign/directions/security{ + pixel_y = 24; + dir = 8 + }, +/obj/structure/sign/directions/infirmary{ + pixel_y = 31; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"mMA" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"mMI" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Fore Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"mMJ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"mMK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"mMN" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/clothing/mask/gas/mime, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"mMR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/stasis_cage, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"mMT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"mMW" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/vending/phoronresearch{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"mNf" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "fuel2p_in"; + name = "Fuel Supply Control"; + output_tag = "fuel2p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngPlasma2" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"mNg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"mNi" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/corner/yellow/mono, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"mNr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"mNs" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"mNv" = ( +/obj/item/grenade/chem_grenade/cleaner, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mNz" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mND" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"mNF" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mNG" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"mNJ" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"mNS" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "bo_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/sergeant) +"mNV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"mOa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"mOc" = ( +/obj/machinery/flasher{ + id_tag = "security_second_cell_flash"; + name = "Floor mounted flash" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"mOf" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/galley/backroom) +"mOl" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"mOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"mOt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"mOu" = ( +/obj/structure/railing/mapped{ + color = "#aed18b"; + init_color = "#aed18b" + }, +/obj/structure/railing/mapped{ + dir = 8; + color = "#aed18b"; + init_color = "#aed18b" + }, +/turf/simulated/open, +/area/hallway/primary/seconddeck/central_stairwell) +"mOx" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"mOK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"mOR" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"mOZ" = ( +/obj/machinery/floodlight, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mPm" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"mPp" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"mPs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"mPt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"mPu" = ( +/obj/structure/bed/sofa/l/beige{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"mPv" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/bed/sofa/m/brown{ + dir = 8 + }, +/obj/machinery/camera/network/fourth_deck{ + dir = 8; + c_tag = "Fourth Deck - Dock Bay - Starboard One" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"mPx" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/office/post) +"mPA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"mPD" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"mPI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"mPS" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"mPX" = ( +/obj/structure/bed/sofa/l/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"mPZ" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"mQf" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Bridge Port" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"mQg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/grey/three_quarters, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"mQl" = ( +/obj/machinery/requests_console{ + department = "Research"; + departmentType = 3; + name = "Research RC"; + pixel_y = 30 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mQn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mQt" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"mQI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/navbeacon/sierra/TD_fore7_starboard, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"mQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"mQK" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"mQL" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"mQV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"mRe" = ( +/obj/structure/stairs/west, +/obj/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"mRk" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"mRo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/outline/grey, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4; + name = "supply valve to Hangar backup" + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"mRr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"mRs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"mRt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"mRL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftstarboard) +"mRM" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"mRP" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"mRQ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"mRS" = ( +/obj/structure/table/standard, +/obj/item/wheelchair_kit, +/obj/item/wheelchair_kit{ + pixel_y = 9 + }, +/obj/item/wheelchair_kit{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"mRU" = ( +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"mSf" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"mSi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"mSl" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"mSv" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"mSx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"mSy" = ( +/obj/structure/catwalk, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mSA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"mSM" = ( +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "cap_room_window"; + req_access = list("ACCESS_CAPTAIN"); + dir = 2; + autoset_access = 0 + }, +/obj/floor_decal/carpet/blue, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"mSU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 15000 + }, +/obj/machinery/button/ignition{ + dir = 1; + id_tag = "engines-1"; + pixel_y = -34 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "d1portnacelle"; + name = "Combustion Chamber Blast Door Control"; + pixel_x = -8; + pixel_y = -24 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "cChamber1pV"; + name = "Third Deck Starboard Chamber Vent"; + pixel_x = 8; + pixel_y = -24 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"mSW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"mSX" = ( +/obj/structure/table/standard, +/obj/item/material/clipboard{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/item/stamp/qm{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/pen{ + pixel_y = 7 + }, +/obj/item/pen/red{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/sticky_pad/random{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"mSZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"mTi" = ( +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"mTl" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"mTB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"mTF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"mTI" = ( +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"mTY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"mUc" = ( +/obj/structure/table/woodentable, +/obj/item/storage/fancy/smokable/killthroat, +/obj/item/storage/fancy/smokable/luckystars, +/obj/item/flame/lighter/zippo, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"mUf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"mUi" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/camera/network/command{ + c_tag = "Command - AI Upload" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/computer/modular/preset/aislot/sysadmin, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"mUk" = ( +/turf/simulated/open, +/area/hallway/primary/seconddeck/aft_stairwell) +"mUm" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/woodentable, +/obj/item/dice/d20, +/obj/item/dice, +/obj/item/dice/d12, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/dungeon) +"mUp" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"mUq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"mUJ" = ( +/obj/fluid_mapped, +/obj/item/clothing/under/shorts/blue, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"mUL" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/laundry) +"mUM" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"mUO" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/closet/cabinet, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/corner/red, +/obj/item/book/manual/nt_tc, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"mUQ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"mVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"mVb" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/random/obstruction, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"mVd" = ( +/obj/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mVh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"mVr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mVw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"mVC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/navbeacon/sierra/TD_afthallway1, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"mVF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"mWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"mWc" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/galley/freezer) +"mWg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Kitchen - Stewards" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"mWv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/sofa/m/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"mWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"mWA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"mXa" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/structure/bed/sofa/r/brown{ + dir = 8 + }, +/obj/landmark/start, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"mXd" = ( +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"mXf" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/folder/nt, +/obj/item/folder/white{ + pixel_y = 6; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mXk" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/simulated/open, +/area/space) +"mXm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"mXn" = ( +/obj/machinery/constructable_frame/machine_frame, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"mXx" = ( +/obj/structure/adherent_bath, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"mXP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mXR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/tool, +/obj/random/tool{ + pixel_y = -6; + pixel_x = 7 + }, +/obj/random/tank{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/random/tech_supply{ + pixel_y = 11; + pixel_x = 8 + }, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/hangar) +"mXT" = ( +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"mYa" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/obj/item/paper/sierra/engineering_comms, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"mYo" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"mYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/research{ + dir = 8; + name = "Xenobiology Atmospherics" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"mYt" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"mYA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mYD" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"mYF" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"mYI" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"mYK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/chapel/main) +"mYL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"mYM" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"mYP" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"mYR" = ( +/obj/structure/closet/secure_closet/medical_sierra, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"mYT" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"mYW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"mYX" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"mZa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"mZk" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/yellow/mono, +/obj/machinery/recharger, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"mZn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"mZt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/aftstarboard) +"mZx" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"mZA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"mZD" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/critical{ + name = "west bump"; + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"mZE" = ( +/obj/random/trash, +/obj/item/roller_bed{ + pixel_y = 16 + }, +/obj/random/medical, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"mZF" = ( +/obj/machinery/smartfridge{ + opacity = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/galley/backroom) +"mZV" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/machinery/button/windowtint{ + id = "cap_room_window"; + pixel_y = 24 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"mZX" = ( +/obj/structure/fitness/punchingbag, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"mZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"nab" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"nae" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftport) +"nah" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"nai" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"nam" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/chemical_dispenser, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"nan" = ( +/obj/structure/catwalk, +/obj/machinery/airlock_sensor{ + id_tag = "ai_starboard_sensor"; + master_tag = "solar_starboard"; + pixel_x = 10; + pixel_y = 27 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "ai_starboard"; + pixel_x = -5; + pixel_y = 21; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/atmospherics/unary/vent_pump{ + id_tag = "ai_starboard_pump" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"nap" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "solar_starboard"; + name = "exterior access button"; + pixel_x = -12; + pixel_y = -19; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"nar" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/engineering{ + dir = 8; + name = "Third Deck Substation" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/thirddeck) +"naC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch{ + secured_wires = 1; + name = "Bridge Wardroom Maintenance" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain/beach) +"naG" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"naJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"naT" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"nba" = ( +/obj/structure/railing/mapped, +/obj/machinery/barrier, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"nbf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"nbg" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"nbi" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"nbj" = ( +/obj/machinery/photocopier, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"nbr" = ( +/obj/floor_decal/corner/red/mono, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"nbB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"nbD" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"nbG" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/rnd/development) +"nbJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"nbP" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"nbT" = ( +/obj/structure/table/standard, +/obj/item/storage/box/lights/led_neon, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"nbW" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"nch" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"ncm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/shuttle_landmark/petrov/start, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"ncx" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"ncz" = ( +/obj/random/closet, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"ncG" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"ncM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"ncQ" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Central Hallway" + }, +/obj/machinery/navbeacon/sierra/FD_forecentralhallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"ncR" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/compactor) +"ncS" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"ndf" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ndi" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/black/mono, +/obj/item/folder, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"ndj" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"ndq" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + id_tag = "EngineEmitter"; + state = 2 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ndt" = ( +/obj/machinery/constructable_frame/computerframe{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"ndv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access = newlist(); + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"ndx" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ndy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/computer/air_control{ + dir = 8; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensor_name = "Tank"; + sensor_tag = "o2_sensor" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ndG" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod9/station) +"ndK" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/seats_place) +"ndR" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/gas) +"neg" = ( +/obj/shuttle_landmark/ert/deck5, +/turf/space, +/area/space) +"nei" = ( +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"nel" = ( +/obj/structure/hygiene/shower{ + pixel_y = 15 + }, +/obj/machinery/door/window, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/hygiene/drain/bath, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/random/soap, +/obj/item/towel/fleece, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"neo" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/turf/simulated/floor/plating, +/area/crew_quarters/sauna) +"neA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"neC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"neE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/sleeper, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"neK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"neL" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"neP" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "civsafedoorport"; + name = "safe room door-control"; + dir = 4; + pixel_x = -21 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"neR" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"nfe" = ( +/obj/structure/curtain/black, +/obj/structure/wall_frame, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"nfl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"nfn" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"nfo" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"nfq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"nfr" = ( +/obj/structure/closet/secure_closet/adjutant, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/device/flash, +/obj/item/device/flashlight, +/obj/item/storage/secure/safe{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/gun/energy/gun/small/secure, +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"nfJ" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"nfK" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/b_green/border, +/obj/structure/bed/chair/shuttle/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"nfL" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"nfV" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"nga" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/substation/thirddeck) +"ngg" = ( +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ngh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"ngm" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/access_button/airlock_exterior{ + pixel_y = 24; + master_tag = "solar_bridge_airlock"; + pixel_x = -26 + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"ngE" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + pixel_y = 24; + dir = 4 + }, +/obj/structure/sign/directions/infirmary{ + dir = 4; + pixel_y = 31 + }, +/obj/machinery/navbeacon/sierra/FD_forecentralhallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"ngG" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"ngK" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/foreport) +"ngL" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/bed/sofa/m/brown, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"ngO" = ( +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"ngU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"ngV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"nhh" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"nhq" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nht" = ( +/obj/machinery/light, +/obj/machinery/telecomms/hub/preset, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"nhv" = ( +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"nhx" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"nhE" = ( +/obj/structure/hygiene/shower{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/freezer, +/area/vacant/sauna) +"nhI" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"nhU" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/medical) +"nhX" = ( +/obj/machinery/door/airlock/civilian{ + name = "Theatre"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/actor/stage) +"nib" = ( +/obj/structure/bed/chair/office/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"nic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/navbeacon/sierra/TD_centralhallway3, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"nig" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"nim" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"nit" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"niv" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"niz" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1; + tag_west = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"niA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"niF" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office/post) +"niH" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"niN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"niO" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"niY" = ( +/obj/structure/iv_stand, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"njb" = ( +/obj/machinery/space_heater, +/obj/item/screwdriver, +/turf/simulated/floor/plating, +/area/crew_quarters/sauna) +"njl" = ( +/obj/structure/bed/chair/armchair/beige{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"njz" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/black/mono, +/obj/item/folder, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"njA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Locker Room"; + req_access = newlist() + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"njE" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"njG" = ( +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "cap_room_window"; + req_access = list("ACCESS_CAPTAIN"); + dir = 4; + autoset_access = 0 + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"njH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"njJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"njQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"njV" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"njY" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/expedition/eva) +"nkf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"nkh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/gas) +"nkj" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"nkr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/structure/sign/warning/pods/south{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/borderfloorblack/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"nkv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"nkB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"nkC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"nkG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"nkL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/navbeacon/sierra/TD_centralhallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"nkO" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"nkP" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"nkV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nkW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"nlc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + sort_type = "Research Experimental"; + name = "Research Experimental" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"nlk" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"nlm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"nlo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"nlq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/red, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_third_cell_shutters"; + name = "3d Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_x = 21; + dir = 8 + }, +/obj/machinery/button/flasher{ + dir = 8; + pixel_x = 22; + pixel_y = -9; + id_tag = "security_third_cell_flash"; + req_access = list("ACCESS_SECURITY") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"nlt" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"nlv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"nlx" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/paleblue, +/obj/structure/flora/pottedplant/smallcactus{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/machinery/light_construct{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"nlA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nlC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"nlI" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/titanium, +/area/guppy_hangar/start) +"nlJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/thirddeck) +"nlQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"nlS" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"nlW" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/obj/structure/sign/emergonly{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/directions/med{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"nlX" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/smg, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"nmb" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"nmf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"nmj" = ( +/turf/simulated/floor/reinforced/nitrogen, +/area/engineering/atmos) +"nmr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"nms" = ( +/obj/machinery/alarm/monitor/isolation/xenobio{ + alarm_id = "xenobio5_alarm"; + name = "Xenobiology Aqua Xenopen"; + pixel_y = 29 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/stasis_cage, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"nmu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"nmN" = ( +/obj/structure/ladder, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/space) +"nmP" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"nmS" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/atmos) +"nmT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"nmW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/bed/chair/padded/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"nnf" = ( +/obj/floor_decal/spline/fancy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"nnA" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_starboard) +"nnH" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar{ + id = "auxsolarsbridge"; + name = "Bridge Auxiliary Solar Array" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"nnI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/conveyor{ + dir = 8; + id = "bsa" + }, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "bsa_space"; + name = "Unknown Compartament Shell Loader"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/command/bsa) +"nnJ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"nnP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"nnQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"nnR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"nnY" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_teleport) +"noa" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"noj" = ( +/obj/structure/sign/warning/airlock{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar/bridge_port) +"non" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Central Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"nop" = ( +/obj/shuttle_landmark/ninja/deck2, +/turf/space, +/area/space) +"nor" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"nos" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"not" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/foreport) +"noF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/port) +"noH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/cooker/grill, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"noM" = ( +/turf/simulated/wall/prepainted, +/area/medical/office) +"noS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Toxins"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"noV" = ( +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"noY" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"npb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass/civilian{ + autoset_access = 0; + name = "Recreation Area" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/visitors) +"npf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"npl" = ( +/obj/floor_decal/corner/yellow/half, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"npu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"npy" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"npA" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"npC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"npE" = ( +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hop/cobed) +"npI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/water_cell) +"npK" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"npL" = ( +/obj/structure/table/reinforced, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/ignition{ + id_tag = "Xenobio"; + pixel_x = -6 + }, +/obj/item/wrench, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"npU" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"npY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"nqm" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/bronze, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"nqp" = ( +/obj/machinery/suit_cycler/mining, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"nqq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Shutters" + }, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"nqx" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"nqy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Steward's Room" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"nqB" = ( +/obj/item/stool/padded, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"nqC" = ( +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/sticky_pad/random, +/obj/structure/table/glass/boron, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"nqE" = ( +/obj/structure/sign/warning/radioactive{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"nqH" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/window/boron_reinforced{ + dir = 1 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"nqK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + controlled = 0; + dir = 1; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000; + pressure_checks = 2; + pressure_checks_default = 2; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d1port) +"nqM" = ( +/obj/floor_decal/corner/darkblue/half{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue{ + dir = 10 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"nqO" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"nqW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/steel, +/obj/random/technology_scanner, +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/obj/item/contraband/poster, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"nrb" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"nrg" = ( +/obj/structure/lattice, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nrk" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/laundry) +"nrm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nrt" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"nrA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"nrC" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + display_name = "Port Dock C"; + frequency = 1331; + id_tag = "rescue_shuttle_dock_airlock"; + pixel_x = -20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"nrG" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"nrI" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"nrJ" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"nrK" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"nrN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nrO" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Evidence Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"nrW" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"nsa" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "fd_starboard_pump" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"nsb" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "solar_starboard_pump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"nsd" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/bluegrid, +/area/rnd/servers) +"nsf" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"nsl" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"nsm" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/random/vendor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"nsv" = ( +/turf/simulated/wall/prepainted, +/area/engineering/locker_room) +"nsA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Cell One"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"nsB" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"nsD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"nsI" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Medical Reception"; + req_access = list("ACCESS_SENMED"); + autoset_access = 0 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"nsS" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"nsT" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/wardhallway) +"nsU" = ( +/obj/structure/table/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"ntg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/civilian, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"ntv" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/artbru, +/obj/item/reagent_containers/food/drinks/cans/artbru, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/storage/box/glasses/square, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"ntz" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"ntA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"ntB" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/monitoring) +"ntL" = ( +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"ntW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"ntX" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"ntZ" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"nuc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"nuj" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"nul" = ( +/obj/floor_decal/corner/red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Chief Steward"; + sort_type = "Chief Steward" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"nun" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/spot, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"nuC" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"nuD" = ( +/obj/structure/closet/secure_closet/atmos_sierra, +/obj/item/rpd, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"nuE" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"nuJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"nuQ" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"nvi" = ( +/obj/floor_decal/industrial/traffic/corner, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"nvl" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + icon_state = "map_vent_in"; + initialize_directions = 1; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1; + id_tag = "containment_out"; + external_pressure_bound = 0; + external_pressure_bound_default = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"nvp" = ( +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + display_name = "Second Deck Auxillary Dock"; + id_tag = "sd_starboard"; + name = "Second Deck Starboard Airlock Controller"; + pixel_x = -20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "sd_starboard_pump" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"nvx" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"nvy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"nvC" = ( +/obj/floor_decal/corner/black/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nvI" = ( +/obj/shuttle_landmark/ninja/deck4, +/turf/space, +/area/space) +"nvP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"nvR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"nvT" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/hangar/upper) +"nvV" = ( +/obj/machinery/sparker{ + id_tag = "Isocell2"; + pixel_x = -18 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"nvX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"nvZ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Shield Generator"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/shield/thirddeck) +"nwe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"nwj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"nwk" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"nwl" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"nwm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/computer/telecomms/monitor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"nwn" = ( +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/foreport) +"nwt" = ( +/obj/structure/table/woodentable/walnut, +/obj/random/action_figure, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"nwu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"nww" = ( +/obj/machinery/space_heater, +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/forestarboard) +"nwB" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nwE" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"nwG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"nwH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"nwJ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"nwQ" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/armory/lobby) +"nwR" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"nwZ" = ( +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"nxq" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"nxs" = ( +/obj/floor_decal/corner/red, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"nxu" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"nxx" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/firstdeck) +"nxy" = ( +/obj/structure/table/woodentable/maple, +/obj/item/paper_bin, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 4; + pixel_x = -24 + }, +/obj/item/pen, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"nxF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"nxI" = ( +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/firstdeck/foreport) +"nxJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nxM" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/port) +"nxN" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"nxP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"nxU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/structure/sign/warning/pods/south{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"nxX" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap/gift_wrap, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"nys" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"nyu" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/plating, +/area/quartermaster/office/post) +"nyw" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/constructable_frame/machine_frame, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"nyA" = ( +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/blue, +/obj/machinery/washing_machine{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"nyL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"nyP" = ( +/obj/floor_decal/corner/paleblue/full, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/cmo/cobed) +"nyQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"nyY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"nyZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"nza" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"nzu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/navbeacon/sierra/TD_fore1, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"nzv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"nzF" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/bridgedeck/starboard) +"nzL" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"nzU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"nzV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"nzW" = ( +/turf/simulated/wall/r_wall/hull, +/area/rnd/toxins) +"nzX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/green/bordercorner2, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/decal/cleanable/dirt, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"nAg" = ( +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"nAk" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24; + pixel_x = 8 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 1; + pixel_y = -24; + pixel_x = -2; + id_tag = "old_maintaince_privatedorm"; + name = "Lock" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"nAC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"nAD" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/padded/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"nAF" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"nAL" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"nAO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/scientist_sierra, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes/farwacubes, +/obj/item/storage/box/monkeycubes/neaeracubes, +/obj/item/storage/box/monkeycubes/stokcubes, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"nBj" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave{ + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"nBp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"nBy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"nBH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nBI" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"nBS" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"nBW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "selfdestruct"; + name = "Delta Code Access Blast Door" + }, +/obj/machinery/button/blast_door{ + id_tag = "selfdestruct"; + name = "Self Destruct Access Blast Door Control"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"nCh" = ( +/obj/floor_decal/corner/black{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/radio/phone/medbay, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"nCk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"nCl" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers/insulated, +/obj/item/reagent_containers/glass/beaker/large, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"nCo" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"nCp" = ( +/obj/random/vendor/contraband/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"nCx" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"nCA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"nCE" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"nCI" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/foreport) +"nCK" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"nCN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"nCP" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_permabrig_fitst_cell_shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"nDi" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"nDj" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"nDl" = ( +/obj/structure/table/rack, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "telecoms_s"; + name = "Telecoms Blast Door"; + pixel_y = -22 + }, +/obj/item/stock_parts/circuitboard/ntnet_relay, +/obj/item/stock_parts/circuitboard/telecomms/broadcaster, +/obj/item/stock_parts/circuitboard/telecomms/bus, +/obj/item/stock_parts/circuitboard/telecomms/bus, +/obj/item/stock_parts/circuitboard/telecomms/server, +/obj/item/stock_parts/circuitboard/telecomms/server, +/obj/item/stock_parts/circuitboard/telecomms/receiver, +/obj/item/stock_parts/circuitboard/telecomms/processor, +/obj/item/stock_parts/circuitboard/telecomms/processor, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"nDt" = ( +/obj/machinery/button/alternate/door/bolts{ + id_tag = "medsafe_aft"; + name = "safe room door-control"; + pixel_y = 32 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"nDA" = ( +/obj/item/ladder_mobile, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"nDB" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "ai_starboard_outer"; + name = "Engineering External Access" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"nDC" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/space) +"nDE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/reagentgrinder, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"nDN" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "CO23p_out"; + initialize_directions = 1; + internal_pressure_bound = 1000; + internal_pressure_bound_default = 1000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"nDP" = ( +/obj/structure/table/standard, +/obj/item/rolled_towel/fitness, +/obj/item/rolled_towel/fitness, +/obj/item/rolled_towel/fitness, +/obj/item/wrench, +/obj/item/stack/medical/bruise_pack, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/black/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"nEo" = ( +/obj/structure/largecrate, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"nEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"nEu" = ( +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"nEx" = ( +/obj/random/vendor/contraband/maintenance, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"nEy" = ( +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nEz" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"nEZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"nFc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"nFj" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/bar/cobed) +"nFk" = ( +/obj/floor_decal/corner/black/mono, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"nFl" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"nFm" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/port) +"nFp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"nFK" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/space_heater/stationary/on{ + pixel_y = 30; + set_temperature = 348.15 + }, +/obj/structure/bed/sauna_bench/middle/north, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"nFM" = ( +/obj/structure/bookcase/manuals/security, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/captain/beach) +"nGc" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/item/stack/material/glass{ + amount = 30 + }, +/obj/item/stack/material/glass{ + amount = 30 + }, +/obj/item/stack/material/glass/fifty, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"nGe" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/gas) +"nGi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"nGl" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"nGm" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/airlock_canisters) +"nGo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"nGt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"nGx" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/equipment) +"nGI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"nGO" = ( +/obj/machinery/light/spot, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"nGT" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/reagent_containers/food/snacks/candy/donor{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/snacks/candy/donor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"nGU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced, +/area/solar/bridge_starboard) +"nHd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/random/maintenance, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"nHg" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/storage/firstaid/stab, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/item/storage/mirror{ + dir = 8; + pixel_x = -1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/power/apc/super/critical{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"nHi" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"nHx" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod3/station) +"nHz" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"nHD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_sierra/junior, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"nHF" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/backstorage) +"nHI" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"nHJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"nHR" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "CO24p_in"; + injecting = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1port) +"nHX" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"nHZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"nIa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"nIc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"nIf" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"nIk" = ( +/obj/machinery/tele_beacon, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"nIo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"nIu" = ( +/obj/machinery/reagentgrinder, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"nIx" = ( +/obj/machinery/door/airlock/glass/security{ + id_tag = "detdoor"; + name = "Long Term Checkpoint"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/brig) +"nIB" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/forestarboard) +"nIK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"nIN" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/floodlight{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"nIS" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/photocopier, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"nJe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/random/ironing_board_structure, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"nJl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/aft) +"nJm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"nJn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance/bolted{ + autoset_access = 0; + id_tag = "sauna_maint"; + name = "Sauna Maintenance" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sauna) +"nJr" = ( +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8 + }, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"nJJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"nJX" = ( +/obj/floor_decal/corner/purple/three_quarters{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"nKb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"nKd" = ( +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + output_attempt = 1 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"nKk" = ( +/obj/structure/table/standard, +/obj/item/crowbar, +/obj/item/flame/lighter/random, +/obj/item/melee/baton/loaded, +/obj/item/screwdriver{ + pixel_y = 15 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"nKn" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"nKo" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"nKq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/machinery/computer/air_control{ + dir = 1; + name = "Nacelle Chamber Monitoring"; + sensor_name = "Chamber"; + sensor_tag = "ReacEng3" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"nKz" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch{ + id_tag = "tox_airlock_exterior"; + locked = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"nKB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"nKD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"nKE" = ( +/obj/structure/lattice, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nKQ" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"nKU" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "eng3"; + name = "First Deck Starboard Access"; + pixel_x = -21 + }, +/obj/machinery/power/apc/high/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"nLi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/navbeacon/sierra/TD_fore8, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"nLj" = ( +/turf/simulated/wall/r_wall/hull, +/area/storage/airlock_canisters) +"nLn" = ( +/obj/machinery/suit_cycler/security, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"nLq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"nLH" = ( +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"nLL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"nLM" = ( +/obj/item/stack/material/plasteel{ + amount = 20 + }, +/obj/item/stack/material/glass{ + amount = 20 + }, +/obj/item/stack/material/glass{ + amount = 20 + }, +/obj/item/stack/material/aluminium/ten, +/obj/item/stack/material/plastic{ + amount = 20 + }, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"nLX" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"nMa" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + dir = 4; + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "nuke_shuttle_dock_airlock"; + name = "exterior access button"; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/shuttle_landmark/reaper/dock, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"nMh" = ( +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"nMj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"nMk" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"nMC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"nMI" = ( +/obj/floor_decal/corner/red, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"nMP" = ( +/obj/machinery/button/holosign{ + id_tag = "chapel"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"nMQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"nMX" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"nNh" = ( +/obj/structure/closet/secure_closet/captains/sierra, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"nNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"nNj" = ( +/obj/structure/curtain/medical, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"nNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"nNm" = ( +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"nNq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"nNr" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"nNt" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/item/storage/candle_box/scented, +/obj/item/storage/candle_box/scented, +/obj/item/storage/candle_box, +/obj/item/storage/candle_box, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"nNF" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/monitoring) +"nNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"nNS" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod3/station) +"nNX" = ( +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"nOh" = ( +/obj/structure/table/standard, +/obj/item/stamp/hop, +/obj/item/sticky_pad/random, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"nOi" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"nOs" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/trash/semki, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"nOt" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"nOy" = ( +/obj/structure/bed/sofa/l/black{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"nOz" = ( +/obj/floor_decal/corner/red, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/device/synthesized_instrument/guitar, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"nOC" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nOL" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"nOM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"nOP" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"nOQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"nOV" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/rd) +"nOW" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"nOZ" = ( +/obj/structure/wall_frame, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"nPb" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"nPf" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"nPg" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "heads_meeting"; + name = "Meeting Room Window Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "meeting_windows" + }, +/turf/simulated/floor/plating, +/area/bridge/meeting_room) +"nPi" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"nPt" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/corner/purple/mono, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"nPx" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen/multi/cmd/captain, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/item/storage/secure/safe/captain_sierra{ + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"nPA" = ( +/obj/structure/closet/crate, +/obj/random/powercell, +/obj/random/powercell, +/obj/random/powercell, +/obj/decal/cleanable/cobweb2{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"nPC" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"nPN" = ( +/obj/floor_decal/borderfloor, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"nPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"nPX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/material/ashtray/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"nQb" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "pmdoor"; + name = "Head of Personnel"; + secured_wires = 1; + stripe_color = "#b7f27d" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"nQi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"nQr" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"nQs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"nQz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"nQL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"nRf" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/office) +"nRk" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"nRm" = ( +/obj/floor_decal/borderfloor, +/obj/machinery/light, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"nRw" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"nRy" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"nRA" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"nRD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/secure/briefcase, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"nRO" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"nRV" = ( +/obj/machinery/bookbinder, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"nSa" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"nSr" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/unary/vent_pump{ + controlled = 0; + dir = 4; + external_pressure_bound = 105; + icon_state = "map_vent_in"; + pump_direction = 0; + use_power = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"nSy" = ( +/obj/structure/dogbed, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/mob/living/simple_animal/hostile/commanded/rex, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"nSz" = ( +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/incinerator) +"nSA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/padded/purple{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"nSB" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"nSC" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"nSH" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"nSV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Warden"; + sort_type = "Warden" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"nSY" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"nTa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/bridge) +"nTl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"nTr" = ( +/obj/floor_decal/corner/black/border{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nTu" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/slide_projector, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"nTz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"nTC" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/machinery/door/firedoor, +/obj/paint/nt_white, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "toxins_petrov_shutters"; + name = "Mixing Chamber Blast Shutters" + }, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/gas) +"nTD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"nTE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"nTN" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"nTO" = ( +/obj/floor_decal/corner/purple/half, +/obj/machinery/light/spot, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"nTR" = ( +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"nUh" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"nUm" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"nUp" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/sparker{ + id_tag = "engines"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"nUq" = ( +/obj/structure/table/rack, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"nUv" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"nUw" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/sign/deck/first{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"nUA" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"nUE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"nUI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"nUJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Cell Two"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"nUL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"nUO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/chapel/mortuary) +"nVa" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"nVe" = ( +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "bridge_windows" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "bridge_ent"; + name = "Bridge Lockdown" + }, +/turf/simulated/floor/plating, +/area/bridge) +"nVh" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"nVj" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"nVr" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_north_con = 0.21; + tag_south = 1; + tag_south_con = 0.79; + tag_west = 2; + tag_north = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"nVu" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunications"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/computer) +"nVz" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/head) +"nVB" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"nVG" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"nVP" = ( +/obj/structure/barricade, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"nVW" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/item/anodevice{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/anodevice, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"nVY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"nWa" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/iaa) +"nWj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"nWl" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"nWt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"nWU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"nXa" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + target_pressure = 15000 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"nXn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"nXq" = ( +/obj/structure/ladder/up, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"nXt" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"nXu" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/sign/xenoflora{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"nXw" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"nXy" = ( +/obj/structure/dispenser, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"nXG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/fore) +"nXH" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"nYa" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"nYh" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3starboard) +"nYj" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"nYn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"nYD" = ( +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"nYL" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"nYM" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/power_monitor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"nYO" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nYR" = ( +/obj/shuttle_landmark/merc/dock, +/turf/space, +/area/space) +"nYS" = ( +/obj/floor_decal/corner/green/bordercorner, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"nZa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"nZb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"nZd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"nZf" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/airlock_electronics/brace, +/obj/item/airlock_electronics/brace, +/obj/item/airlock_electronics/brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/item/airlock_brace, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/material/twohanded/jack, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"nZi" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"nZk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"nZw" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod8/station) +"nZA" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/storage/eva) +"nZF" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/port) +"nZH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"nZI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"nZL" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"nZT" = ( +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/forestarboard) +"nZW" = ( +/obj/structure/closet/secure_closet/counselor{ + icon_state = "med" + }, +/obj/item/book/manual/psionics, +/obj/item/stack/wax{ + amount = 50 + }, +/obj/item/toy/figure/psychologist, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/storage/candle_box, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"oad" = ( +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1"; + init_color = "#aa5f61"; + color = "#aa5f61" + }, +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#aa5f61"; + color = "#aa5f61" + }, +/turf/simulated/open, +/area/hallway/primary/firstdeck/central_stairwell) +"oae" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"oaf" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"oah" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"oaj" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/tile/carpetred/ten, +/obj/item/stack/tile/carpetpurple/ten, +/obj/item/stack/tile/carpetorange/ten, +/obj/item/stack/tile/carpetgreen/ten, +/obj/item/stack/tile/carpetblue2/ten, +/obj/item/stack/tile/carpetblue/ten, +/obj/item/stack/tile/carpet/ten, +/obj/floor_decal/spline/plain/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"oam" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"oao" = ( +/obj/structure/closet/emcloset, +/obj/random/crayon, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"oaw" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/folder/nt, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"oax" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"oaA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"oaF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"oaH" = ( +/obj/structure/sign/emergonly{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/bed/chair/padded/teal{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/directions/med{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) +"oaI" = ( +/obj/machinery/space_heater, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"oaO" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"oaQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"oaX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"oaY" = ( +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"obe" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/medical/surgery/second) +"obf" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/maintenance, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"obk" = ( +/obj/floor_decal/corner/black{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"obm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/spider/stickyweb, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"obq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"obB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"obE" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"obG" = ( +/obj/landmark{ + name = "Observer-Start" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"obI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"obN" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"obP" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"obS" = ( +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"obT" = ( +/obj/floor_decal/corner/darkblue, +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"obZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"oca" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/test_room) +"oct" = ( +/obj/floor_decal/corner/black, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"ocu" = ( +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + name = "Gravitational Generator" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "gravgen-antirad-shielding"; + name = "Gravitational Generator Shielding" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"ocv" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ocw" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/carpet/green{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"ocE" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"ocG" = ( +/obj/structure/roller_bed, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"ocH" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"ocQ" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"ocW" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/random/closet, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"ocY" = ( +/obj/structure/bed/sofa/l/black, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"odj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"odm" = ( +/obj/structure/catwalk, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"odp" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"odq" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"odv" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"odw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/power/apc/critical{ + name = "west bump"; + dir = 8; + pixel_x = -21 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"odA" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"odC" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/device/megaphone, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"odF" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"odG" = ( +/obj/structure/closet/coffin/wooden, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/black/mono, +/obj/machinery/camera/network/second_deck{ + c_tag = "Chapel - Mortuary"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"odH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/airlock/command{ + id_tag = "rddoor"; + name = "Research Director"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#ffffff" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/heads/office/rd) +"odI" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/turf/simulated/floor/carpet/green, +/area/medical/wardhallway) +"odS" = ( +/turf/simulated/wall/prepainted, +/area/medical/infirmreception) +"oea" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"oed" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/material/clipboard, +/obj/item/folder/yellow, +/obj/item/storage/fancy/smokable/dromedaryco{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"oeg" = ( +/obj/machinery/organ_printer/robot/mapped, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/corner/grey_alt/three_quarters, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"oej" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/alternate/door{ + pixel_y = 9; + pixel_x = -27; + id_tag = "hangar_hallway_doors"; + name = "Starboard Airlocks Control" + }, +/obj/machinery/button/alternate/door{ + pixel_y = -7; + pixel_x = -27; + id_tag = "hangar_ts_doors"; + name = "Port Airlocks Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"oen" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/science{ + name = "Explorer Prep" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"oeo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"oet" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"oex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sauna) +"oeG" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oeI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/lime/bordercorner, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"oeM" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/bar/cobed) +"oeQ" = ( +/obj/machinery/telecomms/server/presets/medical, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"oeU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/engineering/atmos) +"oeV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"oeZ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/iaa/high_sec) +"ofb" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/mapped, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"ofg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"ofk" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/adherent) +"ofy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"ofG" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"ofH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "sd_starboard_pump" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ofJ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"ofK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "hangar_ts_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Visitors"; + id_tag = "hangar_hallway_doors"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"ofL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"ofN" = ( +/obj/shuttle_landmark/sierra/deck1/exploration_shuttle, +/turf/space, +/area/space) +"ofO" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ofP" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"ofQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"ofR" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"ofW" = ( +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"ofY" = ( +/obj/machinery/air_sensor/nacelle/first/co2, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"ogq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "petrov_shuttle_dock_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ogA" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"ogC" = ( +/turf/simulated/wall/prepainted, +/area/vacant/mess) +"ogG" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"ogH" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"ogN" = ( +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/foreport) +"ogT" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/maintenance, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar/upper) +"ogW" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/hallway) +"ohb" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_2_berth_hatch"; + name = "Escape Pod Two" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"ohj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"ohs" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"ohu" = ( +/obj/machinery/constructable_frame/computerframe, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"ohw" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"ohy" = ( +/obj/machinery/chem_master, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"ohz" = ( +/obj/structure/bed/chair/office/red{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"ohE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"ohM" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ohN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ohW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oie" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"oif" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"oig" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/office/post) +"oii" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/hangar/upper) +"oil" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"oin" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"oiu" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/item/material/twohanded/jack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack/dark, +/obj/item/ladder_mobile, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/obj/item/welder_tank, +/obj/item/stack/tile/floor{ + amount = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"oiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Control - Third Deck - Starboard"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"oiC" = ( +/obj/structure/table/rack, +/obj/item/aiModule/reset, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/southright{ + dir = 8; + name = "AI Maintenance" + }, +/obj/item/aiModule/nanotrasen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"oiO" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"oiW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"oja" = ( +/turf/simulated/floor/reinforced/hydrogen, +/area/engineering/atmos) +"ojh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_port" + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"ojk" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/visitors) +"ojo" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/bridge) +"oju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"ojv" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"ojy" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/barricade, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_access"; + name = "Virology Lab Access Console"; + req_access = list("ACCESS_VIRO"); + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/seconddeck/starboard) +"ojM" = ( +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/rd, +/obj/landmark/start{ + name = "Research Director" + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"ojN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"ojR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftstarboard) +"ojZ" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/black/mono, +/obj/item/storage/box/glasses/square, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"okd" = ( +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"okf" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"okg" = ( +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"okh" = ( +/obj/structure/lattice, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oki" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Aft Port"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"okj" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"okl" = ( +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"okm" = ( +/obj/floor_decal/ntlogo{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"okp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"okr" = ( +/obj/random/trash, +/obj/structure/window/basic, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"oku" = ( +/obj/structure/table/reinforced, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"okx" = ( +/obj/shuttle_landmark/escape_pod/start/pod11, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod11/station) +"okA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"okD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Bluespace Drive"; + req_access = newlist(); + secured_wires = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace) +"okE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + display_name = "Aft Dock (NanoTrasen)"; + id_tag = "petrov_shuttle_dock"; + pixel_x = 20; + pixel_y = 32; + req_access = list("ACCESS_PETROV"); + tag_exterior_door = "petrov_shuttle_dock_outer"; + tag_interior_door = "petrov_shuttle_dock_inner"; + tag_exterior_sensor = "petrov_shuttle_dock_sensor"; + tag_airpump = "petrov_shuttle_dock_pump" + }, +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/maintenance/fourthdeck/aft) +"okF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"okK" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/woodentable, +/obj/item/folder/yellow{ + pixel_y = -4; + pixel_x = 9 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = -4; + pixel_x = -8 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"okN" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"okX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"okY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"okZ" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"olf" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced, +/area/space) +"olg" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"olu" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"olw" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"oly" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/radioactive{ + dir = 8; + pixel_x = 32 + }, +/obj/machinery/space_heater, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"olO" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"olX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"oma" = ( +/obj/structure/sign/warning/secure_area{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"omc" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = -9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"omf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"omi" = ( +/obj/fluid_mapped, +/obj/item/clothing/under/swimsuit/green, +/obj/item/bananapeel, +/obj/random/junk, +/mob/living/simple_animal/aquatic/fish/grump, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"omr" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"omy" = ( +/turf/simulated/wall/prepainted, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"omE" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/spline/fancy/black, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"omF" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/door_timer/cell_3{ + pixel_x = 32 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"omG" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Briefing Room"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"omT" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/aftstarboard) +"omW" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"omZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"ona" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"onp" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 1; + tag_south = 2; + tag_west = 3 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"ont" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"onv" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Substation - First Deck" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"onC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"onG" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"onI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"onJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/office) +"onN" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"onW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Storage"; + req_access = newlist() + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"onX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"onY" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"oob" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/closet, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"ooq" = ( +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"oor" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"oou" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"oow" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"ooC" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/obj/machinery/vending/snack, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"ooE" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_access = newlist(); + dir = 1 + }, +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_access = newlist(); + dir = 2 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobio4"; + name = "Containment Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"ooG" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"ooK" = ( +/obj/structure/table/standard, +/obj/item/storage/bible, +/obj/floor_decal/corner/black/full, +/obj/machinery/camera/network/security{ + c_tag = "Security - OFD"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"ooV" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"ooZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"opb" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"opd" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/stock_parts/circuitboard/arcade/battle, +/obj/item/stock_parts/circuitboard/arcade/orion_trail, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"ope" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"opm" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"opr" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"opv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"opD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"opE" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/medical{ + name = "Patient Ward" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"opF" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"opM" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/compactor) +"opR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"opX" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/firstdeck) +"oqb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"oqd" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s" + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod8/station) +"oqf" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/black/border, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"oqk" = ( +/obj/machinery/computer/ship/navigation{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"oqp" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"oqq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"oqr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"oqs" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id_tag = "xenobio3_vent"; + name = "Chamber Vent" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"oqu" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/floodlight{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"oqv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"oqx" = ( +/obj/structure/hygiene/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"oqy" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"oqA" = ( +/obj/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"oqC" = ( +/obj/machinery/lapvend{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"oqK" = ( +/obj/structure/closet/emcloset, +/obj/item/tank/air, +/obj/item/wrench, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"oqU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"ora" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"ore" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"orf" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 4; + tag_north = 3; + tag_south = 2; + tag_west = 1 + }, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oro" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"oru" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/staging) +"orC" = ( +/obj/structure/table/woodentable/mahogany, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"orR" = ( +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"orY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"osm" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = -14; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"osy" = ( +/obj/machinery/atmospherics/tvalve/mirrored/digital{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"osJ" = ( +/obj/shuttle_landmark/merchant/out, +/turf/space, +/area/space) +"osL" = ( +/obj/machinery/door/window/westright, +/obj/machinery/door/window/eastright, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sauna) +"osP" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/central_stairwell) +"ote" = ( +/obj/landmark/start{ + name = "Captain" + }, +/obj/structure/bed/sofa/r/blue{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 9 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"oti" = ( +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"otj" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"otk" = ( +/obj/structure/closet/l3closet/virology, +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"otl" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"oto" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"otx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"otE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"otI" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"otJ" = ( +/obj/structure/closet/crate/medical, +/obj/item/bodybag/rescue, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"otN" = ( +/obj/machinery/floodlight{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/airlock_sensor/airlock_interior{ + frequency = 1331; + id_tag = "calypso_shuttle_interior_sensor"; + master_tag = "calypso_shuttle"; + pixel_x = -25; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/airlock) +"otO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"otS" = ( +/obj/structure/bed/chair/padded/green{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"otU" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ouc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + dir = 8; + autoset_access = 0; + name = "Central Stairwell" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/central_stairwell) +"oue" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"ouf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"oum" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/flasher{ + dir = 4; + id_tag = "ai_core"; + pixel_x = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"ouo" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"ouq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/smoking{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"out" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"ouu" = ( +/obj/structure/table/standard, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"ouw" = ( +/turf/simulated/wall/r_wall/hull, +/area/medical/mentalhealth/therapyroom) +"ouA" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"ouB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"ouD" = ( +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"ouJ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"ouU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"ouV" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"ouZ" = ( +/obj/machinery/cell_charger, +/obj/item/cell/standard, +/obj/random/powercell, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/steel_reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"ove" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ovl" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"ovq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"ovu" = ( +/obj/structure/table/woodentable/maple, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"ovz" = ( +/obj/item/paper/sticky{ + name = "I am door"; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/vacant/cargo) +"ovB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ovG" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"ovI" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"ovQ" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"ovT" = ( +/obj/machinery/computer/modular/preset/aislot/sysadmin{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"ovV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + locked = 1 + }, +/obj/item/taperoll/engineering/applied, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/dungeon) +"owd" = ( +/obj/machinery/computer/ship/disperser{ + dir = 4 + }, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"owj" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/air_sensor{ + id_tag = "BSDrive" + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"owl" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/storage/eva) +"ows" = ( +/obj/structure/bed/chair/rounded/blue, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"owx" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"owy" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Fore Hallway - OFD" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"owB" = ( +/obj/structure/table/reinforced, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"owI" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"owN" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"owS" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/equipment) +"owU" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"owY" = ( +/obj/structure/catwalk, +/obj/structure/table/standard, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"oxa" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"oxc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"oxh" = ( +/obj/structure/table/rack, +/obj/item/rig/medical/equipped, +/obj/item/clothing/mask/gas/half, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright{ + dir = 4; + name = "RIG"; + req_access = newlist() + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"oxi" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oxn" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"oxu" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"oxy" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"oxC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/command{ + name = "Central Stairwell" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/bridgedeck/central_stairwell) +"oxE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oxG" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/surgery) +"oxV" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/table/rack, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/screwdriver, +/obj/item/crowbar, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"oxW" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "hangar_ts_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Visitors"; + id_tag = "hangar_hallway_doors"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"oyb" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"oyg" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oyl" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/lounge/upper) +"oym" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"oyp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"oys" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level2) +"oyB" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"oyH" = ( +/obj/structure/table/woodentable/walnut, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 18; + pixel_x = -7 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/toy, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"oyN" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"oyP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"oyR" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ozf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng1_inner"; + name = "Third Deck Starboard Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d3starboard) +"ozh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"ozj" = ( +/obj/structure/table/woodentable_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"ozl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"ozr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Medical Reception" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"ozv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"ozA" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"ozF" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"ozH" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "sd_port_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "sd_port_sensor"; + master_tag = "sd_port"; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"ozR" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"oAb" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"oAc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oAe" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/floor_decal/carpet/green{ + dir = 4 + }, +/obj/floor_decal/carpet/green{ + dir = 1 + }, +/obj/floor_decal/carpet/green{ + dir = 5 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"oAi" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"oAj" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/mask/gas/half, +/obj/item/tank/oxygen_emergency_extended, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"oAk" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "null"; + name = "Captain's office"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/captain) +"oAm" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"oAy" = ( +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oAB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"oAD" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"oAH" = ( +/turf/simulated/wall/prepainted, +/area/command/exploration_leader) +"oAM" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"oAZ" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"oBg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"oBh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"oBk" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ + id = "private_cafe_windows" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/cafe/upper) +"oBo" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"oBC" = ( +/obj/structure/lattice, +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/navbeacon/sierra/TD_fore4, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"oBR" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hydroponics) +"oBS" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"oBW" = ( +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#b19664"; + color = "#b19664" + }, +/turf/simulated/open, +/area/hallway/primary/thirddeck/central_stairwell) +"oCa" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"oCi" = ( +/obj/shuttle_landmark/skipjack/deck5, +/turf/space, +/area/space) +"oCm" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oCq" = ( +/obj/structure/bed/sofa/m/beige{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"oCu" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_6" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"oCv" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bridge_windows" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"oCy" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/recharger, +/obj/machinery/camera/network/security{ + c_tag = "Security - Armory Lobby"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"oCI" = ( +/obj/structure/bed/chair/office/comfy/red{ + dir = 8 + }, +/obj/landmark/start{ + name = "Head of Security" + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 4; + id_tag = "hosdoor"; + name = "Office Door Control"; + pixel_x = -24; + pixel_y = 21; + req_access = list("ACCESS_HEAD_OF_SECURITY") + }, +/obj/machinery/keycard_auth/sierra{ + pixel_x = -25; + pixel_y = -23 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"oCK" = ( +/obj/structure/adherent_bath, +/obj/structure/sign/warning/fire{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"oCT" = ( +/obj/machinery/door/airlock/civilian{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"oCW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"oCZ" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"oDb" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"oDc" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/lava/blue{ + pixel_y = -2; + pixel_x = 7 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"oDh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"oDs" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 15 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/storage/box/mousetraps, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"oDz" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"oDE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"oDI" = ( +/obj/floor_decal/corner/red, +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"oDJ" = ( +/obj/machinery/disposal, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"oDO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"oDP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/obj/machinery/camera/network/hangar{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"oDQ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"oDU" = ( +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"oDV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"oDY" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "eng2"; + name = "Third Deck Port Nacelle Access"; + pixel_x = -21; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/high/critical{ + pixel_y = -24; + name = "south bump" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Fourth Deck - Port Necelle - Airlock"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"oEg" = ( +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"oEl" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"oEm" = ( +/obj/structure/table/woodentable/maple, +/obj/item/storage/box/cups, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"oEn" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"oEp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"oEA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"oED" = ( +/obj/structure/bed/sofa/r/beige{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"oEH" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/forensic/lab) +"oEN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/obj/structure/sign/warning/moving_parts{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office/post) +"oEO" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/device/flashlight/lamp/lava/red{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"oEU" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"oEW" = ( +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"oFa" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"oFb" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Surgery - Operation Theatre One"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"oFf" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology/ward) +"oFg" = ( +/obj/decal/cleanable/blood, +/obj/floor_decal/industrial/outline/red, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"oFq" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"oFs" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"oFB" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/network/command{ + c_tag = "Command - Bridge Entrance"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"oFI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"oFK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"oFS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"oFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/foreport) +"oGe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"oGg" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"oGh" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 8 + }, +/turf/space, +/area/space) +"oGi" = ( +/obj/structure/table/marble, +/obj/item/material/chopping_board, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"oGo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"oGs" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Internal Affairs Agent"; + sort_type = "Internal Affairs Agent" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"oGx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"oGC" = ( +/obj/machinery/disposal, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/rnd/office) +"oGD" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"oGG" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"oGL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"oGN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"oGP" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/floodlight{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"oGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"oGV" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"oGX" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"oGZ" = ( +/obj/structure/fitness/punchingbag, +/obj/structure/sign/poster/nyc/wanted{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"oHh" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 21; + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"oHt" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"oHu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"oHC" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/freezer, +/area/vacant/sauna) +"oHF" = ( +/obj/machinery/door/airlock/civilian{ + name = "Cafe" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"oHN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"oHQ" = ( +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"oHV" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"oHY" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"oIf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"oIh" = ( +/obj/machinery/organ_printer/flesh/mapped, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"oIi" = ( +/obj/structure/stairs/east, +/obj/structure/sign/directions/bridge{ + pixel_y = -24; + dir = 4 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -31 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"oIo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"oIv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/turret_protected/ai_cyborg_station) +"oIB" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"oIE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"oIG" = ( +/obj/structure/railing/mapped, +/obj/structure/bed/sofa/l/blue, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"oIZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"oJb" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "observation_shielding"; + name = "Observation Shield" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/dungeon_master_lounge) +"oJd" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/port) +"oJi" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"oJp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/computer/air_control{ + dir = 8; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensor_name = "Tank"; + sensor_tag = "n2_sensor" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oJs" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/containment) +"oJt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"oJw" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "rd_windows" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/rd) +"oJx" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"oJA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"oJH" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/power/smes/buildable/preset/sierra/hangar{ + RCon_tag = "Substation - Shield" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shield/thirddeck) +"oJN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"oJT" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"oKq" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "SupermatterPort"; + name = "Reactor Blast Door" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"oKt" = ( +/obj/machinery/telecomms/server/presets/engineering, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"oKz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oKA" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/structure/ladder/up, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"oKB" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/structure/sign/poster/nyc/wanted{ + pixel_x = 32 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Aft Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"oKG" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 1; + id_tag = "ai_core_pump" + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"oKJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"oKN" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/corner/grey/three_quarters{ + dir = 4 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"oKR" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"oKT" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/folder/nt, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/floor_decal/carpet/blue, +/obj/item/stamp/internalaffairs{ + pixel_y = -2 + }, +/obj/item/stamp/denied{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"oLd" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1; + color = "#393f43"; + init_color = "#393f43" + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"oLh" = ( +/obj/structure/table/steel, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/rcd, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Chief Engineer"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"oLi" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"oLl" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"oLo" = ( +/obj/shuttle_landmark/escape_pod/start/pod2, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod2/station) +"oLp" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"oLr" = ( +/obj/machinery/computer/mining, +/obj/machinery/door/firedoor, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"oLA" = ( +/obj/item/stool/padded/red, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/aftstarboard) +"oLF" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"oLN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oLY" = ( +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"oMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"oMg" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/bed/chair/armchair/purple, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"oMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"oMx" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"oMG" = ( +/obj/machinery/vending/tool{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"oMI" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"oMJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/sleeper, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"oMM" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"oMW" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/hangar_stairs) +"oMX" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"oMY" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 10 + }, +/obj/structure/dogbed, +/mob/living/simple_animal/passive/corgi/Ian, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"oNi" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"oNj" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/book/manual/solgov_law, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"oNm" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"oNn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"oNp" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "o2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/atmos) +"oNF" = ( +/obj/structure/holoplant, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"oNN" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_port) +"oNQ" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/railing/mapped, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"oNZ" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/suits) +"oOc" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oOh" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"oOi" = ( +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"oOk" = ( +/obj/structure/bookcase/manuals/security, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"oOm" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oOn" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/storage/primary) +"oOr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"oOu" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"oOB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Utility - Second Backup" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"oOH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"oOJ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"oOK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_teleport) +"oOL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"oOO" = ( +/obj/structure/table/rack, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/item/rig/command/hos/equipped, +/obj/item/clothing/mask/gas/half, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "iaaright"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"oOR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"oOW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"oOX" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"oOZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"oPi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/space_heater{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"oPr" = ( +/obj/structure/table/steel, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/deck/cards, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"oPv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"oPB" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"oPF" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"oPJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway) +"oPP" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod8/station) +"oPZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"oQb" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"oQc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"oQg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"oQh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/camera/network/fourth_deck{ + dir = 1; + c_tag = "Fourth Deck - Central Hallway" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"oQi" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/bridge) +"oQn" = ( +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"oQw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"oQx" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"oQB" = ( +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/office/green{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"oQE" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical/mortus{ + name = "Morgue"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"oQH" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake{ + pixel_y = 6; + pixel_x = 8 + }, +/obj/item/handcuffs, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"oQJ" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"oQN" = ( +/obj/paint_stripe/red, +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/wallframe_spawn/reinforced/polarized{ + id = "forensicswindow" + }, +/turf/simulated/floor/plating, +/area/security/sierra/forensic) +"oQQ" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/firstdeck/centralstarboard) +"oRb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/grey/full, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, +/obj/item/reagent_containers/food/drinks/teapot{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"oRl" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"oRs" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + initial_id_tag = "aux_fusion_plant" + }, +/turf/simulated/floor/reinforced, +/area/vacant/prototype/engine) +"oRu" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = -24; + dir = 1 + }, +/obj/structure/sign/directions/infirmary{ + pixel_y = -31; + dir = 1 + }, +/obj/structure/sign/directions/science{ + pixel_y = -38; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"oRw" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/decal/cleanable/blood, +/obj/decal/cleanable/blood/drip, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"oRE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"oRP" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"oRR" = ( +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"oRX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8; + req_access = newlist() + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"oSc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oSi" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"oSk" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"oSw" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"oSE" = ( +/obj/floor_decal/corner/black{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"oSI" = ( +/obj/structure/closet, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"oSP" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod8/station) +"oSU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "fuel1p_in"; + name = "Fuel Supply Control"; + output_tag = "fuel1p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngPlasma1" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"oSZ" = ( +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oTb" = ( +/obj/structure/flora/pottedplant/smalltree, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"oTc" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"oTm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"oTo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"oTr" = ( +/obj/structure/bed/chair/office/comfy/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"oTt" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/foreport) +"oTx" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical{ + name = "Critical Wing"; + id_tag = "med_crit_d2" + }, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_crit2"; + name = "Infirmary Staging Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"oTB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/security{ + id_tag = "security_entry_airlock_enter"; + dir = 8; + name = "Security Entry" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"oTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"oTF" = ( +/obj/structure/bed/sofa/l/brown, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 9 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"oTG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"oTI" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"oTM" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"oTP" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/black/border, +/obj/structure/closet/cabinet, +/obj/item/book/manual/nt_sop, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"oTR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/air_control{ + input_tag = "containment_in"; + name = "Containment Chamber Gas Monitor"; + output_tag = "containment_out"; + sensor_name = "Containment Chamber"; + sensor_tag = "containment_sensor" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"oTT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"oUc" = ( +/obj/structure/sign/warning/airlock{ + dir = 8 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_starboard) +"oUi" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"oUl" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "fusion_observation" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/control) +"oUm" = ( +/obj/machinery/disposal, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"oUp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"oUq" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"oUx" = ( +/obj/structure/table/woodentable, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/item/paper{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/item/paper{ + pixel_y = -5; + pixel_x = 5 + }, +/obj/item/paper{ + pixel_x = -2 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"oUH" = ( +/obj/machinery/atmospherics/valve{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"oUI" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"oUL" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"oUS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"oUW" = ( +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"oVg" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"oVB" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"oVE" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"oVJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"oVL" = ( +/obj/machinery/vending/dinnerware{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"oVN" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"oVS" = ( +/obj/machinery/organ_printer/robot/mapped, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"oVV" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"oVY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/equipment) +"oWd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"oWe" = ( +/obj/machinery/light/spot, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/corner/lime/mono, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"oWj" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/masks, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"oWk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"oWo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"oWv" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/firstdeck/forestarboard) +"oWy" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/bed/sauna_bench/middle/north, +/obj/item/device/flashlight/lamp/lava/orange{ + pixel_y = 3; + pixel_x = 9 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"oWC" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/starboard) +"oWO" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"oWS" = ( +/obj/machinery/suit_storage_unit/explorer, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"oWT" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"oWW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"oXn" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"oXp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/navbeacon/sierra/SD_fore5, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"oXz" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"oXA" = ( +/obj/structure/bed/chair/office/comfy/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2, +/obj/machinery/keycard_auth/sierra{ + pixel_x = 3; + pixel_y = -22 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 1; + id_tag = "pmdoor"; + name = "Office Door Control"; + pixel_x = -9; + pixel_y = -22; + req_access = list("ACCESS_HEAD_OF_PERSONNEL") + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "hop_windows"; + pixel_x = 12; + pixel_y = -21 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"oXI" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"oXJ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"oXK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"oXL" = ( +/obj/structure/lattice, +/obj/structure/rubble, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/open, +/area/maintenance/thirddeck/aftport) +"oXQ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"oXS" = ( +/obj/floor_decal/corner/darkblue, +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"oXV" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/machinery/microwave, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"oYa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"oYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"oYf" = ( +/obj/item/storage/secure/safe{ + pixel_x = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"oYh" = ( +/obj/structure/closet/radiation, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"oYi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"oYr" = ( +/obj/random/closet, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"oYB" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"oYP" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/command/exploration_leader) +"oYZ" = ( +/obj/floor_decal/steeldecal/steel_decals9, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"oZb" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"oZc" = ( +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"oZg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"oZh" = ( +/obj/structure/table/reinforced, +/obj/machinery/body_scan_display{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/freezer, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"oZi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"oZl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"oZs" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"oZu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/item/scalpel/basic, +/obj/item/retractor, +/turf/simulated/floor/tiled/white/monotile, +/area/vacant/gambling) +"oZz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - R-UST - Entry"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"oZK" = ( +/obj/structure/sign/warning/radioactive{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"oZL" = ( +/obj/structure/hygiene/shower, +/obj/structure/curtain/open/shower, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"oZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "petrov_shuttle_dock_outer"; + name = "Docking Port Airlock"; + autoset_access = 0; + req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")) + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"oZT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"oZV" = ( +/obj/floor_decal/corner/red, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"oZY" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"paa" = ( +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/machinery/fabricator{ + fab_status_flags = 1 + }, +/obj/item/stack/material/steel/fifty{ + pixel_x = -5 + }, +/obj/item/stack/material/glass/fifty{ + pixel_x = 7 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/stack/material/plastic/ten, +/obj/item/stack/material/plastic/ten, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"pad" = ( +/obj/structure/sign/warning/deathsposal, +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_l) +"pag" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/utility) +"pah" = ( +/obj/machinery/light, +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"pal" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"pam" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"paF" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"paK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"paZ" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine thruster blast doors."; + id_tag = "ThrusterVents"; + name = "Thruster Blast Door control"; + req_access = list("ACCESS_ENGINE_EQUIP"); + pixel_x = -24; + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pbf" = ( +/obj/floor_decal/corner/purple/half, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"pbh" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"pbl" = ( +/obj/structure/curtain/medical, +/obj/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"pbp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"pbu" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"pbx" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_3_pump" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 8; + id_tag = "escape_pod_3"; + name = "escape pod three controller"; + pixel_x = 20; + tag_door = "escape_pod_3_hatch"; + frequency = 1380 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/grey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"pbz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"pbE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"pbH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pbP" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"pbU" = ( +/obj/floor_decal/corner/green, +/obj/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"pbW" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pbY" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"pcb" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_guide, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"pcc" = ( +/obj/structure/catwalk, +/obj/random/trash, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"pch" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"pck" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"pco" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/eva) +"pcp" = ( +/obj/machinery/vending/medical/sierra{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"pcB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"pcC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"pcG" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pcH" = ( +/obj/machinery/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"pcP" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"pcQ" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/item/device/camera, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"pdd" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"pdl" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"pdt" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/barbecue{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"pdu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"pdw" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"pdD" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"pdE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pdF" = ( +/obj/machinery/papershredder, +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"pdI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"pdJ" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/bunk) +"pdK" = ( +/obj/structure/bed/chair/shuttle/blue{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/shuttle_landmark/sierra/hangar/exploration_shuttle, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"pdL" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/expedition) +"pdX" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/random/powercell, +/obj/random/powercell, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"pdZ" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"ped" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/foreport) +"pej" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Quartermaster's Office"; + sort_type = "Quartermaster's Office" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"pel" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"pen" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"peo" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"pep" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"pev" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"pex" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"peD" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"peF" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"peH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"peK" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"peL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"peP" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/electropack, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"peQ" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"peU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"peY" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"pfc" = ( +/obj/floor_decal/solarpanel, +/obj/machinery/power/solar{ + id = "auxsolarsport"; + name = "Aft Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/solar/port) +"pfe" = ( +/obj/structure/fitness/punchingbag, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"pfh" = ( +/obj/structure/sign/warning/compressed_gas, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3port) +"pfn" = ( +/obj/machinery/vending/parts/public{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"pfo" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pfq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer, +/obj/item/device/integrated_electronics/analyzer{ + pixel_x = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"pfr" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "do_windows" + }, +/obj/machinery/door/blast/shutters/open{ + name = "QM Office Shutters"; + id_tag = "qm_office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/deckofficer) +"pfw" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "xenobio_desk"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"pfy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"pfE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/storage/toolbox/emergency, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = -28 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"pfR" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"pfT" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/chair/pew/left, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"pfV" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"pfZ" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"pgb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"pge" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"pgg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"pgn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"pgt" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"pgv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "Skynet_launch"; + name = "Mech Bay"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/assembly/chargebay) +"pgw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + dir = 1; + name = "Therapy Room" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/mentalhealth/therapyroom) +"pgC" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"pgI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access = newlist() + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar) +"pgK" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Gravity Generator - SMES"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"pgN" = ( +/obj/machinery/air_sensor{ + id_tag = "xenobot_sensor"; + machine_name = "Xenoflora Enviroment" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/xenoflora) +"pgO" = ( +/obj/machinery/space_heater, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"pgQ" = ( +/obj/floor_decal/carpet, +/obj/floor_decal/carpet{ + dir = 8 + }, +/obj/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"pgS" = ( +/obj/structure/bed/chair/padded/blue, +/obj/structure/sign/dedicationplaque/sierra{ + pixel_y = 29 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pgU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Security Checkpoint" + }, +/obj/machinery/door/window/southleft{ + autoset_access = 0; + name = "Security Checkpoint" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"pgW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"pgY" = ( +/obj/structure/closet/secure_closet/chaplain_sierra, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"pha" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"phb" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"phc" = ( +/obj/floor_decal/corner/black/full, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"phi" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/vacant/mess) +"phs" = ( +/obj/structure/closet/secure_closet/chief_steward_sierra, +/obj/item/storage/slide_projector, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"phx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/curtain{ + color = "#aa0000" + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"phE" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"phJ" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"phN" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"phR" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/sauna) +"phV" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/suplocker_room) +"phW" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pih" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"pij" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"pik" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/machinery/seed_storage/xenobotany{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"pin" = ( +/obj/decal/cleanable/spiderling_remains, +/obj/item/clothing/mask/gas/half, +/obj/item/tank/oxygen_emergency_extended, +/obj/item/extinguisher/mini, +/obj/spider/stickyweb, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"pip" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"piy" = ( +/obj/machinery/mineral/unloading_machine, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"piA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/bed/chair/padded/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"piK" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/bed/chair/padded/purple, +/obj/floor_decal/industrial/traffic{ + dir = 8; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"piM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"pjb" = ( +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pje" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"pjf" = ( +/obj/structure/bed/chair/armchair/black{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"pjg" = ( +/obj/machinery/atmospherics/tvalve/mirrored/digital{ + name = "phoron bypass valve" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "observation_shielding"; + pixel_x = -24; + pixel_y = 24 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"pjj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"pjk" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"pjt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/green, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pjy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_teleport) +"pjA" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"pjE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pjF" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"pjG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"pjL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"pjN" = ( +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "qm_warehouse"; + name = "Warehouse Shutters Control"; + pixel_x = 24; + req_access = list("ACCESS_CARGO") + }, +/obj/machinery/mech_recharger, +/mob/living/exosuit/premade/powerloader/old, +/obj/floor_decal/spline/plain/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"pjW" = ( +/turf/simulated/open, +/area/hallway/primary/firstdeck/aft_stairwell) +"pjX" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "PetrovBiohazard"; + name = "Petrov Biohazard Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/airlock) +"pkb" = ( +/turf/simulated/wall/prepainted, +/area/vacant/gambling) +"pke" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"pkh" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"pkj" = ( +/obj/floor_decal/techfloor, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = -23 + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "medsafe"; + name = "safe room door-control"; + pixel_y = -23 + }, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"pkl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"pkq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"pku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"pkw" = ( +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/forestarboard) +"pky" = ( +/obj/structure/bed/chair/padded/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"pkC" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaaright" + }, +/obj/structure/filingcabinet{ + pixel_x = -6 + }, +/obj/structure/filingcabinet{ + pixel_x = 5 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "iaadoorright"; + name = "Office Door Control"; + pixel_x = 5; + pixel_y = 24; + req_access = list("ACCESS_IAA") + }, +/obj/machinery/button/windowtint{ + id = "iaaright"; + pixel_x = -5; + pixel_y = 24 + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 9 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"pkM" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s"; + dir = 1 + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod10/station) +"pkZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"plb" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"plk" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/inactive{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"plt" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "o22p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"plu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/port) +"plv" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/space, +/area/space) +"plz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"plB" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "bridge_outer_windows" + }, +/turf/simulated/floor/plating, +/area/bridge/nano) +"plE" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for engine core."; + dir = 4; + id_tag = "BSD_windows"; + name = "Bluespace Driver Chamber Windows Control"; + pixel_x = -23; + pixel_y = 8 + }, +/obj/machinery/button/alternate/door/bolts{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + dir = 4; + id_tag = "BSD_airlock"; + name = "Containment Hatch Bolt Control"; + pixel_x = -23; + pixel_y = -5; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"plF" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"plN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"plR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"plT" = ( +/obj/structure/table/standard, +/obj/item/storage/box/checkers/chess, +/obj/item/storage/box/checkers/chess/red, +/obj/item/board, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"plU" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"pma" = ( +/obj/floor_decal/carpet{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black, +/obj/floor_decal/carpet, +/obj/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/garden_room) +"pmj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_l) +"pmk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/ce/cobed) +"pmm" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_6_hatch"; + name = "Escape Pod Seven Hatch" + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod6/station) +"pmn" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pmo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/engine_setup/pump_max, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pmp" = ( +/obj/machinery/light, +/obj/floor_decal/techfloor, +/obj/structure/closet/crate/freezer/rations, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"pmF" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/button/flasher{ + id_tag = "security_pod_flash"; + name = "Chamber Flasher"; + pixel_x = 28; + pixel_y = 10; + dir = 8; + req_access = list("ACCESS_SECURITY") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"pmJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"pmK" = ( +/obj/wallframe_spawn/reinforced, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"pmO" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"pmR" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"pmT" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"pmV" = ( +/obj/structure/table/standard, +/obj/random/clipboard, +/obj/item/storage/briefcase, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"pmW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/green{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pmX" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "escape_pod_5_pump" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"pno" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"pnp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"pnv" = ( +/obj/structure/closet/walllocker/secure_closet/explo_gun{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"pnw" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"pnx" = ( +/obj/structure/table/standard, +/obj/item/defibrillator/loaded, +/obj/item/auto_cpr, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Critical Wing - Reanimation"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"pnD" = ( +/obj/floor_decal/industrial/hatch/red, +/obj/structure/iv_stand, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"pnE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pnF" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"pnG" = ( +/obj/structure/table/rack, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/storage/plants, +/obj/item/storage/plants, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/plant, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/item/material/hatchet, +/obj/item/material/hatchet, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/shuttle_beacon, +/obj/item/shuttle_beacon, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/teal, +/obj/item/stack/flag/teal, +/obj/item/stack/flag/red, +/obj/item/stack/flag/red, +/obj/item/stack/flag/green, +/obj/item/stack/flag/green, +/obj/item/stack/flag/blue, +/obj/item/stack/flag/blue, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"pnI" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/science{ + name = "Exploration Equipment"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"pnK" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"pnM" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"pnT" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"pnU" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pnV" = ( +/obj/machinery/air_sensor{ + id_tag = "n2o_sensor" + }, +/turf/simulated/floor/reinforced/n20, +/area/engineering/atmos) +"pob" = ( +/obj/structure/table/standard, +/obj/item/paper{ + pixel_x = 4 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = -2 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pom" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"pop" = ( +/turf/simulated/wall/r_wall/hull, +/area/hydroponics) +"pou" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"pow" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"poB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/crate/plastic, +/obj/item/paper/sierrau, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"poV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"poX" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/corner/red/bordercee{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"poY" = ( +/obj/structure/railing/mapped{ + init_color = "#aed18b"; + color = "#aed18b" + }, +/turf/simulated/open, +/area/hallway/primary/seconddeck/central_stairwell) +"ppb" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/cargo) +"pph" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"ppn" = ( +/obj/floor_decal/techfloor, +/obj/structure/bed/chair/comfy/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"pps" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"ppx" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"ppC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"ppE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/level2) +"ppM" = ( +/obj/structure/table/steel, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/storage/excavation, +/obj/item/device/measuring_tape, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"ppV" = ( +/obj/machinery/button/windowtint{ + id = "do_windows"; + pixel_x = -21; + pixel_y = -24; + dir = 1 + }, +/obj/floor_decal/corner/yellow/half, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"pqb" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"pqy" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"pqD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/port) +"pqE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"pqF" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/gym) +"pqG" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"pqK" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the cargo doors."; + dir = 1; + id_tag = "researchdoor_interior"; + name = "Research Door Control"; + pixel_x = 6; + pixel_y = -24; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -6; + pixel_y = -24; + req_access = list("ACCESS_RESEARCH") + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"pqM" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/garden_room) +"pqN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"pqP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"pqQ" = ( +/turf/simulated/wall/prepainted, +/area/engineering/atmos/storage) +"pqS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"pqT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"pqU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"prk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"prl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"prr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"prF" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"prJ" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"prK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"prO" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"prP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"prT" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"prX" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"prY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"psd" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/button/alternate/door{ + id_tag = "med_crit_d1"; + dir = 4; + pixel_y = -8; + pixel_x = -24; + name = "Critical Wing First Exit" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"psh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"psk" = ( +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "cmo_windows" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_pub_hall" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/cmo) +"psl" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"psn" = ( +/obj/machinery/disposal, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"psp" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + display_name = "Fore Dock"; + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock"; + pixel_x = 20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/docking) +"pss" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"pst" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"psy" = ( +/obj/machinery/computer/fusion/gyrotron{ + dir = 4; + initial_id_tag = "aux_fusion_plant"; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"psA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"psD" = ( +/obj/structure/bed/chair/shuttle/blue{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + id_tag = "escape_pod_5"; + name = "escape pod five controller"; + pixel_x = -32; + pixel_y = 21; + req_access = list("ACCESS_SECURITY"); + tag_door = "escape_pod_5_hatch" + }, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"psH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"psN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/storage/airlock_canisters) +"psO" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"psR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Auxiliary Power Storage"; + name_tag = "Auxiliary Power Storage" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/obj/floor_decal/industrial/warning, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/auxpower) +"psS" = ( +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"psW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"psZ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "auxsolarsbridge"; + name = "Bridge Auxiliary Solar Array" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"ptb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ptq" = ( +/obj/structure/table/woodentable, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/cobweb, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/random/trash, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"ptr" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "eng4"; + name = "First Deck Port Nacelle Access"; + pixel_y = -20; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/thruster/d1port) +"ptt" = ( +/obj/structure/table/woodentable_reinforced, +/obj/item/newspaper, +/obj/item/material/ashtray, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"ptu" = ( +/obj/structure/wall_frame, +/obj/structure/grille, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"ptB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"ptC" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"ptD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/firstdeck/center) +"ptM" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"ptT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"puf" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Evidence Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"pui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"pun" = ( +/obj/floor_decal/carpet/orange{ + dir = 8 + }, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"puo" = ( +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pup" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"put" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"puC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"puD" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"puE" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sunnybush, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"puK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"puL" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"puM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"puV" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/closet/secure_closet{ + name = "long term chamber locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/borderfloor/full, +/obj/floor_decal/industrial/hatch/orange, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/brig) +"pva" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/dock, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"pvb" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pve" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = newlist(); + dir = 2 + }, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"pvi" = ( +/obj/item/stool/padded/red, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"pvl" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"pvs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"pvC" = ( +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/machinery/light/spot, +/obj/floor_decal/corner/green/half, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"pvD" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"pvH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/fore) +"pvO" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"pvP" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pvV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"pwh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2 + }, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/aiModule/reset, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"pwm" = ( +/obj/item/implanter, +/obj/item/scalpel/basic, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/paper/sticky{ + name = "I not wall, i am door."; + pixel_x = -25 + }, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"pwt" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"pwv" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + injecting = 1; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d1starboard) +"pwz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"pwH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"pwN" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d1portnacelle" + }, +/obj/machinery/atmospherics/valve/digital{ + id_tag = "RE1F"; + name = "RE1 digital valve" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"pxc" = ( +/turf/simulated/wall/r_wall/hull, +/area/chapel/mortuary) +"pxj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"pxk" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/FD_forecentralhallway1, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"pxm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"pxq" = ( +/obj/structure/curtain{ + color = "#aa0000" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"pxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"pxz" = ( +/obj/floor_decal/corner/grey/border, +/obj/structure/table/glass, +/obj/random/soap, +/obj/item/haircomb/random, +/obj/item/haircomb/brush, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"pxD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pxI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_bridge_pump"; + dir = 1 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"pxP" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"pxR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/port) +"pxV" = ( +/obj/machinery/status_display, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/nuke_storage) +"pxY" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"pyf" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"pyn" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/expedition/eva) +"pyq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pyr" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pyu" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"pyv" = ( +/obj/structure/table/woodentable/maple, +/obj/item/paper_bin, +/obj/machinery/light/small, +/obj/item/device/radio/intercom/locked/confessional{ + dir = 4; + pixel_x = -24 + }, +/obj/item/pen, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"pyz" = ( +/obj/floor_decal/corner/paleblue, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"pyJ" = ( +/obj/structure/bed/chair/armchair/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pze" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - Auxiliary Air Storage"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"pzl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Medic's General Cabin"; + req_access = list("ACCESS_MEDICAL"); + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"pzp" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"pzr" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 15000 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"pzw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/item/stack/material/glass/boron{ + amount = 30 + }, +/obj/item/stack/material/glass/boron_reinforced{ + amount = 20 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"pzC" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"pzD" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"pzM" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pzW" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "co2_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/atmos) +"pzZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"pAe" = ( +/obj/floor_decal/corner/black/bordercorner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pAj" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"pAr" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "lounge_windows"; + name = "Lounge Window Blast Doors"; + pixel_x = 25 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"pAw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"pAB" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"pAJ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"pAL" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/window/boron_reinforced{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"pAP" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/secure/biohazard, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"pAT" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/centralstarboard) +"pAW" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/thirddeck/starboard) +"pAX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/padded/red, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"pBk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"pBm" = ( +/obj/landmark{ + name = "lightsout" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "AICoreLastResort"; + name = "Last Resort"; + opacity = 0 + }, +/obj/machinery/flasher{ + pixel_x = 24; + pixel_y = 38 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/turret_protected/ai) +"pBC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"pBE" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"pBJ" = ( +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "firingspace"; + name = "Firing Range Shields"; + pixel_x = 20; + req_access = list("ACCESS_SEC_DOORS") + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/security/range) +"pBL" = ( +/obj/structure/table/rack, +/obj/item/roller_bed{ + pixel_y = -4 + }, +/obj/item/roller_bed, +/obj/item/roller_bed{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"pBQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/locker_room) +"pBU" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/material/aluminium/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel/fifty, +/obj/structure/railing/mapped, +/obj/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"pBY" = ( +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/machinery/camera/network/security{ + c_tag = "Longterm - Living"; + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"pCc" = ( +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"pCd" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"pCe" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pCm" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1; + tag_west = 3 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"pCq" = ( +/obj/floor_decal/industrial/warning/full, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "auxair"; + name = "Auxiliary Air Storage Exterior Access Console"; + req_access = list("ACCESS_ENGINEERING"); + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"pCG" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/firecloset, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"pCO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"pCP" = ( +/obj/machinery/air_sensor{ + id_tag = "n2_sensor" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/engineering/atmos) +"pCR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"pCV" = ( +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -27 + }, +/obj/structure/hygiene/drain, +/obj/structure/hygiene/shower{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pDa" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pDj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"pDv" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pDy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"pDz" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/self_destruct, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"pDI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/alternate/door/bolts{ + dir = 8; + id_tag = "toilet2"; + name = "Lock"; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"pDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"pDM" = ( +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window" + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"pDN" = ( +/obj/structure/closet/wardrobe/medic_sierra, +/obj/item/device/synthesized_instrument/violin, +/obj/item/clothing/head/nursehat, +/obj/item/clothing/head/nursehat, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"pDQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"pEh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/bed/chair/padded/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"pEp" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"pEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"pEw" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/pager/medical{ + name = "Call Medics button"; + pixel_y = 27 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"pEW" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"pEX" = ( +/obj/paint_stripe/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/interrogation/second) +"pFd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/storage/tech) +"pFg" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"pFm" = ( +/obj/structure/railing/mapped{ + dir = 1; + color = "#b19664"; + init_color = "#b19664" + }, +/turf/simulated/open, +/area/hallway/primary/thirddeck/central_stairwell) +"pFs" = ( +/obj/machinery/flasher{ + id_tag = "security_third_cell_flash"; + name = "Floor mounted flash" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"pFu" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"pFv" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"pFy" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"pFz" = ( +/obj/structure/grille, +/turf/simulated/open, +/area/space) +"pFH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"pFP" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"pGe" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"pGj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pGn" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"pGs" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/fourthdeck/port) +"pGu" = ( +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"pGw" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"pGD" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"pGE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"pGF" = ( +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Medical Reception" + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"pGI" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"pGJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/solar/bridge_starboard) +"pGT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"pHc" = ( +/obj/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"pHh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"pHq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"pHs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"pHt" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"pHA" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/folder/nt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"pHG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"pHK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"pHL" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"pHN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/item/storage/box/detergent, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"pHO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/honey_extractor, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pHQ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"pIb" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"pId" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Laboratory"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"pIl" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"pIy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"pIA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"pIG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"pIK" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"pIL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"pIT" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"pIW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 4 + }, +/obj/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/vending/medical/sierra{ + dir = 8; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"pIX" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/red, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"pIY" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"pJe" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"pJm" = ( +/obj/structure/flora/seaweed/large, +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"pJp" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/space, +/area/space) +"pJv" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pJy" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"pJF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/command{ + name = "Briefing Room"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"pJG" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/table/woodentable/mahogany, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 10 + }, +/obj/floor_decal/carpet/red, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"pJO" = ( +/turf/simulated/wall/r_wall/hull, +/area/storage/tech) +"pJV" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"pJZ" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"pKa" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"pKd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"pKn" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"pKq" = ( +/obj/structure/sign/warning/docking_area{ + dir = 1; + pixel_y = -32 + }, +/turf/space, +/area/space) +"pKv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"pKx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/nobreach{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"pKy" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"pKC" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pKJ" = ( +/obj/structure/table/standard, +/obj/item/device/radio{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/flora/pottedplantsmall/leaf, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/poster/unusual_gas{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/office) +"pKK" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Water Stores" + }, +/obj/item/taperoll/engineering/applied, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/cistern) +"pKO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/stack/material/steel, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"pKV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"pLd" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pLe" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"pLg" = ( +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/constructable_frame/machine_frame, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"pLk" = ( +/obj/machinery/floodlight{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"pLl" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"pLq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"pLr" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/wood/maple{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"pLs" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular{ + id_tag = "BSD_windows"; + name = "Bluespace Chamber Lockdown" + }, +/turf/simulated/floor/plating, +/area/engineering/bluespace/chamber) +"pLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"pLy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"pLF" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/bed/sofa/r/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"pLH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/medical{ + name = "Medical Storage" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"pLK" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"pLR" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"pLV" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/flora/pottedplant/flower{ + pixel_y = 13 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -1; + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"pMh" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/crew_quarters/cafe/upper) +"pMp" = ( +/obj/wallframe_spawn, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"pMx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"pMI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_fore_starboard_pump" + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + id_tag = "td_fore_starboard_sensor"; + master_tag = "td_fore_starboard"; + pixel_x = -24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"pMN" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pMV" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/closet/medical_wall/filled{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"pMW" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/black/border{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation One"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"pNe" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"pNm" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"pNp" = ( +/obj/machinery/disposal/small{ + dir = 4 + }, +/obj/floor_decal/corner/beige/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"pNx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/fourthdeck/fore) +"pNC" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 22 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/sleep/cryo/south) +"pNE" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"pNJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/space_heater, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"pNR" = ( +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"pNV" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"pNZ" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/icecream_vat, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"pOm" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Chemistry"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/chemistry) +"pOn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"pOA" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"pOB" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"pOD" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"pOE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"pOJ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"pOK" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"pOS" = ( +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 9 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"pPd" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"pPl" = ( +/obj/machinery/vending/wallmed2{ + dir = 4; + pixel_x = -23 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"pPq" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/starboard) +"pPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"pPu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"pPw" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/dispenser, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"pPx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"pPK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"pPL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pQa" = ( +/obj/structure/table/woodentable/walnut, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/curtain/bed{ + pixel_y = -32 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/glass2/shot{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"pQe" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/waterstore) +"pQh" = ( +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"pQo" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/closet, +/obj/structure/sign/warning/pods/east{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"pQr" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/self_destruct, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"pQs" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"pQt" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"pQv" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"pQz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"pQG" = ( +/obj/structure/curtain{ + color = "#aa0000" + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"pQI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"pQN" = ( +/obj/floor_decal/corner/purple/half, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"pQX" = ( +/obj/structure/crematorium{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"pQY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green, +/obj/machinery/power/apc/super/critical{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"pQZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"pRa" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"pRb" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"pRd" = ( +/obj/shuttle_landmark/sierra/deck2/crucian, +/turf/space, +/area/space) +"pRh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"pRi" = ( +/turf/simulated/wall/prepainted, +/area/hydroponics) +"pRv" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"pRA" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"pRK" = ( +/obj/machinery/pipedispenser/disposal, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"pRM" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pRZ" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"pSa" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"pSd" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"pSk" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/darkblue/bordercorner, +/obj/floor_decal/spline/fancy/black/corner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pSm" = ( +/obj/structure/bed/sofa/m/brown{ + dir = 1 + }, +/obj/floor_decal/carpet/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"pSn" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Fore" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"pSq" = ( +/obj/machinery/door/airlock/hatch/maintenance/bolted{ + frequency = 1379; + id_tag = "prototype_interior"; + name = "Fusion Maintenance" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/prototype/engine) +"pSt" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftstarboard) +"pSy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"pSA" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"pSF" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/bed/chair/padded/yellow, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"pSH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow, +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pSP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology) +"pST" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 0 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"pTa" = ( +/turf/simulated/wall/prepainted, +/area/command/chief_steward) +"pTb" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"pTo" = ( +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"pTs" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1port) +"pTy" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/center) +"pTA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"pTH" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/waterstore) +"pTK" = ( +/obj/item/handcuffs/cable/red, +/obj/item/handcuffs/cable/tape, +/obj/decal/cleanable/blood/drip, +/obj/random/medical/lite, +/obj/random/medical, +/obj/item/reagent_containers/spray/sterilizine, +/obj/machinery/light/small, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"pTM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"pTN" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"pTS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pUb" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"pUh" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"pUi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleport Maintenance"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"pUn" = ( +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/floor_decal/corner/grey_alt{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/crate/freezer, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/latex, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"pUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"pUw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/monitoring) +"pUG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"pUM" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pUW" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/equipstorage) +"pUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pVv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"pVx" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/aftport) +"pVA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"pVD" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"pVE" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "Command - EVA - Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"pVF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"pVH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"pVK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"pVO" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/bandolier/safari, +/obj/item/gun/launcher/net, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"pVU" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "iaaright" + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/obj/structure/holoplant, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"pWb" = ( +/obj/structure/coatrack, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"pWc" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"pWe" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"pWh" = ( +/obj/structure/closet/secure_closet/personal/empty, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sauna) +"pWi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"pWl" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"pWm" = ( +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"pWo" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"pWz" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/chapel/mortuary) +"pWK" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"pWP" = ( +/obj/machinery/light/small, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"pWR" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"pXe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Substation - Third Deck"; + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"pXh" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/equipment) +"pXj" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"pXl" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_maint) +"pXx" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"pXF" = ( +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window" + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"pXI" = ( +/obj/fluid_mapped, +/obj/item/bananapeel, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"pXM" = ( +/obj/structure/bed/sofa/m/lime{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"pXP" = ( +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"pXR" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/head_big) +"pYa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/light/spot, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"pYd" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"pYe" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"pYj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/corner/black/mono, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"pYq" = ( +/obj/floor_decal/industrial/danger/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"pYr" = ( +/obj/machinery/portable_atmospherics/canister/boron, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"pYx" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"pYB" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"pYI" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"pYK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"pYM" = ( +/obj/shuttle_landmark/escape_pod/start/pod7, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod7/station) +"pYP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"pYT" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"pZi" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/bed/chair/comfy/purple, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"pZq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/device/taperecorder, +/obj/item/device/destTagger, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/machinery/recharger/wallcharger{ + dir = 1; + pixel_y = -22 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"pZt" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"pZv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"pZw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 2; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/civilian{ + name = "Visitors"; + id_tag = "hangar_hallway_doors"; + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"pZz" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"pZF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"pZG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/rotating_alarm/supermatter{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pZH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"pZL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"pZM" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"pZP" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/firstdeck/fore) +"pZT" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 3500 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"pZV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"qae" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"qah" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"qaj" = ( +/obj/floor_decal/carpet{ + dir = 4 + }, +/obj/floor_decal/carpet{ + dir = 1 + }, +/obj/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/garden_room) +"qak" = ( +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/substation/thirddeck) +"qap" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/sauna) +"qar" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"qau" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"qax" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"qay" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"qaC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/foreport) +"qaM" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"qaU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"qaX" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_5_berth_hatch"; + name = "Escape Pod Five" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/hallway/port) +"qbg" = ( +/obj/structure/towel/fitness, +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"qbk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"qbl" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"qbt" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/reagent_containers/food/drinks/teapot, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, +/obj/item/material/ashtray/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"qby" = ( +/obj/structure/bed/chair/office/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"qbA" = ( +/obj/floor_decal/ntlogo{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qbE" = ( +/obj/floor_decal/techfloor/corner, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"qbF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"qbG" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/port) +"qbH" = ( +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"qbO" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"qbZ" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"qch" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpocket_mixed{ + pixel_y = 12; + pixel_x = 5 + }, +/obj/item/storage/box/cups{ + pixel_x = -5 + }, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/office) +"qci" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"qck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"qcm" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "auxair"; + name = "Auxiliary Air Storage Exterior Access Console"; + req_access = list("ACCESS_ENGINEERING"); + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"qcw" = ( +/obj/structure/bed/chair/office/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"qcH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"qcJ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"qcN" = ( +/obj/structure/closet/secure_closet/adjutant, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/device/flash, +/obj/item/device/flashlight, +/obj/item/storage/secure/safe{ + pixel_y = 24 + }, +/obj/item/gun/energy/gun/small/secure, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"qcO" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway - Turbolift"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"qcQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"qcZ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"qda" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"qdc" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Fusion Generator" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/control) +"qdg" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -21; + pixel_y = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"qdi" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "xenobio_surg"; + name = "Space Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"qdn" = ( +/obj/structure/table/steel, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"qds" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qdz" = ( +/obj/machinery/botany/editor, +/obj/floor_decal/corner/green/half, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"qdK" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"qdS" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/aft_stairwell) +"qee" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/airlock) +"qeg" = ( +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"qei" = ( +/obj/structure/railing/mapped, +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/head/soft/orange, +/obj/item/clothing/head/soft/orange, +/obj/floor_decal/borderfloor/full, +/obj/floor_decal/industrial/hatch/orange, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/brig) +"qek" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"qeq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/aft) +"qez" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Hallway - Aft" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"qeB" = ( +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"qeH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"qeK" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"qeU" = ( +/obj/floor_decal/corner/purple/half{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"qeZ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"qfc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"qff" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"qfh" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"qfi" = ( +/obj/floor_decal/solarpanel, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "auxsolarstarboard"; + name = "Aft Starboard Solar Array" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"qfk" = ( +/obj/structure/closet/l3closet/general, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"qfs" = ( +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/rnd/servers) +"qfu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"qfv" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"qfB" = ( +/obj/machinery/vending/generic{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"qfC" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"qfE" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"qfG" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ + id = "cafewindow" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafe/upper) +"qfI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qfJ" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"qfK" = ( +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = -21 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"qfM" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "AICoreLastResort"; + name = "AI Core Last Resort"; + pixel_x = 25; + pixel_y = -35 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/turret_protected/ai) +"qfV" = ( +/obj/structure/table/standard, +/obj/item/device/assembly/mousetrap/armed, +/obj/item/reagent_containers/food/snacks/cheesewedge/aged, +/obj/item/toy/plushie/mouse, +/obj/item/paper/sierrau/joke, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"qfW" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "null"; + name = "Captain's office"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain) +"qfX" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"qfZ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/catwalk, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/xenoflora) +"qga" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"qgf" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/gamblingtable, +/obj/item/reagent_containers/food/drinks/pitcher{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn, +/obj/machinery/light, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"qgg" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"qgl" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/armory) +"qgo" = ( +/turf/simulated/wall/prepainted, +/area/security/opscheck) +"qgs" = ( +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"qgy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qgA" = ( +/obj/shuttle_landmark/sierra/deck4/crucian, +/turf/space, +/area/space) +"qgC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"qgH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"qgW" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white/monotile, +/area/hallway/infirmary) +"qhg" = ( +/obj/machinery/hologram/holopad/longrange, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"qhl" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"qhs" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"qhu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/sign/warning/compressed_gas{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"qhw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"qhC" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"qhF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"qhU" = ( +/obj/structure/table/rack, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Bridge Checkpoint"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"qic" = ( +/obj/floor_decal/corner/red, +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"qie" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_y = -3; + pixel_x = 3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"qih" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"qij" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"qik" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"qin" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/evidence) +"qit" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft) +"qiu" = ( +/obj/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/bed/chair/office/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"qix" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + id_tag = "med_dorms_blast_doors"; + name = "Space Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/sleep/cryo/south) +"qiF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"qiK" = ( +/obj/structure/sign/directions/bridge{ + pixel_y = 24; + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 31 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"qiM" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"qiT" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"qiW" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"qja" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"qjc" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"qji" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"qjj" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod10/station) +"qjp" = ( +/turf/simulated/wall/prepainted, +/area/bridge/adjutants) +"qju" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/interrogation) +"qjv" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"qjy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"qjC" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"qjD" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"qjM" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"qjP" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"qjQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"qjU" = ( +/obj/floor_decal/techfloor, +/obj/machinery/flasher{ + dir = 1; + id_tag = "ai_core"; + pixel_y = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"qjW" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_north = 1; + tag_south = 8; + tag_west = 7 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"qjX" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + dir = 4 + }, +/obj/structure/closet/secure_closet/hop/sierra, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"qjZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/wallframe_spawn/reinforced_phoron/hull, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"qkq" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"qkx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qkA" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/turbolift/medical_lift) +"qkP" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"qkU" = ( +/obj/paint/dark_gunmetal, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/paint_stripe/yellow, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"qli" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"qlk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qlr" = ( +/obj/machinery/vending/generic{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"qlu" = ( +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "cmo_windows" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/cmo) +"qlx" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/organ/internal/posibrain, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"qlD" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qlG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/prison) +"qms" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"qmw" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/bsa{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"qmA" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qmB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"qmG" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"qmH" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/corner/green/three_quarters, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/hydroponics) +"qmR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"qmS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"qnf" = ( +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"qnl" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio3"; + name = "Containment Blast Doors" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"qnp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"qnx" = ( +/obj/machinery/mass_driver{ + dir = 4; + id_tag = "enginecore" + }, +/obj/machinery/power/supermatter, +/obj/engine_setup/core, +/turf/simulated/floor/greengrid{ + map_airless = 1 + }, +/area/engineering/engine_room) +"qnA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/armchair/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"qnF" = ( +/obj/machinery/sleeper, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"qnJ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"qnS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/light/spot, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"qob" = ( +/obj/floor_decal/corner/black/mono, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"qod" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"qoe" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id_tag = "med_pat_ward"; + name = "Infirmary Window Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/plating, +/area/medical/ward) +"qoh" = ( +/obj/machinery/door/airlock/civilian{ + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/taperoll/engineering/applied, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/vacant/mess) +"qop" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"qoq" = ( +/obj/floor_decal/techfloor, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"qoE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"qoF" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"qoL" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/fourthdeck/aft) +"qoP" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"qoR" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/window/boron_reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"qoW" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"qoZ" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"qpe" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "o21p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"qpl" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_5_berth_hatch"; + name = "Escape Pod Five" + }, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/foreport) +"qpn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"qpp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/dockcheck) +"qpr" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/rnd/xenobiology/xenoflora) +"qpw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"qpy" = ( +/obj/machinery/papershredder, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"qpE" = ( +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/random/toolbox, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"qpM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"qpN" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"qpQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"qpY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"qqa" = ( +/obj/decal/cleanable/dirt, +/obj/item/trash/semki, +/obj/structure/cable/green, +/obj/item/stack/cable_coil/green, +/obj/item/frame/apc, +/turf/simulated/floor/tiled/freezer, +/area/vacant/sauna) +"qqh" = ( +/obj/item/scrap_lump, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qqj" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"qqk" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"qqC" = ( +/obj/structure/table/rack, +/obj/item/rig/command/captain/equipped, +/obj/item/clothing/mask/gas/half, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"qqF" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/crucian_hangar/start) +"qqH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"qqN" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"qrk" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"qrn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"qrp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"qrt" = ( +/obj/structure/bed/chair/office/comfy/teal, +/obj/landmark/start{ + name = "Chief Medical Officer" + }, +/obj/structure/curtain/bed{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"qrw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI Upload - Access" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"qrB" = ( +/obj/structure/closet/fridge, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"qrJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"qrU" = ( +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"qrY" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "observation_shielding"; + name = "Observation Shield" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/dungeon_master_lounge) +"qse" = ( +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"qsg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"qsi" = ( +/obj/floor_decal/corner/paleblue, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"qsk" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"qsl" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"qsm" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"qsn" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qsw" = ( +/obj/structure/disposaloutlet, +/obj/machinery/shield_diffuser, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qsA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/machinery/smartfridge/secure/extract, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "xenobio_surg"; + name = "Containment Blast Doors"; + pixel_y = -21; + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"qsC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"qsD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"qsE" = ( +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"qsI" = ( +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Warehouse"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"qsO" = ( +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"qsX" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Garden - Port"; + dir = 1 + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"qtq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"qtr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/soap/pink_soap, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"qtw" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/seconddeck/aftstarboard) +"qtF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qtJ" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"qtL" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/vacant/mess) +"qtN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"qtP" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood{ + icon_state = "wood_broken4" + }, +/area/maintenance/firstdeck/forestarboard) +"qtU" = ( +/obj/machinery/button/blast_door{ + dir = 8; + pixel_x = 24; + name = "Armory Lethal blast door-control"; + id_tag = "armory_lethal"; + req_access = list("ACCESS_ARMORY") + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"qtY" = ( +/obj/structure/sign/warning/pods/south{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"qub" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"que" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"quf" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"qui" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/equipment) +"qus" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"quv" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"quz" = ( +/obj/structure/bed/chair/padded/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"quD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"quP" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"quR" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/bridgedeck/central_stairwell) +"quV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"qvc" = ( +/obj/structure/table/woodentable, +/obj/item/material/clipboard{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/item/material/clipboard{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = 12; + pixel_x = -7 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"qvi" = ( +/obj/floor_decal/corner/purple/border, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"qvm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"qvr" = ( +/obj/paint/red, +/turf/simulated/wall/r_titanium, +/area/crucian_hangar/start) +"qvx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"qvA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"qvF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/structure/sign/warning/airlock{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qvI" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/stack/material/steel/fifty, +/obj/item/stack/material/steel{ + amount = 20 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"qvJ" = ( +/obj/floor_decal/spline/fancy/black, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/towel/ilove, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"qvO" = ( +/obj/structure/bed/sofa/m/lime, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"qvW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"qvX" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"qvY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"qwe" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"qwk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"qwu" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"qwz" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/structure/bed/chair/padded/green{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"qwA" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"qwC" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"qwJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"qwK" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "fuel1p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3starboard) +"qwN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"qwO" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"qwS" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"qwT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/security{ + id_tag = "security_entry_airlock_exit"; + dir = 8; + name = "Security Exit" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"qxe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qxi" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"qxv" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"qxz" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"qxD" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qxP" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"qxU" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"qxX" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"qyi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"qyv" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/expedition/storage) +"qyD" = ( +/obj/machinery/door/airlock/glass/civilian{ + name = "Primary Tool Storage" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"qyK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"qyL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"qyP" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/lava/orange{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/book/manual/evaguide{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"qyQ" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"qyT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"qyW" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"qzf" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/aft_stairwell) +"qzh" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qzj" = ( +/obj/machinery/jukebox/custom_tape, +/obj/structure/table/woodentable/maple, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"qzl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"qzs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"qzu" = ( +/obj/shuttle_landmark/ert/deck3, +/turf/space, +/area/space) +"qzw" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"qzL" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bridge_windows" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/bridge) +"qzM" = ( +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"qzP" = ( +/obj/machinery/vending/parts/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"qzQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"qzT" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/lipstick/purple, +/obj/item/lipstick/jade, +/obj/item/lipstick/black, +/obj/item/lipstick, +/obj/item/storage/mirror{ + pixel_x = 24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"qAf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"qAh" = ( +/obj/structure/bed/sofa/m/black{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"qAn" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"qAu" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"qAw" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"qAW" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qAX" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/dungeon_master_lounge) +"qAY" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"qBa" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"qBc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"qBe" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qBf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"qBg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"qBk" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qBr" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"qBx" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"qBD" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/item/reagent_containers/glass/bucket/wood{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"qBH" = ( +/obj/engine_setup/smes, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Engine" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_smes) +"qBN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"qBO" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenobiology Aft" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"qBP" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"qBR" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"qBV" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation{ + RCon_tag = "Substation - Third Deck" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"qBW" = ( +/obj/structure/closet/secure_closet/injection, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"qBY" = ( +/obj/structure/closet/fridge/meat, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qCr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qCt" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"qCv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Head of Personnel"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"qCA" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/trash/raisins, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"qCU" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "gas supply pump"; + target_pressure = 200 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"qCV" = ( +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"qDa" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id = "auxsolarport"; + name = "Port Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"qDd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"qDh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"qDi" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"qDl" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"qDo" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"qDr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"qDx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/warning/airlock{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"qDB" = ( +/obj/structure/closet/secure_closet/decktech, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"qDD" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"qDE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"qDI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"qDN" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + id_tag = "escape_pod_5_berth"; + name = "escape pod five berth controller"; + pixel_x = -20; + tag_door = "escape_pod_5_berth_hatch" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"qDO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleporter"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"qDS" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/office) +"qDT" = ( +/turf/simulated/wall/prepainted, +/area/vacant/storage) +"qEa" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"qEj" = ( +/obj/shuttle_landmark/petrov/out, +/turf/space, +/area/space) +"qEm" = ( +/obj/machinery/door/airlock/glass/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hydroponics/third_deck_storage) +"qEo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/aiModule/purge, +/obj/item/aiModule/quarantine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"qEp" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/black{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - South"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"qEw" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"qEQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"qFc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"qFq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"qFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"qFy" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/heads/office/hop) +"qFD" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"qFF" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"qFH" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/bed/chair/padded/blue, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "medsafe_fore"; + name = "safe room door-control"; + pixel_x = -25 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"qFV" = ( +/obj/floor_decal/industrial/hatch/grey, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/civilian{ + name = "Bartenders'" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar/cobed) +"qFZ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + dir = 8; + name = "Central Stairwell" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/central_stairwell) +"qGg" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "library_space_lower"; + name = "Space Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/lounge/upper) +"qGs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"qGw" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"qGA" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"qGC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"qGO" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"qGQ" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"qGT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"qGV" = ( +/obj/structure/bed/chair/pew/left/mahogany{ + dir = 1; + icon_state = "chair_pewchapel_left_over" + }, +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/pew/mahogany, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"qGW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"qGX" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod2/station) +"qHf" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"qHq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"qHz" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/foreport) +"qHE" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"qHR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"qHV" = ( +/obj/structure/bed/chair/office/comfy/red{ + dir = 4 + }, +/obj/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"qHZ" = ( +/obj/structure/flora/pottedplant/tropical, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -6; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"qIa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"qId" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"qIe" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"qIk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"qIp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qIs" = ( +/obj/floor_decal/corner/research/mono, +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"qIw" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"qIB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/port) +"qIK" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + id_tag = "guppy_shuttle_pump" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/tele_beacon, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + dir = 1; + frequency = 1331; + id_tag = "guppy_shuttle"; + pixel_x = 32; + pixel_y = -20; + req_access = list("ACCESS_GUPPY") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"qIQ" = ( +/obj/structure/closet/secure_closet/security/sierra, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 1; + name = "Security RC"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"qIT" = ( +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "bsa_space"; + name = "Obstruction Field Disperser Space Shield"; + pixel_x = -24; + req_access = list("ACCESS_GUN") + }, +/obj/structure/sign/warning/vacuum{ + dir = 4; + pixel_x = -45 + }, +/obj/machinery/conveyor_switch{ + id = "bsa"; + name = "Obstruction Field Disperser shell loader" + }, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"qIZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "firingspace"; + name = "FIRING RANGE SAFETY SHIELD" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"qJj" = ( +/obj/structure/bed/chair/wheelchair, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"qJo" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"qJr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Steward's Room" + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/galley/backroom) +"qJJ" = ( +/obj/item/modular_computer/telescreen/preset/trashcompactor{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"qJK" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"qJO" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"qJP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"qJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"qKa" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"qKb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"qKd" = ( +/obj/structure/closet/crate/trashcart, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"qKf" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/flasher{ + id_tag = "ai_core"; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"qKk" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"qKs" = ( +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 9 + }, +/obj/structure/curtain/bed{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"qKw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"qKx" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"qKz" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"qKJ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"qKK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/shuttle_landmark/sierra/hangar/guppy, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"qKL" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/airlock/research{ + name = "Robotics Laboratory"; + req_access = newlist(); + id_tag = "rbtk_door" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"qKU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"qLd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"qLg" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/closet/crate/freezer, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"qLh" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Test Chamber" + }, +/obj/machinery/door/window/southright{ + name = "Test Chamber" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"qLi" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "ai_core_outer"; + locked = 1; + name = "AI Core Internal Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ai_core_airlock"; + name = "exterior access button"; + pixel_x = 24; + req_access = list("ACCESS_AI_UPLOAD") + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai) +"qLn" = ( +/obj/shuttle_landmark/skipjack/dock, +/turf/space, +/area/space) +"qLt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/obj/structure/holoplant, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Observatory"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"qLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"qLA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"qLC" = ( +/obj/structure/curtain/bed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"qLF" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Heat Exchanger Output" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"qLI" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/crew_quarters/gym) +"qLJ" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/three_quarters{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"qLK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"qLW" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"qMa" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"qMb" = ( +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -23; + pixel_y = -3 + }, +/obj/structure/closet/secure_closet{ + name = "Security Equipment Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/item/storage/mre/menu7, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/donut, +/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"qMl" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"qMm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"qMA" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/bed/chair/rounded/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"qME" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"qMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"qMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qMT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"qMW" = ( +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qMX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"qNb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"qNe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"qNi" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/green, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"qNl" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"qNm" = ( +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"qNr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"qNt" = ( +/obj/wallframe_spawn, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qNw" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"qNx" = ( +/obj/machinery/power/smes/buildable/preset/sierra/engine_main{ + RCon_tag = "Prototype - Distribution" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/control) +"qNA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"qNK" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"qNQ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"qNV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"qNW" = ( +/turf/simulated/floor/carpet/orange, +/area/security/range) +"qNZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"qOa" = ( +/obj/machinery/stasis_cage, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"qOc" = ( +/obj/item/paper/sticky{ + name = "I not wall, i am door."; + pixel_x = 25 + }, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"qOk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"qOn" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/fourthdeck/forestarboard) +"qOv" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/bunk) +"qOy" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"qOz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"qOC" = ( +/obj/machinery/vending/boozeomat{ + req_access = list("ACCESS_BAR") + }, +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"qOG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/smartfridge/secure/medbay{ + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"qOH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"qOK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"qOS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "escape_pod_5_pump" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"qOU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"qPa" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Evidence Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"qPe" = ( +/obj/structure/table/steel, +/obj/random/powercell, +/obj/item/frame/fire_alarm, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"qPp" = ( +/obj/structure/bookcase/manuals/security, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -9; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"qPv" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"qPx" = ( +/turf/simulated/floor/tiled, +/area/security/brig) +"qPz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"qPA" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"qPH" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qPL" = ( +/obj/machinery/fusion_fuel_compressor, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"qPR" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"qPS" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"qQa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/vacant/monitoring) +"qQu" = ( +/obj/structure/closet/crate/secure/biohazard/alt{ + req_access = list("ACCESS_XENOBIO") + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Equipment Room"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"qQx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"qQz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/nav_light, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qQA" = ( +/obj/wallframe_spawn/reinforced_phoron/titanium, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"qQC" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"qQF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + name = "Hospital Back Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"qQG" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qQI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"qQL" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"qQM" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/reagent_containers/food/snacks/slice/xenomeatbread/filled{ + pixel_x = 17 + }, +/obj/item/folder/nt{ + pixel_y = 7; + pixel_x = -10 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"qQO" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "CO21p_out"; + initialize_directions = 1; + internal_pressure_bound = 1000; + internal_pressure_bound_default = 1000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3starboard) +"qQR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "waste_in"; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qQX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"qQY" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"qRd" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qRo" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"qRq" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/camera/network/hangar{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"qRr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"qRx" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"qRF" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/storage/box/glasses{ + pixel_y = 7 + }, +/obj/item/storage/box/glass_extras/sticks, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"qRL" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"qRN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"qRO" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"qRS" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/red/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"qRU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"qRV" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/machinery/computer/modular/preset/engineering{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"qRX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"qRZ" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"qSl" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "pathfinder_office"; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + dir = 8; + pixel_x = 24; + pixel_y = 10; + id_tag = "exp_leader_window_to_space" + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"qSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"qSp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/maintenance/seconddeck/aftport) +"qSv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"qSx" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/misc_lab) +"qSy" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/thick/duty, +/obj/machinery/light/small, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/foreport) +"qSD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"qSQ" = ( +/obj/structure/bed/sofa/r/black{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"qSS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"qSX" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"qSZ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"qTe" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"qTi" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"qTm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"qTB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"qTL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = -14; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"qTM" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"qUe" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"qUp" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"qUq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"qUr" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"qUA" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"qUN" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/virology{ + locked = 1; + id_tag = "virology_access_outer" + }, +/obj/item/taperoll/engineering/applied, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"qUR" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"qUW" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"qVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Bridge Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/solar/bridge_port) +"qVc" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"qVf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/ntlogo{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"qVi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"qVk" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"qVo" = ( +/obj/shuttle_landmark/merc/deck3, +/turf/space, +/area/space) +"qVv" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"qVw" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"qVC" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"qVF" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 12 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/light/led/small, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/structure/closet/shipping_wall/filled{ + pixel_x = -32 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Bar - Counter"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"qVG" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/device/flashlight/lamp{ + pixel_y = 13; + pixel_x = -3 + }, +/obj/item/book/manual/nt_regs, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"qVH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Escape Pods - Port"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"qVI" = ( +/turf/simulated/wall/prepainted, +/area/chapel/main) +"qVP" = ( +/obj/structure/table/standard, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/item/flame/lighter/random, +/obj/item/storage/fancy/smokable/dromedaryco{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/deck/cards{ + pixel_y = 9; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"qVU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"qVV" = ( +/turf/simulated/open, +/area/crew_quarters/lounge/upper) +"qVX" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 8 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"qWf" = ( +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/hallway/primary/fourthdeck/center) +"qWi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"qWk" = ( +/obj/structure/sign/directions/security{ + pixel_y = -24; + dir = 4 + }, +/obj/structure/sign/directions/infirmary{ + pixel_y = -31; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"qWn" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "solar_port_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar) +"qWo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"qWx" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "vir_blast_window" + }, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"qWy" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"qWz" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/maintenance/bridgedeck/port) +"qWD" = ( +/obj/structure/table/rack, +/obj/item/storage/box/trackimp, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/machinery/button/blast_door{ + dir = 4; + pixel_x = -24; + id_tag = "armory_lethal"; + name = "Armory Lethal blast door-control"; + req_access = list("ACCESS_ARMORY") + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"qWF" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hydroponics/third_deck_storage) +"qWK" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"qWS" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"qWV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Captain"; + sort_type = "Captain" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"qXj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"qXo" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"qXp" = ( +/obj/machinery/disposal, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner, +/obj/structure/sign/directions/security{ + pixel_x = 32; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"qXy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Quarter"; + secured_wires = 1; + stripe_color = "#b7f27d" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop/cobed) +"qXB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"qXM" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/structure/bed/chair/office/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"qXP" = ( +/obj/machinery/door/airlock/hatch{ + autoset_access = 0; + dir = 4; + name = "Cockpit"; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"qXQ" = ( +/turf/simulated/open, +/area/maintenance/thirddeck/aftstarboard) +"qXR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/self_destruct, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"qYj" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"qYn" = ( +/obj/structure/lattice, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"qYq" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qYt" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_4" + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/port) +"qYz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"qYD" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"qYE" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"qYI" = ( +/obj/structure/cable/yellow, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_starboard) +"qYL" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/one{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/pitcher{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Office Room"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"qYN" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + name = "thruster vent access"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "ThrusterVents"; + name = "Thruster Blast Door" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"qYS" = ( +/obj/structure/curtain/medical, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"qYU" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "concheckwindow"; + name = "Operation Checkpoint Shutters"; + opacity = 0 + }, +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/security/opscheck) +"qYV" = ( +/obj/machinery/access_button/airlock_interior{ + master_tag = "sd_starboard"; + name = "interior access button"; + pixel_x = -24; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + id_tag = "sd_starboard_inner"; + name = "Second Deck Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"qYZ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"qZb" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"qZf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"qZg" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qZj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"qZk" = ( +/obj/floor_decal/corner/red, +/obj/structure/table/steel, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"qZm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"qZn" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"qZo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"qZq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"qZt" = ( +/obj/structure/lattice, +/obj/random/junk, +/obj/random/trash, +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"qZE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/sparker{ + id_tag = "engines"; + pixel_x = -24 + }, +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3port) +"qZF" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"qZJ" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/storage/bible/kojiki, +/obj/item/storage/bible/quran, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"qZL" = ( +/obj/floor_decal/corner/black/half, +/obj/floor_decal/corner/red/bordercorner2, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Gym"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"qZR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"rac" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Fourth Deck Substation"; + req_access = newlist(); + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/fourthdeck) +"ral" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"rap" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"rau" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"rav" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"raP" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"raU" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng2"; + name = "Third Deck Port Nacelle Access"; + pixel_y = 21; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/machinery/atmospherics/valve/shutoff/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/thruster/d3port) +"raX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"rbf" = ( +/obj/random/trash, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"rbg" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"rbh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"rbm" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rbn" = ( +/obj/floor_decal/corner/darkblue/half, +/obj/floor_decal/corner/darkblue{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/material/ashtray/bronze, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"rbs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"rbt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"rbu" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/obj/structure/sign/nanotrasen{ + dir = 8 + }, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod2/station) +"rbz" = ( +/obj/machinery/door/window/brigdoor/southright{ + autoset_access = 0; + dir = 8; + name = "Test Chamber"; + req_access = list("ACCESS_TOXINS") + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"rbD" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftstarboard) +"rbE" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/material/plasteel/ten, +/obj/item/stack/material/plasteel/ten, +/obj/item/stack/material/plasteel/ten, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"rbF" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"rbM" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"rbR" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/box/evidence, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"rbU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"rbV" = ( +/obj/structure/catwalk, +/obj/item/reagent_containers/food/snacks/meat/monkey, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/open, +/area/rnd/xenobiology/water_cell) +"rcc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"rcj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/meter, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"rcp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"rcx" = ( +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Canister Storage"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"rcD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"rcN" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"rcO" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"rcS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"rcV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"rcW" = ( +/obj/machinery/vending/generic{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"rdf" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/black/border{ + dir = 5 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "interrogation_no1_windows"; + pixel_x = 22; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"rdj" = ( +/obj/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/foreport) +"rdn" = ( +/obj/floor_decal/corner/purple/full, +/obj/structure/closet/cabinet, +/obj/item/book/manual/research_and_development, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/rd/cobed) +"rdv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"rdw" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod6/station) +"rdH" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/random/obstruction, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"rdI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"rdK" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "emergency cooling valve" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"rdM" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"rdN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Aft Hallway" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"rdO" = ( +/obj/shuttle_landmark/sierra/deck3/crucian, +/turf/space, +/area/space) +"rdU" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"rdY" = ( +/obj/floor_decal/solarpanel, +/obj/machinery/power/solar{ + id = "auxsolarsport"; + name = "Aft Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/solar/port) +"red" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"rem" = ( +/turf/simulated/wall/prepainted, +/area/holocontrol) +"rep" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad/longrange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"res" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"rev" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"reI" = ( +/obj/machinery/body_scan_display{ + pixel_y = -32 + }, +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/floor_decal/corner/grey_alt/three_quarters{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"reM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"reN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/security{ + dir = 8; + name = "Security Airlock" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway) +"reP" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"reQ" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/commissary) +"reS" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Air to Supply" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"reW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/table/standard, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"rfa" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"rfi" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod7/station) +"rfn" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"rfp" = ( +/obj/structure/table/steel, +/obj/machinery/photocopier/faxmachine{ + department = "CE" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 5; + name = "Chief Engineer RC"; + pixel_y = 30 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"rfs" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"rfE" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"rfI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"rfN" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"rfT" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"rfU" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/cockpit) +"rfX" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"rfZ" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"rgg" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"rgx" = ( +/obj/shuttle_landmark/escape_pod/start/pod8, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod8/station) +"rgy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"rgK" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"rgN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"rgQ" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"rgS" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"rhb" = ( +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"rhc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"rhi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/machinery/body_scan_display{ + pixel_y = -28 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"rhk" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"rhl" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Seating"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"rho" = ( +/obj/structure/largecrate, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"rhs" = ( +/obj/machinery/suit_storage_unit/science, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"rhx" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"rhy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"rhB" = ( +/obj/paint_stripe/yellow, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"rhC" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"rhD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"rhF" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"rhH" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/selfestructgrid, +/area/security/nuke_storage) +"rhJ" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"rhN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"rhQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + autoset_access = 0; + dir = 4; + frequency = 1331; + id_tag = "guppy_shuttle_outer"; + name = "Guppy External Access"; + req_access = list("ACCESS_GUPPY") + }, +/obj/machinery/door/blast/regular{ + id_tag = "guppy_hatch"; + name = "Rear Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"rhT" = ( +/obj/structure/cart{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"rhV" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "fuel4p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"rhZ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"ria" = ( +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8; + name = "Security Checkpoint" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + opacity = 0; + id_tag = "lobb_shutt" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/plating, +/area/bridge/lobby) +"rig" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"rip" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced, +/area/space) +"riq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/fore) +"rit" = ( +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"riB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"riP" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/head/deck3) +"riQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"rjb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"rjg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"rjh" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"rjw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"rjy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_to_maint" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/ward) +"rjz" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Telecoms Storage"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/storage) +"rjA" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"rjF" = ( +/obj/floor_decal/solarpanel, +/obj/machinery/power/solar{ + id = "auxsolarsport"; + name = "Aft Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/solar/port) +"rjG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/seconddeck/center) +"rjN" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rjS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"rkb" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "CMO" + }, +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"rkh" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "solar_bridge_port_airlock"; + name = "interior access button"; + pixel_x = 24; + pixel_y = 24; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"rkp" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/storage) +"rku" = ( +/obj/structure/bed/chair/wood/walnut, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"rky" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"rkB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"rkR" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "PetrovShield"; + name = "Blast Shutter Control"; + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/device/radio, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Cockpit"; + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"rkT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"rkW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rkX" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"rkZ" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/engineering/engine_monitoring) +"rle" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/full, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/ce) +"rlt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rly" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/watertank, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"rlH" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"rlI" = ( +/obj/structure/holoplant, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"rlJ" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_l) +"rlQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"rlU" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/space) +"rlW" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"rmf" = ( +/obj/structure/closet/crate/trashcart, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"rmo" = ( +/obj/structure/bed/chair/office/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"rmB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"rmQ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/power/apc/high{ + dir = 8; + name = "west bump"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"rmS" = ( +/obj/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rmW" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external/escapepod{ + dir = 4; + id_tag = "escape_pod_4_berth_hatch"; + name = "Escape Pod Four" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"rnx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/grille, +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "engineroomvent"; + name = "Engine Room Vent" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"rnD" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"rnI" = ( +/obj/floor_decal/industrial/warning/half, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"rnL" = ( +/obj/machinery/drone_fabricator/sierra, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"rnO" = ( +/obj/machinery/button/blast_door{ + id_tag = "qm_warehouse2"; + name = "Warehouse Door Control"; + pixel_y = 27; + req_access = list("ACCESS_CARGO") + }, +/obj/vehicle/train/cargo/engine, +/obj/floor_decal/spline/plain/brown{ + dir = 6 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"rnP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"rnQ" = ( +/obj/structure/bed/chair/padded/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"rnX" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 6 + }, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -23 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"rob" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"rom" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"roq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"rot" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"row" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"rox" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"roC" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/air_sensor{ + id_tag = "rust_sensor" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"roN" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"roS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"rpl" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar/upper) +"rpv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobioa2"; + name = "Containment Blast Doors"; + pixel_x = -6; + pixel_y = 21; + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"rpx" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"rpA" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"rpD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"rpE" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"rpI" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"rpP" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/forestarboard) +"rpR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/reagentgrinder, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"rpY" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"rqd" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/helm, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"rqg" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + id_tag = "vir_blast_window" + }, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"rql" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + name = "Third Deck Fore Starboard Nacelle Access"; + id_tag = "td_fore_starboard_outer" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "td_fore_starboard"; + name = "exterior access button"; + pixel_x = 24; + req_access = list("ACCESS_EXTERNAL") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"rqp" = ( +/obj/structure/sign/deck/third{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"rqr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"rqs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + id_tag = "wardoor"; + name = "Warden" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/sergeant) +"rqt" = ( +/obj/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"rqD" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cargo Bay Right"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"rqK" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"rqW" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/thirddeck/aftport) +"rqX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"rrc" = ( +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"rri" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rrl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic/lab) +"rrs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"rru" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"rrx" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"rrR" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/random/clipboard{ + pixel_y = -2; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/binoculars, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"rrX" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"rrY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"rrZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/surgery, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"rsb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"rsf" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/table/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"rsi" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"rso" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"rsp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/range) +"rsq" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/obj/structure/handrail, +/turf/space, +/area/space) +"rst" = ( +/obj/structure/dispenser/oxygen, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"rsv" = ( +/obj/structure/closet{ + anchored = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"rsE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"rsF" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"rsG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/corner/brown/mono, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs/upper) +"rsS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rta" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"rtg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/galley/backroom) +"rtl" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"rto" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"rtD" = ( +/obj/machinery/computer/air_control{ + input_tag = "test_xenoflora_in"; + name = "Test Chamber Gas Monitor"; + output_tag = "test_xenoflora_out"; + sensor_name = "Xenoflora Environment"; + sensor_tag = "xenobot_sensor" + }, +/obj/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"rtE" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Robotics Laboratory"; + sort_type = "Robotics Laboratory" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"rtR" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director"; + departmentType = 3; + name = "Research Director RC"; + pixel_x = 32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/heads/office/rd) +"rtT" = ( +/turf/simulated/open, +/area/space) +"rtU" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"rtV" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/black/border{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Interrogation Two"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"rtY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"rub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 40 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"rui" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"ruj" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 1 + }, +/obj/floor_decal/carpet/red, +/obj/floor_decal/carpet/red{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 10 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"ruk" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/civilian{ + id_tag = "old_maintaince_privatedorm"; + name = "Old Dorms"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/dormintories) +"rut" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"ruy" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/random/ironing_board_structure, +/obj/item/ironing_iron, +/obj/machinery/light/spot, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"ruz" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/storage/box/lights/led_neon, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"ruB" = ( +/obj/shuttle_landmark/merc/deck2, +/turf/space, +/area/space) +"ruE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + autoset_access = 0; + dir = 4; + name = "Supply Desk" + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Supply Desk"; + req_access = newlist() + }, +/obj/machinery/door/blast/shutters/open{ + name = "Supply Desk Shutters"; + id_tag = "sup_office"; + dir = 4 + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 4 + }, +/obj/item/material/bell{ + pixel_y = 1; + pixel_x = 6 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"ruI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"ruK" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod9/station) +"ruP" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "ThrusterVents"; + name = "Thruster Blast Door" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"ruT" = ( +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#46698c"; + color = "#46698c" + }, +/obj/structure/railing/mapped{ + color = "#46698c"; + init_color = "#46698c" + }, +/turf/simulated/open, +/area/hallway/primary/bridgedeck/central_stairwell) +"rvc" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"rvf" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"rvh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Kitchen"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"rvk" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"rvp" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Substation - Fourth Deck"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"rvq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_1{ + desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; + pixel_y = 32 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"rvv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rvx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"rvy" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rvB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"rvD" = ( +/obj/floor_decal/corner/lightgrey/mono, +/obj/structure/bed/chair/office/green{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/bordercee, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"rvT" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/test_room) +"rwb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rwc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"rwo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"rwx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/decal/cleanable/generic, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"rwA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"rwJ" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "qm_warehouse2"; + name = "Warehouse Shutters" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/storage) +"rwM" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/egun, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"rwV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"rxa" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"rxd" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"rxq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"rxw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"rxI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "iaadoorleft"; + name = "Internal Affairs Agent"; + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa) +"rxK" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/ship) +"rxO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"rxR" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"rxU" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"rxZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"rye" = ( +/obj/floor_decal/corner/paleblue, +/obj/structure/bed/chair/office/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"ryg" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ryk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"ryn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"ryq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"ryz" = ( +/obj/machinery/vending/coffee, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"ryC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ryI" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"ryJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"ryR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"ryY" = ( +/obj/structure/closet/l3closet/general/multi, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"ryZ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"rzd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"rzi" = ( +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/sleep/cryo/south) +"rzl" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"rzq" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/firstaid/radiation{ + pixel_y = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = -2 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"rzH" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"rzI" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"rzP" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"rzT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"rAd" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"rAf" = ( +/obj/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"rAg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"rAi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"rAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"rAl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 1; + id_tag = "petrov_shuttle_dock_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "petrov_shuttle_dock_sensor"; + master_tag = "petrov_shuttle_dock"; + pixel_x = -24 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"rAm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"rAu" = ( +/obj/structure/table/steel, +/obj/machinery/button/blast_door{ + id_tag = "PetrovShield"; + name = "Blast Shutter Control"; + pixel_x = 5; + pixel_y = -3 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for airlocks."; + id_tag = "PetrovAccess"; + name = "Petrov Interior Door Control"; + pixel_x = -5; + pixel_y = 6 + }, +/obj/machinery/button/blast_door{ + id_tag = "PetrovBiohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "concheckwindow2"; + name = "Office Shutter Control"; + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/security) +"rAC" = ( +/obj/machinery/door/window/westright{ + dir = 1; + name = "Medical Reception" + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"rAI" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"rAK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"rAR" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"rAU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Hospital" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id_tag = "med_pat_ward"; + name = "Infirmary Window Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"rAX" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"rAZ" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/critical{ + name = "north bump"; + pixel_y = 21; + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"rBf" = ( +/obj/structure/table/rack, +/obj/item/tape_roll, +/obj/item/stack/material/cardboard/fifty, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/item/shuttle_beacon, +/obj/item/shuttle_beacon, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/yellow{ + dir = 9 + }, +/obj/random/maintenance/clean, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"rBp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"rBx" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/field_generator, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"rBy" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/aftport) +"rBA" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"rBD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"rBL" = ( +/obj/machinery/light/spot, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/security/brig) +"rBO" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"rBS" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"rBT" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"rBU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Restroom" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/head_big) +"rBV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"rBY" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/ballistic, +/obj/item/clothing/head/helmet/ballistic, +/obj/item/clothing/head/helmet/ballistic, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"rBZ" = ( +/obj/machinery/recharge_station, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"rCc" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"rCd" = ( +/obj/machinery/atmospherics/unary/tank{ + color = "#ff0000"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"rCs" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"rCy" = ( +/obj/item/stool/bar, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"rCB" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rCE" = ( +/obj/machinery/door/window/brigdoor/eastright{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"rCI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"rCL" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rCN" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"rCX" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small, +/obj/item/stack/material/steel/fifty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"rCZ" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"rDf" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/window/boron_reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"rDh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"rDj" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"rDm" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"rDr" = ( +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/medical) +"rDs" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"rDu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/pew, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"rDD" = ( +/obj/floor_decal/corner/black/border{ + dir = 5 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rDH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rDP" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"rDR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"rEc" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table/standard, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"rEd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"rEh" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"rEn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"rEv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/fabricator, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"rEy" = ( +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"rEG" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "forensicswindow" + }, +/turf/simulated/floor/plating, +/area/security/sierra/forensic) +"rEQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/command, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/aft) +"rFc" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"rFj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"rFm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"rFq" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/storage2) +"rFv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"rFB" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"rFG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"rFL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"rFM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "td_fore_starboard_pump" + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"rFP" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/mineral/stacking_machine{ + input_turf = 1; + output_turf = 2 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/quartermaster/hangar) +"rFS" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/lava/orange{ + pixel_y = 13; + pixel_x = 9 + }, +/obj/machinery/space_heater/stationary/on{ + set_temperature = 348.15; + pixel_x = -30 + }, +/obj/structure/bed/sauna_bench/middle, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"rFV" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar_stairs) +"rFX" = ( +/obj/machinery/door/firedoor, +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Second Deck Substation" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/seconddeck) +"rGb" = ( +/obj/floor_decal/corner/black/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rGn" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"rGu" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"rGI" = ( +/obj/machinery/door/airlock/multi_tile/research{ + frequency = 1379; + id_tag = "xenolow_airlock_outer"; + locked = 1; + name = "Xenobiology External Airlock" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry2) +"rGK" = ( +/obj/machinery/uniform_vendor{ + dir = 4; + icon_state = "robotics" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"rGL" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod10/station) +"rGS" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"rGX" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 9 + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"rHt" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"rHA" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"rHE" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "med_main_reg"; + name = "Infirmary Entry Shutters" + }, +/turf/simulated/floor/plating, +/area/medical/staging) +"rHM" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/foreport) +"rHO" = ( +/obj/structure/sign/warning/radioactive{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"rHY" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"rIc" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"rIo" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"rIt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"rIu" = ( +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/folder/red, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"rIw" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rIx" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"rID" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"rIH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai_teleport) +"rIM" = ( +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"rIQ" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_9_hatch"; + name = "Escape Pod Nine Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod9/station) +"rIX" = ( +/obj/floor_decal/corner/purple/three_quarters{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"rIZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rJe" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"rJn" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"rJu" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking_1{ + desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"rJx" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"rJC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"rJD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"rJL" = ( +/obj/machinery/atmospherics/valve/shutoff, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"rJW" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"rJX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"rKi" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"rKp" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "n2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/engineering/atmos) +"rKu" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"rKv" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/door/window/westleft{ + name = "Medical Reception" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"rKy" = ( +/obj/structure/closet/secure_closet/iaa, +/obj/item/modular_computer/tablet/lease/preset/command, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/obj/item/folder/envelope/blanks, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"rKD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Fuel Bay"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"rKH" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"rKP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "Expedition Prep"; + sort_type = "Expedition Prep" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"rKU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/empty, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/vacant/dormintories) +"rKZ" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rLa" = ( +/obj/structure/table/glass, +/obj/item/material/ashtray/glass, +/obj/item/storage/fancy/smokable/trident{ + pixel_y = -2; + pixel_x = -5 + }, +/obj/item/flame/lighter/zippo{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"rLb" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"rLj" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/chapel/main) +"rLn" = ( +/obj/floor_decal/industrial/loading{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"rLs" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "fusion_observation" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/vacant/prototype/control) +"rLt" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"rLu" = ( +/obj/structure/table/woodentable, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn{ + pixel_y = -1; + pixel_x = 11 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"rLy" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"rLB" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"rLC" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/newspaper{ + pixel_y = 10; + pixel_x = -5 + }, +/obj/item/material/ashtray/plastic{ + pixel_y = -2; + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_y = 1; + pixel_x = -5 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = 2 + }, +/obj/item/trash/cigbutt{ + pixel_y = -5; + pixel_x = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"rLE" = ( +/obj/floor_decal/corner/purple/half{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"rLG" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"rLI" = ( +/obj/floor_decal/industrial/traffic, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rLL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/charon{ + dir = 4; + name = "west bump"; + pixel_x = 24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"rLP" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/decal/cleanable/flour, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"rLR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"rLY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"rLZ" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"rMc" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rMh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"rMj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"rMn" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"rMo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/seconddeck/aftport) +"rMr" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"rMx" = ( +/obj/structure/ladder, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/aftport) +"rMB" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/woodentable/maple, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ + pixel_x = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"rMF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_port) +"rMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"rMY" = ( +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4; + locked = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/barricade, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"rMZ" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod2/station) +"rNb" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/autolathe, +/obj/item/stock_parts/circuitboard/unary_atmos/cooler, +/obj/item/stock_parts/circuitboard/unary_atmos/heater, +/obj/item/stock_parts/circuitboard/oxyregenerator, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"rNl" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"rNm" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/engineering/locker_room) +"rNn" = ( +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"rNq" = ( +/obj/shuttle_landmark/sierra/deck3/guppy, +/turf/space, +/area/space) +"rNw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"rNx" = ( +/turf/unsimulated/mask, +/area/hallway/primary/bridgedeck/center) +"rNy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Aft"; + dir = 4 + }, +/obj/machinery/flasher{ + dir = 4; + id_tag = "ai_core"; + pixel_x = -24 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"rNE" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"rNG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"rNH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"rNK" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/blue/border, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"rNN" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"rNR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/eva) +"rNS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/corner/blue/border, +/obj/structure/closet/white_sierra, +/obj/item/clothing/suit/storage/toggle/labcoat, +/obj/item/clothing/suit/storage/toggle/labcoat, +/obj/item/storage/box/syringes, +/obj/item/storage/box/evidence, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"rNU" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"rNX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"rOc" = ( +/obj/machinery/status_display, +/turf/simulated/wall/prepainted, +/area/crew_quarters/commissary) +"rOi" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green, +/obj/machinery/power/apc/critical{ + name = "east bump"; + dir = 4; + pixel_x = 21 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"rOv" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"rOx" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"rOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"rOI" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"rOW" = ( +/obj/structure/railing/mapped, +/obj/structure/bed/sofa/m/blue, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"rOZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/light_construct{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"rPc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"rPm" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_starboard) +"rPn" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"rPq" = ( +/obj/machinery/door/airlock/glass/atmos{ + name = "Atmospherics"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"rPt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/hos/cobed) +"rPu" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"rPv" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/bar) +"rPy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"rPD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"rPG" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/forensic) +"rPJ" = ( +/turf/simulated/open, +/area/hydroponics) +"rPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4; + autoset_access = 0 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"rPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"rPQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/stool/padded/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"rPS" = ( +/obj/random/maintenance, +/obj/decal/cleanable/cobweb2, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"rQc" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"rQf" = ( +/obj/floor_decal/corner/black/mono, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"rQg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"rQm" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/port) +"rQo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3starboard) +"rQw" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"rQA" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/decal/cleanable/blood/oil, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/clothing/under/rank/roboticist/skirt, +/obj/item/clothing/under/rank/roboticist/skirt, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"rQI" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_6_berth_hatch"; + name = "Escape Pod Six" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"rQO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"rQV" = ( +/obj/decal/cleanable/dirt, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/clothing/suit/straight_jacket, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"rRa" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/sauna) +"rRf" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"rRl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"rRm" = ( +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"rRq" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"rRw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + id_tag = "сhief_steward"; + name = "Chief Steward"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/command/chief_steward) +"rRF" = ( +/obj/structure/stairs/east, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"rRI" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"rRK" = ( +/obj/machinery/cooker/oven, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"rRL" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rRP" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/button/blast_door{ + id_tag = "security_sergeant_blastdoor"; + name = "Warden's Blastdoor"; + req_access = list("ACCESS_WARDEN"); + pixel_y = 24; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"rRV" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 1; + initial_id_tag = "aux_fusion_plant" + }, +/turf/simulated/floor/reinforced, +/area/vacant/prototype/engine) +"rRW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Port Auxiliary Storage"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"rSg" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/actor/stage) +"rSj" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"rSl" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"rSm" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"rSn" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rSp" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa2"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"rSx" = ( +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"rSz" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"rSA" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/atmos) +"rSI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"rSO" = ( +/turf/simulated/wall/r_wall/hull, +/area/medical/mentalhealth) +"rSU" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/iv_stand, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"rSW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"rTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"rTs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"rTz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Fourth Deck Substation"; + req_access = newlist(); + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/fourthdeck) +"rTD" = ( +/obj/floor_decal/floordetail/edgedrain{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"rTE" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/airlock/external{ + autoset_access = 0; + frequency = 1331; + id_tag = "calypso_shuttle_outer"; + name = "Charon External Access"; + req_access = list(list("ACCESS_EXPEDITION_SHUTTLE")) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/airlock) +"rTO" = ( +/obj/floor_decal/corner/red/bordercorner, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rUf" = ( +/obj/machinery/door/airlock/mining{ + dir = 4; + name = "Supply Office"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"rUl" = ( +/obj/structure/sign/science_1{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"rUn" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"rUp" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"rUv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"rUB" = ( +/obj/structure/lattice, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"rUE" = ( +/obj/machinery/atmospherics/unary/tank/oxygen{ + volume = 3200 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"rUI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/green{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"rUK" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"rUW" = ( +/obj/item/frame/apc, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/stack/tile/walnut{ + pixel_y = 19 + }, +/turf/simulated/floor/plating, +/area/vacant/bar) +"rVa" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"rVe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"rVf" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/sparker{ + id_tag = "engines-1"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"rVB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass/security{ + name = "Brig Wing" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/port) +"rVJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"rVK" = ( +/obj/floor_decal/corner/red, +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"rVM" = ( +/obj/decal/cleanable/flour, +/turf/simulated/floor/plating, +/area/vacant/mess) +"rVO" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + dir = 8; + name = "Engineer Bay Lobby" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/center) +"rVS" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"rVT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"rVY" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/expedition) +"rWe" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"rWg" = ( +/turf/simulated/open, +/area/maintenance/seconddeck/aftstarboard) +"rWi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rWn" = ( +/obj/machinery/power/port_gen/pacman/mrs{ + anchored = 1 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"rWp" = ( +/obj/floor_decal/corner/grey{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"rWt" = ( +/obj/structure/hygiene/drain/bath, +/turf/simulated/floor/pool, +/area/crew_quarters/sauna) +"rWw" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/civilian{ + name = "Central Stairwell" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/central_stairwell) +"rWy" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"rWz" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/seconddeck/port) +"rWD" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/foreport) +"rWJ" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"rWL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"rWN" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille/regular, +/obj/structure/curtain{ + color = "#990099"; + name = "church curtain" + }, +/turf/simulated/floor/plating, +/area/chapel/main) +"rWO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"rWR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"rWV" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"rWX" = ( +/obj/floor_decal/spline/fancy/black/corner, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"rWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"rXd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"rXf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"rXh" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/gas, +/obj/item/device/scanner/plant, +/obj/item/device/scanner/health, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"rXn" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"rXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"rXt" = ( +/obj/floor_decal/corner/green/bordercee, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"rXu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"rXw" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"rXK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"rXM" = ( +/obj/floor_decal/corner/brown/mono, +/obj/machinery/computer/modular/preset/dock{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"rXW" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"rYg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"rYz" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"rYC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"rYJ" = ( +/obj/machinery/light, +/obj/machinery/computer/guestpass{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/flora/pottedplant/unusual, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/research) +"rYT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"rYW" = ( +/obj/structure/closet/crate/freezer, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/firstaid, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"rYX" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"rYZ" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"rZc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"rZd" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 8 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_starboard) +"rZl" = ( +/obj/machinery/portable_atmospherics/canister/helium{ + start_pressure = 14999 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"rZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"rZt" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/machinery/light, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"rZv" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"rZL" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"rZM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"rZQ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"rZR" = ( +/obj/structure/table/woodentable, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/folder/red{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/folder/red{ + pixel_x = 4 + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"rZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"rZZ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"sad" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"sae" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/yellow/bordercorner, +/obj/machinery/camera/network/fourth_deck{ + dir = 8; + c_tag = "Fourth Deck - Aft Stairwell" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"sah" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"sak" = ( +/obj/random_multi/single_item/space_rabbit, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sar" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"sas" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"sat" = ( +/obj/structure/table/rack, +/obj/item/storage/firstaid/adv{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv{ + pixel_y = -10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"saA" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"saI" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/button/alternate/door{ + id_tag = "MedbayER"; + pixel_y = 27; + pixel_x = 8; + dir = 9; + name = "Critical Wing Second Exit" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"saJ" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/pizzabox/margherita, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"saO" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"saT" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"saX" = ( +/obj/structure/bed/sofa/m/brown, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"sbe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sbo" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lime/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"sbp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"sbq" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/corner/green/half, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"sbr" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/aftstarboard) +"sbs" = ( +/obj/floor_decal/industrial/traffic/corner{ + dir = 8; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"sbx" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/landmark{ + name = "JoinLateCryo" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/bridge) +"sbF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/camera/network/hangar{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"sbG" = ( +/obj/machinery/computer/mining, +/obj/machinery/door/firedoor, +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"sbJ" = ( +/obj/structure/bed/chair/rounded/yellow{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"sbL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sbP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sbT" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/landmark{ + name = "JoinLateCyborg" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"sbV" = ( +/obj/machinery/atmospherics/valve{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"sbX" = ( +/obj/structure/sign/warning/compressed_gas, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1port) +"sbY" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + sort_type = "Research Director"; + name = "Research Director" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"scf" = ( +/obj/floor_decal/industrial/traffic{ + dir = 6; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/structure/bed/chair/office/purple, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"scj" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"sck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobioaqua"; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/southright, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"scs" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"scx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 1 + }, +/obj/machinery/radio_beacon, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"scz" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"scB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"scE" = ( +/obj/machinery/stasis_cage, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"scO" = ( +/obj/floor_decal/techfloor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"scS" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"scU" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"scY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"sdb" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/artifact, +/obj/machinery/anomaly_container, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"sdd" = ( +/obj/structure/table/steel, +/obj/item/storage/box/glasses/rocks, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"sdg" = ( +/obj/structure/table/woodentable_reinforced/mahogany/walnut, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"sdo" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "armory" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/armory/lobby) +"sdr" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sdt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"sdx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"sdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_x = 29 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"sdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"sdE" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"sdG" = ( +/obj/machinery/space_heater/stationary/on{ + pixel_y = 30 + }, +/obj/structure/table/woodentable, +/obj/item/reagent_containers/glass/bucket/wood{ + pixel_y = 5 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"sdI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"sdS" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"sef" = ( +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#aa5f61"; + color = "#aa5f61" + }, +/turf/simulated/open, +/area/hallway/primary/firstdeck/central_stairwell) +"ses" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/pcarrier/medium, +/obj/item/clothing/suit/armor/pcarrier/medium, +/obj/item/clothing/suit/armor/pcarrier/medium, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + dir = 8; + pixel_x = 22 + }, +/obj/item/clothing/accessory/arm_guards, +/obj/item/clothing/accessory/arm_guards, +/obj/item/clothing/accessory/arm_guards, +/obj/item/clothing/accessory/leg_guards, +/obj/item/clothing/accessory/leg_guards, +/obj/item/clothing/accessory/leg_guards, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/armband, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"seu" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"sew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"sez" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"seA" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"seC" = ( +/obj/structure/closet/l3closet/virology, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"seF" = ( +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"seK" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"seP" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/canister) +"seZ" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"sfh" = ( +/obj/machinery/space_heater, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"sfr" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/landmark{ + name = "JoinLateCyborg" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"sfu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"sfH" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/staging) +"sfM" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"sfO" = ( +/obj/machinery/door/window/northright{ + name = "Armory Desk"; + req_access = newlist() + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "armory_shutters"; + name = "Armory Desk" + }, +/obj/paint_stripe/red, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/armory) +"sfU" = ( +/obj/machinery/flasher{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"sfW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/firstaid/surgery, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"sfZ" = ( +/obj/machinery/suit_storage_unit/security/alt, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"sgf" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"sgn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/chapel/mortuary) +"sgo" = ( +/obj/structure/catwalk, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sgt" = ( +/obj/machinery/suit_storage_unit/explorer, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"sgv" = ( +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Security"; + departmentType = 5; + pixel_y = -32 + }, +/obj/item/device/taperecorder, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 8; + pixel_x = 14 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"sgw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"sgz" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/conveyor{ + dir = 4; + id = "compactor" + }, +/obj/machinery/pile_ripper{ + active_power_usage = 300 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"sgD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"sgF" = ( +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"sgG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"sgL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"sgN" = ( +/obj/floor_decal/corner/lightgrey/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cola{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"sgV" = ( +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet, +/area/vacant/dormintories) +"sgZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"sha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Head of Security"; + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"shf" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"shn" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/gravity_generator/main/station, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"sht" = ( +/obj/structure/flora/pottedplant/thinbush, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"shv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"shy" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/space, +/area/space) +"shE" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"shF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"shG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"shL" = ( +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"shP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"shR" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"shU" = ( +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/carpet, +/area/crucian_hangar/start) +"shV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"shX" = ( +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -1 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -8; + pixel_x = -32 + }, +/turf/simulated/open, +/area/hallway/primary/seconddeck/aft_stairwell) +"shZ" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + name = "Xenobotany Lab Access"; + id_tag = "xenobotany_access_inner" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/xenoflora) +"sij" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"siw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"siy" = ( +/obj/machinery/door/airlock/research{ + name = "Analysis Lab" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"siB" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"siD" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"siF" = ( +/obj/machinery/button/toggle/valve/nacelle/third{ + pixel_x = -6; + pixel_y = 25; + id_tag = "RE2F"; + name = "Fourth Deck Port Nacelle Fuel Control" + }, +/obj/machinery/button/toggle/valve/nacelle/first{ + pixel_x = -6; + pixel_y = 34; + id_tag = "RE4F"; + name = "First Deck Port Nacelle Fuel Control" + }, +/obj/machinery/button/toggle/valve/nacelle/fourth{ + pixel_x = 6; + pixel_y = 25; + id_tag = "RE1F"; + name = "Fourth Deck Starboard Nacelle Fuel Control" + }, +/obj/machinery/button/toggle/valve/nacelle/second{ + pixel_x = 6; + pixel_y = 34; + id_tag = "RE3F"; + name = "First Deck Starboard Nacelle Fuel Control" + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"siT" = ( +/obj/machinery/space_heater, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"siU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"siV" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"sjc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/b_green/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"sjf" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("petrov1","petrov2","petrov3"); + req_access = list("ACCESS_PETROV_HELM") + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"sju" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Restroom" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/head/deck3) +"sjy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"sjA" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod5/station) +"sjM" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"sjN" = ( +/obj/random/junk, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"sjQ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"sjU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1port) +"sjZ" = ( +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/tele_projector{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_teleport) +"skb" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/scan) +"ske" = ( +/obj/machinery/navbeacon/sierra/SD_fore1, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -24; + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"skh" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/records{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"skl" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"skm" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"skp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"skv" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Power Storage"; + req_access = newlist(); + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/auxpower) +"sky" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"skA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/sauna_bench/middle/north, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"skE" = ( +/obj/floor_decal/corner/yellow/half, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"skJ" = ( +/obj/machinery/smartfridge/drying_rack{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"skO" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/airlock_brace{ + req_access = list("ACCESS_AI_UPLOAD") + }, +/obj/machinery/door/blast/regular{ + id_tag = "ai_upload_blast"; + name = "AI Upload" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"skP" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4; + target_pressure = 15000 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"skT" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"skW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"slf" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"sll" = ( +/obj/structure/hygiene/toilet{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/vacant/cargo) +"slm" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/locker) +"sln" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/ce) +"slo" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"slu" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"slD" = ( +/obj/floor_decal/corner/black/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"slE" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"slF" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/cell1) +"slH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"slL" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"slS" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3port) +"slW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Security Checkpoint" + }, +/obj/machinery/door/window/southleft{ + autoset_access = 0; + name = "Security Checkpoint" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"smh" = ( +/obj/fluid_mapped, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"smr" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"smt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"smx" = ( +/obj/floor_decal/industrial/hatch/red, +/obj/machinery/button/crematorium{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"smH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"smL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + sort_type = "Drone Station"; + name = "Drone Station" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"smZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft_stairwell) +"sna" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/seconddeck) +"snt" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/sleep/cryo/bridge) +"snB" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"snH" = ( +/obj/structure/bed/sofa/r/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"snI" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"snP" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/hallway/primary/firstdeck/fore) +"snS" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"sob" = ( +/obj/machinery/vending/games, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"sof" = ( +/obj/floor_decal/carpet/orange, +/obj/floor_decal/carpet/orange{ + dir = 4 + }, +/obj/floor_decal/carpet/orange{ + dir = 6 + }, +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_containers/food/drinks/glass2/mug, +/turf/simulated/floor/carpet/orange, +/area/crew_quarters/heads/office/ce/cobed) +"sor" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/assembly/robotics) +"sou" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"soD" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/corner/red/bordercorner2, +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"soE" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3starboard) +"soJ" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"soM" = ( +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"soN" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "fd_starboard_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"soQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"soR" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"soS" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"soV" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"soX" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/solarpanel, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"soZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_sergeant_blastdoor"; + name = "Warden's Blastdoor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + name = "Security Maintenance" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/sergeant) +"spe" = ( +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"spg" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/engine_setup/coolant_canister, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"spi" = ( +/obj/structure/table/woodentable, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"spk" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_sensor"; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "centcom_shuttle_dock_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"spm" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"sps" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"spC" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6, +/obj/machinery/navbeacon/sierra/SD_afthallway1, +/mob/living/bot/cleanbot{ + name = "Balto"; + will_patrol = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"spO" = ( +/obj/structure/bed/chair/padded/green{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/media/music_writer{ + pixel_y = -27 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"spV" = ( +/obj/floor_decal/industrial/loading, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hop_road_shutters"; + name = "HoP Line's Shutters"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"spW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"sqb" = ( +/obj/floor_decal/corner/paleblue/full, +/obj/structure/closet/cabinet, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/cmo/cobed) +"sqc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"sqg" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/crew_quarters/visitors) +"sqj" = ( +/obj/machinery/door/airlock/external/bolted{ + frequency = 1380; + id_tag = "escape_pod_1_hatch"; + name = "Escape Pod One Hatch" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod1/station) +"sqm" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"sqq" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sqv" = ( +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"sqy" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "firing_range_outer"; + name = "Firing Range Airlock" + }, +/obj/machinery/access_button/airlock_exterior{ + desc = "Security access required."; + dir = 1; + master_tag = "firing_range"; + name = "exterior access button"; + pixel_x = -24; + pixel_y = 10; + req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY") + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"sqA" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/table/woodentable/ebony, +/obj/item/stack/medical/splint{ + pixel_y = 12; + pixel_x = -4 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_y = -7; + pixel_x = -4 + }, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"sqD" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"sqF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"sqQ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/stack/package_wrap/cargo_wrap, +/obj/item/hand_labeler, +/obj/item/device/destTagger, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/floor_decal/corner/yellow/mono, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"sqV" = ( +/turf/simulated/wall/prepainted, +/area/vacant/bar) +"sra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"srf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"srn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"srp" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"srr" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"sru" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"srx" = ( +/obj/machinery/seed_storage/garden{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"srL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/sleeper{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"srV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"srX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"srY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Private Room"; + id_tag = "bar_private_room_1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"ssk" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/carpet/green, +/obj/floor_decal/carpet/green{ + dir = 4 + }, +/obj/floor_decal/carpet/green{ + dir = 6 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"ssm" = ( +/obj/structure/table/standard, +/obj/item/hand_labeler, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"ssq" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"sst" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/blue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ssv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"ssx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"ssI" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"ssJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"ssS" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ssT" = ( +/obj/machinery/navbeacon/sierra/FD_aftcentralhallway1, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Aft Hallway Chemistry"; + dir = 1 + }, +/mob/living/bot/cleanbot{ + name = "Monro"; + will_patrol = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sta" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"std" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"stn" = ( +/obj/machinery/sparker{ + id_tag = "Isocell1"; + pixel_x = -18 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"sto" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"stp" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"sts" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"stv" = ( +/obj/item/target/syndicate, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"stw" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/garden_room) +"stz" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"stB" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/storage/eva) +"stC" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"stI" = ( +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/industrial/traffic{ + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"stL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/safe_room/firstdeck) +"stN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"stR" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"sul" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"sup" = ( +/obj/floor_decal/industrial/warning, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sur" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"sut" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security{ + dir = 4; + name = "Guards' Bathroom" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/breakroom) +"suy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"suB" = ( +/obj/floor_decal/borderfloor{ + color = null; + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"suH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/woodentable_reinforced/mahogany, +/obj/item/device/flashlight/lamp/lava/cyan{ + pixel_y = -5; + pixel_x = 4 + }, +/turf/simulated/floor/carpet/magenta, +/area/crew_quarters/cafe) +"suJ" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/black/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"suL" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/abandoned_hydroponics) +"suO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"suP" = ( +/obj/structure/table/woodentable/maple, +/obj/item/device/flashlight/lantern, +/obj/machinery/light, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"suY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/grey, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/interrogation) +"suZ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"sva" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"svc" = ( +/obj/machinery/shieldwallgen, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"sve" = ( +/obj/structure/table/woodentable/maple, +/obj/item/material/ashtray/glass, +/obj/item/storage/fancy/smokable/luckystars{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/item/storage/fancy/matches/matchbox, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"svl" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"svv" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"svy" = ( +/obj/shuttle_landmark/sierra/deck1/crucian, +/turf/space, +/area/space) +"svE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"svN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"svX" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"swe" = ( +/obj/structure/dispenser/oxygen, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"swf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"swn" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Forensic Office"; + sort_type = "Forensic Office" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"swy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"swA" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/paleblue/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"swB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"swD" = ( +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"swH" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Outer Ring Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_maint) +"swN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"swV" = ( +/obj/machinery/door/blast/shutters/open{ + name = "Supply Desk Shutters"; + id_tag = "sup_office"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"sxb" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"sxf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/power/apc/charon{ + dir = 8; + name = "west bump"; + pixel_x = -25; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"sxg" = ( +/obj/structure/bed/sofa/l/beige, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Bar - Main Hall"; + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"sxq" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"sxv" = ( +/obj/floor_decal/corner/black{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"sxz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"sxB" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/airlock) +"sxF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"sxH" = ( +/obj/machinery/camera/network/engine{ + c_tag = "Engine - R-UST - Control"; + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"sxI" = ( +/obj/structure/table/standard, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the prototype exhaust."; + id_tag = "prototype_exhaust"; + name = "Chamber Exhaust"; + pixel_x = -5; + pixel_y = 8 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the observation shutters."; + id_tag = "fusion_observation"; + name = "Chamber Observation"; + pixel_x = 5; + pixel_y = 8 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine containment doors."; + id_tag = "prototype_chamber_blast"; + name = "Chamber Containment"; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"sxJ" = ( +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"sxK" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"sxM" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"sxS" = ( +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sxT" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"sxU" = ( +/obj/structure/bed/padded, +/obj/floor_decal/corner/grey/full, +/obj/item/bedsheet/blue, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"sxV" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/docking) +"sxZ" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"syd" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"syi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"syj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Janitor Closet" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"syq" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/command/bsa) +"syr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"syu" = ( +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"syv" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/decal/cleanable/dirt, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"syx" = ( +/obj/machinery/vitals_monitor, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"syB" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"syI" = ( +/obj/machinery/beehive, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"syJ" = ( +/obj/structure/sign/warning/secure_area, +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/hallway) +"syK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"syO" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"syP" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/space, +/area/space) +"syQ" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/stack/material/rods/fifty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"syU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"sze" = ( +/obj/machinery/air_sensor{ + id_tag = "co2_sensor" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/atmos) +"szf" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Fore Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"szj" = ( +/obj/structure/table/standard, +/obj/item/storage/box/botanydisk, +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"szk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_cyborg_upload) +"szp" = ( +/obj/machinery/vending/coffee, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"szq" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"szs" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"szv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Cryo Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/sleep/cryo) +"szw" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"szH" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"szJ" = ( +/obj/structure/bed/chair/comfy/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"szK" = ( +/obj/structure/sign/warning/airlock{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"szN" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/structure/sign/warning/fire{ + dir = 1; + pixel_y = -40 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 24; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/incinerator) +"szP" = ( +/obj/floor_decal/corner/yellow/three_quarters, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Supply locker room"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"szW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/hostile/xenobio, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"szX" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"szZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "CO22p_out"; + initialize_directions = 1; + internal_pressure_bound = 1000; + internal_pressure_bound_default = 1000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"sAc" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/storage, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"sAf" = ( +/obj/structure/bed/sofa/r/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"sAs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"sAu" = ( +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3port) +"sAy" = ( +/obj/machinery/smartfridge{ + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"sAA" = ( +/obj/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"sAG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/aftport) +"sAK" = ( +/obj/fluid_mapped, +/obj/item/clothing/mask/snorkel, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sAM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"sAP" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"sAS" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"sAX" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"sBe" = ( +/obj/structure/catwalk, +/obj/structure/sign/warning/fall{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"sBz" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/constructable_frame/machine_frame, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"sBA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"sBG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"sBO" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"sBQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"sBR" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"sBY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Actor's Room" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/actor) +"sBZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"sCf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"sCh" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"sCl" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/engineering/atmos) +"sCm" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"sCv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "d3portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"sCx" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Fore Port Access"; + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"sCB" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"sCP" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/structure/closet/medical_wall{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"sCT" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass/civilian{ + name = "Library" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/lounge) +"sCV" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"sDd" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"sDf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"sDj" = ( +/obj/structure/bed/chair/wood/maple{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"sDk" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 2; + id_tag = "prison_lobby_window" + }, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 1; + autoset_access = 0 + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + name = "Prison Lobby Windows Shutters"; + id_tag = "prison_lobby_window" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/security/sierra/brig) +"sDn" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"sDo" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/landmark/start{ + name = "Research Director" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"sDs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"sDx" = ( +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"sDz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"sDE" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"sDG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"sDH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/mining{ + name = "Cargo Prep" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"sDI" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/engineering/atmos) +"sDJ" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"sDM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"sDP" = ( +/obj/structure/table/woodentable/mahogany, +/obj/item/flora/pottedplantsmall/leaf{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"sDT" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/paper/sierra/medical_blood, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/glass{ + pixel_y = 7; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"sEd" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar{ + id = "auxsolarstrbbridge"; + name = "Bridge Auxiliary Solar Array" + }, +/obj/floor_decal/solarpanel, +/turf/simulated/floor/reinforced, +/area/solar/bridge_starboard) +"sEe" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Escape Pods - Starboard - Dock"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"sEf" = ( +/obj/structure/hygiene/toilet{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"sEj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"sEl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"sEn" = ( +/turf/simulated/wall/prepainted, +/area/medical/mentalhealth/therapyroom) +"sEr" = ( +/obj/floor_decal/corner/purple/half{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"sEs" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"sEt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "First Deck Substation"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/firstdeck) +"sEy" = ( +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"sED" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"sEG" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_l) +"sEP" = ( +/obj/item/material/knife/kitchen/cleaver, +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/foreport) +"sEU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sFb" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"sFc" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"sFe" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/glass/bolted/cycling{ + id_tag = "firing_range_inner"; + name = "Firing Range Airlock" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "firing_range"; + name = "interior access button"; + pixel_x = -24; + pixel_y = -10; + req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL")) + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"sFf" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/item/book/manual/chef_recipes, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"sFg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"sFm" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sFs" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sFu" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"sFz" = ( +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/storage/backpack/dufflebag, +/obj/item/storage/backpack/dufflebag, +/obj/item/storage/backpack/dufflebag, +/obj/item/storage/backpack/dufflebag, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"sFR" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"sFS" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"sFU" = ( +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"sFX" = ( +/obj/structure/largecrate, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"sGb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"sGe" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/artbru, +/obj/item/reagent_containers/food/drinks/cans/artbru, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/reagent_containers/food/drinks/cans/speer, +/obj/item/storage/box/glasses/square, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/garden_room) +"sGg" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"sGv" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"sGB" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/blast_door{ + id_tag = "xenobio4"; + name = "Containment Blast Doors"; + pixel_x = -4; + req_access = list("ACCESS_RESEARCH") + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobio4_vent"; + name = "Cell 4 Vent"; + pixel_x = 8; + req_access = list("ACCESS_RESEARCH") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"sGC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/woodentable_reinforced/mahogany, +/obj/item/material/ashtray/bronze{ + pixel_y = -6; + pixel_x = 6 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"sGF" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"sGG" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/airlock) +"sGM" = ( +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"sGP" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"sGW" = ( +/obj/structure/table/standard, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/box/detergent, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"sGZ" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"sHd" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/prepainted, +/area/hallway/primary/fourthdeck/aft_stairwell) +"sHi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/landmark{ + name = "lightsout" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"sHm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/forestarboard) +"sHp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"sHs" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/aft_stairwell) +"sHv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"sHw" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Petrov Security Desk" + }, +/obj/machinery/door/window/brigdoor/westright{ + dir = 1; + name = "Petrov Security Desk" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "concheckwindow2"; + name = "Research Checkpoint Shutters"; + opacity = 0 + }, +/obj/paint/nt_white, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf/steel{ + dir = 4 + }, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/security) +"sHD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"sHE" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/command{ + name = "Bridge Access" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/nano) +"sHG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"sHU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"sIf" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"sIg" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/clothing/head/soft/orange, +/obj/item/clothing/head/soft/orange, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"sIh" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"sIi" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"sIl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"sIm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"sIo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm/monitor/isolation/xenobio{ + alarm_id = "xenobio3_alarm"; + dir = 8; + name = "Xenobiology Third Xenopen"; + pixel_x = 23 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"sIq" = ( +/obj/structure/table/glass, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"sIr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"sIs" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/machinery/button/blast_door{ + id_tag = "vir_blast_window"; + name = "Virology windows"; + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"sIt" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"sIv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenoflora Lab Maintenance"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/misc_lab) +"sIA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"sIB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"sID" = ( +/obj/structure/bed/sofa/m/teal{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"sIK" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Entry"; + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + name = "AI Entry Chamber turret control"; + pixel_y = -32; + control_area = list(/area/turret_protected/ai_teleport) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_teleport) +"sIL" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"sIN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/random/snack, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"sIR" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"sIS" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Fore Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"sIU" = ( +/obj/structure/bed/chair/padded/black{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"sIV" = ( +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"sIW" = ( +/obj/structure/bed/chair/comfy/purple{ + dir = 4 + }, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/office) +"sJb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"sJv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"sJC" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"sJE" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio1"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"sJJ" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"sJQ" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "thruster vent access"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/door/blast/regular{ + id_tag = "ThrusterVents"; + name = "Thruster Blast Door" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"sJU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"sJY" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/security) +"sKa" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"sKf" = ( +/obj/structure/table/standard, +/obj/item/device/camera, +/obj/item/hand_labeler{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/pen{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"sKi" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"sKn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"sKr" = ( +/obj/structure/catwalk, +/turf/space, +/area/space) +"sKu" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"sKx" = ( +/turf/simulated/wall/ocp_wall, +/area/engineering/engine_room) +"sKy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/guppy_hangar/start) +"sKC" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sKD" = ( +/obj/structure/table/rack, +/obj/item/device/radio{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/device/radio{ + pixel_y = 2; + pixel_x = 1 + }, +/obj/item/crowbar/prybar, +/obj/item/crowbar/prybar, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"sKE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"sKH" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "sierra_surgery2"; + name = "Operating Room 2"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/holosign/surgery{ + dir = 4; + id_tag = "sierra_surgery2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"sKJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"sKM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"sKN" = ( +/obj/structure/bed/chair/shuttle/blue{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"sKQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"sKT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"sKW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/light/small, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"sKX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"sLe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/structure/cable/yellow, +/obj/machinery/power/port_gen/pacman{ + sheets = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"sLg" = ( +/turf/simulated/wall/prepainted, +/area/vacant/dormintories) +"sLh" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/exploration) +"sLl" = ( +/obj/floor_decal/corner/lime/border{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"sLq" = ( +/obj/structure/table/standard, +/obj/random/snack, +/obj/random/snack, +/obj/random/smokes, +/obj/random/clipboard, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/floor_decal/corner/brown/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/dormintories) +"sLu" = ( +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sLE" = ( +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/pizzabox/vegetable{ + pixel_y = 12 + }, +/obj/structure/sign/warning/smoking{ + dir = 8; + pixel_x = 33 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"sLI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/bridgedeck/port) +"sLL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"sLM" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"sLT" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "ai_starboard_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"sLV" = ( +/obj/structure/bed/chair/office/comfy/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/captain/secret_room) +"sMd" = ( +/obj/machinery/door/airlock/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/garden_room) +"sMe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/command/bsa) +"sMf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/navbeacon/sierra/FD_forehallway_starboard, +/turf/simulated/floor/tiled, +/area/security/brig) +"sMj" = ( +/obj/floor_decal/corner/black/full, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos/cobed) +"sMp" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "o23p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"sMw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"sMx" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng3"; + name = "First Deck Starboard Access"; + pixel_y = 21 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/thruster/d1starboard) +"sMy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"sMH" = ( +/obj/floor_decal/corner/purple/border, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"sMQ" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/cryo/thirddeck) +"sMR" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"sMW" = ( +/obj/structure/table/glass, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"sMY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/obj/structure/sign/warning/pods/south{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/borderfloorblack/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"sNa" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"sNg" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"sNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"sNt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos) +"sNB" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/random_multi/single_item/boombox, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"sNE" = ( +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"sNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/medical/virology/lab) +"sNN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"sNP" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"sNS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"sNT" = ( +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/vending/generic, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"sNV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"sNW" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/table/steel, +/obj/item/device/radio/announcer/subspace, +/obj/machinery/power/apc/hyper{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"sNZ" = ( +/obj/paint_stripe/nt_red, +/obj/paint/nt_white, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod1/station) +"sOd" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"sOi" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/commissary) +"sOk" = ( +/obj/structure/reagent_dispensers/water_cooler{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"sOJ" = ( +/obj/structure/table/glass, +/obj/machinery/dnaforensics, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/forensic/lab) +"sON" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/reinforced, +/area/turret_protected/ai_maint) +"sOO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"sPa" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border, +/obj/item/paper_bin, +/obj/item/stamp/cmo, +/obj/item/sticky_pad/random, +/obj/item/pen, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"sPn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"sPo" = ( +/obj/decal/cleanable/cobweb, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber2pV"; + name = "Fourth Deck Port Chamber Vent"; + pixel_x = -6; + pixel_y = 25 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber4pV"; + name = "First Deck Port Chamber Vent"; + pixel_x = -6; + pixel_y = 34 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber1pV"; + name = "Fourth Deck Starboard Chamber Vent"; + pixel_x = 6; + pixel_y = 25 + }, +/obj/machinery/button/blast_door{ + id_tag = "cChamber3pV"; + name = "First Deck Starboard Chamber Vent"; + pixel_x = 6; + pixel_y = 34 + }, +/obj/machinery/button/ignition{ + id_tag = "engines"; + pixel_x = 16; + pixel_y = 29 + }, +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"sPq" = ( +/obj/machinery/optable, +/obj/floor_decal/corner/grey_alt{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/red, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"sPt" = ( +/turf/simulated/wall/prepainted, +/area/bridge/meeting_room) +"sPu" = ( +/obj/machinery/navbeacon/sierra/FD_aftcentralhallway2, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/sign/chemistry{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sPw" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/cell/high, +/obj/random/powercell, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/expedition{ + c_tag = "Expedition - Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"sPB" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"sPD" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/hygiene/sink{ + pixel_y = -12 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"sPE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"sPH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "petrov_shuttle_dock_pump" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"sPM" = ( +/obj/structure/bed/sofa/m/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"sPO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"sPR" = ( +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "hydro<-bar"; + name = "Hydroponics Shutters"; + pixel_x = 24; + pixel_y = 6; + req_access = list("ACCESS_BAR") + }, +/obj/machinery/button/blast_door{ + dir = 8; + id_tag = "bar<-cafe"; + name = "Bar Shutters"; + pixel_x = 24; + pixel_y = -6; + req_access = list("ACCESS_BAR") + }, +/obj/machinery/light/led/small, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/machinery/reagent_temperature, +/obj/item/storage/bar_fruit_jar{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"sPT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"sPX" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"sQk" = ( +/obj/paint_stripe/red, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cadetwindow" + }, +/turf/simulated/floor/plating, +/area/security/range) +"sQs" = ( +/turf/simulated/floor/plating, +/area/shuttle/petrov/test_room) +"sQu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"sQx" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"sQz" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_starboard_pump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"sQG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/computer/air_control{ + name = "Nacelle Chamber Monitoring"; + sensor_name = "Chamber"; + sensor_tag = "ReacEng2" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"sQJ" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"sQQ" = ( +/obj/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"sQS" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"sQV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stock_parts/manipulator, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"sQY" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = -14; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"sQZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"sRc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"sRj" = ( +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/structure/curtain/open/privacy, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"sRo" = ( +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "civsafedoor"; + name = "Second Deck Safe Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"sRu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"sRw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"sRy" = ( +/obj/machinery/button/windowtint{ + pixel_y = -24; + dir = 1; + id = "cafewindow"; + pixel_x = 6 + }, +/obj/structure/bed/chair/rounded/brown{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 10 + }, +/obj/floor_decal/carpet/blue{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/cafe/upper) +"sRC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"sRF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/safe_room/bridge) +"sRG" = ( +/obj/structure/table/standard, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/vacant/gambling) +"sRN" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"sRS" = ( +/obj/machinery/tele_projector{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"sSb" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"sSd" = ( +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light/led/small{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 8 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"sSe" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"sSp" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/taperoll/engineering/applied, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"sSq" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"sSy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"sSz" = ( +/obj/item/reagent_containers/spray/sterilizine, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"sSB" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"sSC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Head Of Security"; + sort_type = "Head Of Security" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"sSD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"sSF" = ( +/obj/machinery/light/spot, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"sSL" = ( +/obj/structure/closet/emcloset, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"sSN" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"sSO" = ( +/obj/structure/coatrack, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"sSX" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/lounge/upper) +"sTh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"sTi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"sTq" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/chair/wood/maple, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"sTr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"sTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"sTx" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sTF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"sTL" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"sTO" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"sTU" = ( +/turf/simulated/wall/prepainted, +/area/medical/mentalhealth) +"sTZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"sUb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"sUj" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"sUt" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Heat Exchanger Input" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/titanium, +/area/shuttle/petrov/gas) +"sUA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"sUC" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/random/vendor/contraband/maintenance{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"sUI" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"sUO" = ( +/obj/structure/closet/crate/secure/biohazard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/eva) +"sUP" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"sUQ" = ( +/obj/structure/towel/pink_stripped, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"sUW" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"sVc" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration/briefing_room) +"sVd" = ( +/obj/floor_decal/corner/black{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"sVe" = ( +/obj/machinery/optable, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"sVf" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"sVh" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "bo_windows"; + pixel_x = -6; + pixel_y = -21 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -21; + pixel_x = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"sVl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"sVq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"sVs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"sVt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"sVA" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"sVB" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft_stairwell) +"sVH" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder/juicer, +/obj/item/reagent_containers/glass/beaker/large, +/obj/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"sVI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"sVK" = ( +/obj/floor_decal/corner/black/half{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"sVN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/warning/hot_exhaust{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"sVS" = ( +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"sWf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"sWj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/rotating_alarm/supermatter{ + dir = 8; + pixel_x = 14 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"sWn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"sWv" = ( +/obj/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/bed/chair/pew/mahogany, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"sWy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"sWH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"sWJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/warm{ + dir = 4; + pixel_x = -24; + req_access = list(); + target_temperature = 398.15; + temperature = 343.15 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"sWY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"sWZ" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"sXd" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/space) +"sXg" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"sXh" = ( +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"sXu" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"sXy" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/scanner/gas, +/obj/item/device/t_scanner, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"sXB" = ( +/obj/floor_decal/corner/green/three_quarters, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"sXC" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"sXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"sXI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"sXS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"sXZ" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod4/station) +"sYe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sYg" = ( +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/rd/nt, +/obj/structure/table/glass/boron, +/obj/item/toy/desk/newtoncradle{ + pixel_x = 4; + pixel_y = -34 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"sYq" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"sYx" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/vending/snack, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"sYz" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"sYD" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/adv{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"sYL" = ( +/obj/landmark/test/safe_turf, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"sYN" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"sYU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/sofa/l/black{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"sYX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"sZd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"sZi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sZm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"sZq" = ( +/obj/machinery/vending/snack, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/smoking{ + dir = 8; + pixel_x = 33 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"sZs" = ( +/obj/machinery/photocopier, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"sZx" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/bolted/cycling{ + name = "Xenobotany Lab Access"; + id_tag = "xenobotany_access_outer" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/xenoflora) +"sZz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"sZF" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"sZT" = ( +/obj/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"sZU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/medical/staging) +"sZZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "td_port" + }, +/obj/floor_decal/industrial/warning/cee, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"taa" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/fourthdeck/forestarboard) +"tac" = ( +/obj/machinery/air_sensor{ + id_tag = "engine_sensor" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"tah" = ( +/obj/machinery/camera/all/command{ + c_tag = "AI Core - Fore"; + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/flasher{ + dir = 4; + id_tag = "ai_core"; + pixel_x = -24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"taj" = ( +/obj/structure/sign/directions/med{ + pixel_y = 30 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"tam" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"tao" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftport) +"taq" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/closet/crate/secure/biohazard, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"taA" = ( +/obj/structure/displaycase{ + desc = "A display case for prized possessions. It taunts you to kick it. Her card reader is damaged, you can also notice some transparent formations on the glass."; + req_access = list("ACCESS_CENT_GENERAL") + }, +/obj/item/gun/energy/laser{ + desc = "A Hephaestus Industries G40E carbine, designed to kill with concentrated energy blasts. He seems to lack some details."; + origin_tech = list("combat"=2,"magnets"=1); + projectile_type = /obj/item/projectile/beam/practice + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"taB" = ( +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"taC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"taE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"taX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"tbc" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"tbn" = ( +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/centralstarboard) +"tbv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"tbD" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/item/folder/nt, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"tbI" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"tbO" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"tbT" = ( +/obj/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/table/woodentable/walnut, +/obj/structure/flora/pottedplant/drooping{ + pixel_y = 13; + pixel_x = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"tbY" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "engineroomvent"; + name = "Engine Room Vent" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"tcb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"tch" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor{ + id_tag = "solar_starboard_sensor"; + master_tag = "solar_starboard"; + pixel_x = 10; + pixel_y = 27 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "solar_starboard"; + pixel_x = -5; + pixel_y = 21; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"tcn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"tco" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"tcu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"tcy" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"tcB" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"tcE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"tcJ" = ( +/obj/floor_decal/spline/fancy/black, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"tcS" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/woodentable/walnut, +/obj/item/storage/box/donut, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"tcU" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tdh" = ( +/obj/floor_decal/industrial/traffic/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tdi" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"tdl" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/closet/crate/secure{ + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/item/stock_parts/power/apc/buildable, +/obj/item/stock_parts/power/apc/buildable, +/obj/item/stock_parts/power/battery/buildable, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"tdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Bridge Solar Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/solar/bridge_starboard) +"tdq" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"tdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"tdx" = ( +/obj/item/material/ashtray/glass{ + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/black{ + pixel_y = 7 + }, +/obj/structure/table/woodentable_reinforced/ebony, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"tdI" = ( +/obj/structure/bookcase/manuals/medical, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"tdN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_cyborg_upload) +"tdV" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"tdY" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"tee" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/structure/window/boron_reinforced, +/obj/structure/window/boron_reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"tep" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/sierra/suits) +"tez" = ( +/obj/machinery/door/airlock/mining{ + id_tag = "qmdoor-hallway"; + name = "Quartermaster"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/deckofficer) +"teA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/camera/network/hangar{ + c_tag = "Hangar - Xenobiology Entrance"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"teQ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"tfa" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist_sierra, +/obj/structure/window/reinforced, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"tfe" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/medical{ + dir = 8; + door_color = "#4c535b"; + name = "Morgue" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"tfi" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"tfk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"tfl" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"tfs" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/security/sierra/science, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/security{ + c_tag = "Security - RND Checkpoint"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"tfy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"tfE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"tfG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"tfO" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_teleport) +"tfP" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"tfU" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"tfZ" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"tge" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"tgq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"tgt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"tgJ" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4; + name = "Seating"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"tgK" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"tgM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"tgQ" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"thi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"thl" = ( +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"thx" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/green/bordercorner, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon/sierra/FD_forecentralhallway1, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"thy" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"thC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"thP" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"thR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/wall/r_wall, +/area/space) +"thT" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"thW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/level1) +"tih" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/engineering/atmos/storage) +"tin" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/material/ashtray/plastic, +/obj/random/snack, +/obj/random/smokes, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"tix" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"tiA" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/rnd/development) +"tiB" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"tiD" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/package_wrap/cargo_wrap, +/turf/simulated/floor/tiled/dark, +/area/vacant/dungeon) +"tiE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"tiK" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"tiZ" = ( +/obj/structure/railing/mapped, +/obj/structure/cart{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"tjb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"tjd" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical/mortus{ + name = "Observation" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"tji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"tjj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"tjn" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"tjw" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"tjC" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"tjQ" = ( +/obj/structure/closet/secure_closet/decktech, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"tjZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"tkb" = ( +/obj/structure/roller_bed, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"tkg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "borg"; + name = "Cyborg Upload" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"tkp" = ( +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_maint) +"tkt" = ( +/obj/structure/table/rack, +/obj/item/defibrillator/compact/loaded, +/obj/item/defibrillator/compact/loaded, +/obj/item/crowbar/prybar, +/obj/item/crowbar/prybar, +/obj/item/crowbar/prybar, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"tkw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"tkF" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tkL" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23; + pixel_y = 12 + }, +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/rnd/xenobiology/water_cell) +"tkO" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/aft) +"tkT" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tkX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"tkY" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"tli" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"tlm" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Bridge Starboard" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"tlu" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/interrogation) +"tlv" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/machinery/button/windowtint{ + pixel_x = -5; + pixel_y = 24; + id = "bridge_outer_windows" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/nano) +"tlw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/meter, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"tlx" = ( +/obj/structure/closet/secure_closet/engineering_sierra, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/gps, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"tlz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft) +"tlB" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/archaeology, +/obj/item/storage/belt/archaeology, +/obj/item/storage/belt/archaeology, +/obj/item/storage/ore, +/obj/item/storage/ore, +/obj/item/storage/ore, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/mining{ + dir = 4; + c_tag = "Mining - Equipment" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"tlF" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"tlM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tlW" = ( +/obj/floor_decal/industrial/warning, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"tma" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"tmr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"tms" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = 21; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"tmy" = ( +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"tmA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"tmL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"tmM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/starboard) +"tmY" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/corner/black/mono, +/obj/structure/table/standard, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"tng" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tni" = ( +/obj/wallframe_spawn/reinforced/polarized{ + id = "rcheckinner_windows" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/security) +"tnk" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/medical/morgue) +"tnl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/holocontrol) +"tnm" = ( +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tnn" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"tnr" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/red, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/button/blast_door{ + dir = 1; + id_tag = "armory_shutters"; + name = "Desk Shutters"; + pixel_y = -20; + req_access = list("ACCESS_ARMORY") + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"tnx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"tny" = ( +/obj/machinery/computer/prisoner{ + dir = 4 + }, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"tnB" = ( +/obj/structure/table/standard, +/obj/item/device/scanner/health, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/storage/firstaid/radiation, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"tnF" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"tnL" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"tnR" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/sign/warning/airlock{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"tnS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"tnX" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"tnY" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"tnZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/cargo) +"tod" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"tof" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"tok" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"ton" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Internal Affairs Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"top" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"tot" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + id_tag = "auxbar"; + name = "Blast Shutters" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/vacant/bar) +"tow" = ( +/obj/floor_decal/corner/black/border{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"toA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hos) +"toC" = ( +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Lower - Containment Fore"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"toD" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"toF" = ( +/obj/structure/catwalk, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"toK" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"toO" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"toT" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/holocontrol) +"toV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"tpb" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"tpf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"tpi" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"tpp" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/sofa/r/blue{ + dir = 8 + }, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Aft Hallway - Starboard Rooms" + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"tpH" = ( +/turf/simulated/wall/prepainted, +/area/medical/wardhallway) +"tpJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tpK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"tpL" = ( +/turf/simulated/floor/wood/bamboo{ + name = "stairs" + }, +/area/crew_quarters/garden_room) +"tqd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"tqe" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"tqf" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/central_stairwell) +"tqj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"tqr" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"tqv" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "fuel_in"; + pixel_y = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/fuelbay) +"tqw" = ( +/obj/structure/table/standard, +/obj/item/device/geiger, +/obj/item/device/scanner/health, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"tqx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"tqy" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/open, +/area/maintenance/seconddeck/aftstarboard) +"tqE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"tqL" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"tqM" = ( +/obj/machinery/papershredder, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"tqV" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_r) +"tqW" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"trg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"tri" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Fore Hallway - Fore"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"trx" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"trz" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sauna) +"trA" = ( +/obj/machinery/door/firedoor, +/obj/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + dir = 4; + name = "Second Deck Substation" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/seconddeck) +"trC" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"trM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"trR" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"trS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + name = "Control Room" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/security) +"tse" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/hop/cobed) +"tsj" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"tsm" = ( +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/hop, +/obj/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"tsn" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic, +/obj/structure/hygiene/drain, +/obj/structure/hygiene/shower{ + dir = 4 + }, +/obj/machinery/door/window/eastright, +/obj/structure/curtain/open/shower, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"tsv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"tsG" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"tsN" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"tta" = ( +/obj/item/paper_bin, +/obj/item/pen{ + pixel_x = -1 + }, +/obj/item/pen/red{ + pixel_x = 5 + }, +/obj/structure/table/woodentable_reinforced/ebony, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"ttc" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/virology/atmos) +"ttd" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tto" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"ttq" = ( +/obj/structure/table/rack, +/obj/item/device/flashlight/flare/glowstick/random, +/obj/random/single/color/cable_coil, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ttA" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ttD" = ( +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Gravitational Generator" + }, +/obj/structure/cable/green, +/obj/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"ttF" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"ttL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/aftstarboard) +"tud" = ( +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"tun" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"tuB" = ( +/obj/machinery/suit_storage_unit/standard_unit{ + req_access = newlist() + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"tuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"tuF" = ( +/turf/simulated/floor/plating, +/area/vacant/sauna) +"tuG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"tuN" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/foundation, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"tuR" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Third Deck Substation Bypass" + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/substation/thirddeck) +"tuX" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/bridgedeck/aft) +"tvj" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"tvk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"tvm" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"tvr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/rotating_alarm/supermatter{ + pixel_y = 14 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"tvu" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"tvE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/cyan{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"tvF" = ( +/turf/simulated/open, +/area/hallway/primary/seconddeck/central_stairwell) +"tvG" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/omni/filter{ + tag_north = 2; + tag_south = 1; + tag_west = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"tvK" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/rnd/xenobiology/entry2) +"tvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"tvZ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"twd" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/heads/captain/beach) +"twj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"twk" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"twl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"twq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"twv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"twx" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"twz" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs) +"twA" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"twE" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"twH" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"twJ" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"twN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"twO" = ( +/obj/structure/bed/sofa/l/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"twT" = ( +/obj/structure/closet/wardrobe/exploration, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"twU" = ( +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 6; + id_tag = "captaindoor"; + name = "Office Door Control"; + pixel_x = 6; + pixel_y = 24; + req_access = list("ACCESS_CAPTAIN") + }, +/obj/machinery/button/windowtint{ + pixel_y = 24; + pixel_x = -3; + id = "cap_windows" + }, +/obj/machinery/computer/modular/preset/cardslot/command, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"twV" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/floor_decal/spline/fancy/black, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 1; + pixel_y = -13 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"twY" = ( +/obj/structure/closet/l3closet/general, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"twZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"txb" = ( +/obj/random/vendor{ + dir = 4 + }, +/obj/floor_decal/corner/red/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"txc" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"txi" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_3" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"txq" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"txt" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_fitst_cell_shutters"; + name = "1st Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_y = 18; + pixel_x = -21; + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_lobby_shutters"; + name = "Desk Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_y = -2; + pixel_x = -28; + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_second_cell_shutters"; + name = "2nd Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_y = 6; + pixel_x = -21; + dir = 4 + }, +/obj/machinery/button/blast_door{ + id_tag = "security_permabrig_third_cell_shutters"; + name = "3d Cell Shutters"; + req_access = list("ACCESS_SECURITY"); + pixel_y = -6; + pixel_x = -21; + dir = 4 + }, +/obj/machinery/button/flasher{ + id_tag = "security_perm_chamber_flash"; + name = "Chamber Flasher"; + pixel_x = -28; + pixel_y = 10; + dir = 4; + req_access = list("ACCESS_SECURITY") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"txv" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"txx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"txC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"txH" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped, +/obj/item/reagent_containers/food/snacks/old/pizza, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"tyd" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"tyl" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftstarboard) +"tym" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"tyD" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"tyI" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"tyJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"tyL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"tyX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"tze" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/bridgedeck/center) +"tzi" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/structure/window/reinforced/polarized, +/obj/machinery/power/apc/charon{ + dir = 8; + name = "west bump"; + pixel_x = -25; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"tzt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"tzF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/darkblue/diagonal, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"tzJ" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"tzK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"tzL" = ( +/obj/machinery/door/window/brigdoor/westleft{ + id_tag = "iaaright"; + req_access = newlist() + }, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"tzM" = ( +/obj/structure/closet/emcloset, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"tzT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tzU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"tzW" = ( +/obj/structure/table/standard, +/obj/item/defibrillator/loaded, +/obj/item/auto_cpr, +/obj/item/storage/box/freezer{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"tAb" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"tAe" = ( +/obj/floor_decal/corner/darkblue/half{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/hallway/primary/bridgedeck/central_stairwell) +"tAp" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/corner, +/obj/machinery/access_button/airlock_interior{ + master_tag = "engine_airlock"; + name = "Cycle to Core"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tAr" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"tAz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"tAA" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"tAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"tAO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/camera/network/hangar{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"tAU" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tAW" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"tBd" = ( +/obj/structure/bed/chair/padded/red, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"tBl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/cryo/south) +"tBq" = ( +/obj/structure/closet/emcloset, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/sign/warning/airlock{ + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/maintenance/fourthdeck/aft) +"tBs" = ( +/obj/machinery/shield_diffuser, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tBx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"tBy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"tBz" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"tBD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/tele_beacon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"tBF" = ( +/obj/machinery/light, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"tBK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"tBP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"tBS" = ( +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"tBT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"tBW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"tCa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"tCc" = ( +/obj/machinery/atmospherics/unary/heater, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tCf" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_sergeant_shutters"; + name = "Warden Desk" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "bo_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/sergeant) +"tCs" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"tCx" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"tCB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"tCD" = ( +/obj/structure/sign/warning/fire, +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/incinerator) +"tCE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"tCJ" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"tCL" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"tCO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"tCR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tCS" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 10 + }, +/obj/structure/curtain/bed{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"tDf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"tDh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "CO21p_in"; + name = "Propellent Supply Control"; + output_tag = "CO21p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngCO21" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"tDj" = ( +/obj/floor_decal/techfloor, +/obj/machinery/light/small, +/obj/structure/table/standard, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"tDm" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_10_berth"; + name = "escape pod ten berth controller"; + pixel_x = -32; + pixel_y = -28; + tag_door = "escape_pod_10_berth_hatch"; + frequency = 1380; + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/steeldecal/steel_decals_central4, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"tDo" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"tDr" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/frame/intercom, +/obj/item/stack/cable_coil/blue, +/turf/simulated/floor/wood/yew, +/area/crew_quarters/heads/office/ce/cobed) +"tDs" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"tDu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"tDw" = ( +/obj/floor_decal/corner/black{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"tDx" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"tDD" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass/medical{ + name = "Hospital" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 2; + id_tag = "med_pat_ward"; + name = "Infirmary Window Shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"tDG" = ( +/obj/structure/table/woodentable/mahogany, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"tDI" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/green, +/obj/item/stack/flag/green, +/obj/item/stack/flag/green, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/yellow, +/obj/item/stack/flag/red, +/obj/item/stack/flag/red, +/obj/item/stack/flag/red, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"tDJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"tDL" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tDU" = ( +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/paint_stripe/red, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"tDW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"tEi" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"tEq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration) +"tEs" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/fuel, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"tEF" = ( +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"tEG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"tEK" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"tET" = ( +/obj/structure/table/rack/dark, +/obj/item/stack/material/glass/fifty, +/obj/item/stack/material/glass/fifty, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"tEV" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"tEX" = ( +/turf/simulated/wall/prepainted, +/area/engineering/engine_monitoring) +"tEY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"tFf" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "fuel_out"; + initialize_directions = 1; + internal_pressure_bound = 8000; + internal_pressure_bound_default = 8000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/obj/machinery/air_sensor{ + id_tag = "fuel_sensor" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/engineering/fuelbay) +"tFi" = ( +/obj/structure/bed/chair/office/teal{ + dir = 4 + }, +/obj/floor_decal/corner/beige/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"tFu" = ( +/turf/simulated/wall/prepainted, +/area/storage/primary) +"tFA" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod3/station) +"tFC" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/cryopod/robot{ + pixel_x = -32 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"tFG" = ( +/obj/item/stool/bar/padded, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"tFO" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tGd" = ( +/obj/floor_decal/corner/black/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tGg" = ( +/obj/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tGm" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"tGr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"tGv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tGC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"tGH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Miscellaneous Research"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/containment) +"tGK" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"tGL" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/command/bsa) +"tGQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"tGS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall/hull, +/area/engineering/engine_room) +"tHa" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"tHc" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tHv" = ( +/obj/structure/holoplant, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"tHC" = ( +/obj/floor_decal/corner/paleblue, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"tHE" = ( +/obj/structure/inflatable/wall, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"tHF" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tHG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"tHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"tHT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"tHW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"tHZ" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"tIa" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 80 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"tIc" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"tId" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Aft Starboard" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tIg" = ( +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"tIm" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "fuel4p_in"; + name = "Fuel Supply Control"; + output_tag = "fuel4p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngPlasma4" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"tIn" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"tIp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"tIt" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"tIu" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"tIz" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tIK" = ( +/obj/floor_decal/industrial/traffic{ + dir = 9; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"tIN" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/floor_decal/corner/grey_alt/three_quarters{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics Lab - Surgery"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"tIV" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/chair/shuttle, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + id_tag = "escape_pod_11"; + name = "escape pod eleven controller"; + pixel_x = -20; + tag_door = "escape_pod_11_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/escape_pod/escape_pod11/station) +"tIX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"tJj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/spot, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"tJs" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"tJv" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"tJx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/sofa/r/black, +/obj/machinery/button/alternate/door/bolts{ + dir = 8; + id_tag = "bar_private_room_1"; + name = "Lock"; + pixel_x = 24; + pixel_y = -7 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"tJz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"tJC" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + id_tag = "cafe"; + name = "Cafe Shutters"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"tJJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "fuel3p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1starboard) +"tJM" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Toxins Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins/storage) +"tJY" = ( +/obj/structure/hygiene/shower{ + dir = 8; + pixel_x = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry) +"tKa" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"tKr" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/hardstorage) +"tKy" = ( +/obj/structure/closet, +/obj/item/melee/classic_baton, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood{ + icon_state = "wood_broken2" + }, +/area/maintenance/firstdeck/forestarboard) +"tKC" = ( +/obj/floor_decal/corner/purple/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/vendor{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft) +"tKH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"tKO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"tKP" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/storage) +"tKQ" = ( +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"tKT" = ( +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"tKX" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "petrov2"; + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"tLc" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"tLm" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/shuttle_ceiling/sierra, +/area/space) +"tLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"tLz" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"tLA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable/preset/sierra/shuttle/charon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"tLH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/bridge/adjutants) +"tLU" = ( +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tLY" = ( +/obj/structure/table/standard, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/structure/sign/warning/detailed{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"tMa" = ( +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3starboard) +"tMb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/sleeper) +"tMe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"tMh" = ( +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"tMl" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"tMr" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tMz" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"tMB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"tMD" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder/juicer{ + pixel_y = 8 + }, +/obj/structure/window/reinforced, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/item/reagent_containers/glass/beaker/insulated, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"tMH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"tML" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/arcade, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"tMU" = ( +/obj/item/storage/mirror{ + pixel_x = -26; + pixel_y = 1 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/valve/shutoff/supply, +/turf/simulated/floor/tiled, +/area/rnd/research) +"tMV" = ( +/obj/structure/closet/secure_closet/crew/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/white/monotile, +/area/maintenance/fourthdeck/aft) +"tNf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"tNg" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "toxins_petrov_exhaust"; + name = "Toxins Exhaust Blast Doors" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"tNj" = ( +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#c0c0c0" + }, +/area/quartermaster/hangar/upper) +"tNn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"tNo" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"tNv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"tNA" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"tNI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"tNN" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"tOd" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular{ + id_tag = "chapel_shutters_md"; + name = "Mass Driver Shutters"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/chapel/main) +"tOi" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"tOk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"tOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"tOr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"tOt" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tOw" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"tOx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Robotics Laboratory Desk"; + req_access = newlist() + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/structure/wall_frame/standard, +/obj/structure/table/wallf{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"tOC" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"tOD" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"tOK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/navbeacon/sierra/TD_fore7, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"tON" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"tOO" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tOU" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/holocontrol) +"tPf" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"tPh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"tPq" = ( +/obj/structure/closet/secure_closet{ + name = "Secure Evidence Locker"; + req_access = list("ACCESS_SECURITY") + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"tPr" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"tPs" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"tPx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/navbeacon/sierra/SD_centralhallway2, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"tPA" = ( +/obj/floor_decal/corner/black/full, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/cobed) +"tPH" = ( +/obj/machinery/floodlight{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"tPJ" = ( +/obj/floor_decal/industrial/outline/orange, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/plating{ + burnt = 1; + name = "burnt plating" + }, +/area/crew_quarters/safe_room/bridge) +"tPK" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"tPO" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/random/mre, +/obj/structure/table/woodentable/walnut, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"tPS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"tQf" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_port_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "sd_port"; + name = "Second Deck Port Airlock Controller"; + pixel_x = 20; + req_access = list("ACCESS_EXTERNAL") + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"tQj" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/light_construct{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/abandoned_hydroponics) +"tQm" = ( +/obj/machinery/light_switch{ + dir = 4; + on = 1; + pixel_x = -23 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/item/storage/box/monkeycubes{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"tQu" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"tQA" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/foreport) +"tQD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Power Storage"; + req_access = newlist() + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/auxpower) +"tQG" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "sd_starboard_pump" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"tQH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"tQO" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"tQZ" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"tRf" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1331; + id_tag = "rescue_shuttle_dock_airlock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"tRg" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"tRq" = ( +/obj/structure/bed/sofa/l/teal{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"tRr" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"tRB" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Teleporter" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"tRD" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"tRF" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"tRG" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/aft_stairwell) +"tRI" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Surgery - Operation Theatre Two" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"tRN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/civilian{ + name = "Hydroponics Bay" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"tRS" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"tRV" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Bluespace Drive - Chamber"; + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"tSd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"tSs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"tSD" = ( +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tSK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/modular/preset/dock{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 5 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tSM" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"tSN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"tSQ" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"tST" = ( +/obj/machinery/light/spot, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"tSV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"tSW" = ( +/obj/machinery/light_switch{ + pixel_y = 29 + }, +/obj/structure/bed/chair/padded/blue, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"tTa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"tTc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"tTe" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass/civilian{ + name = "Central Stairwell" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/central_stairwell) +"tTh" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"tTp" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/dockcheck) +"tTs" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"tTw" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod4/station) +"tTy" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/storage/box/donut, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"tTD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"tTF" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"tTM" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"tTS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"tTU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"tTX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"tUc" = ( +/obj/structure/table/rack, +/obj/random/accessory, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"tUi" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Fourth Deck - Port Necelle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"tUj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_core_pump" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"tUm" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 1; + id_tag = "solar_port_pump" + }, +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"tUx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"tUB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"tUC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"tUE" = ( +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"tUF" = ( +/obj/machinery/door/airlock/hatch{ + id_tag = "engine_electrical_maintenance"; + locked = 1; + name = "SMES Access"; + req_access = newlist() + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"tUH" = ( +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "auxair"; + name = "Auxiliary Air Storage Exterior Access Console"; + pixel_y = -20; + req_access = list("ACCESS_ENGINEERING") + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"tUJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"tUS" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Quartermaster"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"tVb" = ( +/obj/floor_decal/corner/red, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"tVg" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"tVj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"tVm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"tVp" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"tVr" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"tVt" = ( +/obj/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tVx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"tVD" = ( +/obj/machinery/computer/shuttle_control/explore/exploration_shuttle, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"tVL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"tVN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"tVV" = ( +/obj/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/bed/chair/office/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"tWg" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "prototype_controller"; + name = "Fusion Maintenance Access Controller"; + pixel_y = -21; + req_access = list("ACCESS_ENGINE_EQUIP"); + tag_exterior_door = "prototype_exterior"; + tag_interior_door = "prototype_interior" + }, +/obj/machinery/computer/air_control{ + input_tag = "rust_injector"; + name = "R-UST Gas Injection Controls"; + sensor_name = "Fusion Chamber"; + sensor_tag = "rust_sensor"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"tWh" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_7_berth"; + name = "escape pod seven berth controller"; + pixel_x = -32; + pixel_y = 21; + tag_door = "escape_pod_7_berth_hatch"; + frequency = 1380 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralstarboard) +"tWj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"tWs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/vacant/dormintories) +"tWx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"tWK" = ( +/obj/structure/cryofeed, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"tWT" = ( +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Robotics Laboratory"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"tWV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + autoset_access = 0; + dir = 4; + frequency = 1331; + id_tag = "guppy_shuttle_outer"; + name = "Guppy External Access"; + req_access = list("ACCESS_GUPPY") + }, +/obj/machinery/door/blast/regular{ + id_tag = "guppy_hatch"; + name = "Rear Hatch" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/blast_door{ + id_tag = "guppy_hatch"; + name = "Rear Hatch Control"; + req_access = list("ACCESS_GUPPY"); + pixel_x = 25; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"tWW" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"tXc" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"tXe" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/space) +"tXg" = ( +/obj/floor_decal/corner/grey/border{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/item/towel/random, +/obj/item/storage/box/detergent, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"tXi" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"tXm" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"tXp" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"tXG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"tXL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/machinery/light/spot, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"tXM" = ( +/obj/structure/iv_stand, +/obj/structure/roller_bed, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"tXS" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"tXW" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/reagent_dispensers/water_cooler{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"tXY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"tXZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/holocontrol) +"tYr" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"tYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_room) +"tYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"tYJ" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/stamp/internalaffairs, +/obj/item/folder/nt, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/stamp/internalaffairs{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/stamp/denied, +/obj/floor_decal/carpet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"tYV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"tYX" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/closet/shipping_wall/filled{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"tZc" = ( +/obj/paint_stripe/red, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/blast/shutters/open{ + name = "Brig's visiting room shutters"; + id_tag = "visiting_room_windows_shutters" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/turf/simulated/floor/plating, +/area/security/prison) +"tZj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway) +"tZs" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"tZt" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"tZw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"tZC" = ( +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"tZE" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/tank{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "o21p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"tZF" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/port) +"tZJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4; + name = "Chapel" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"tZT" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Infrimary - Staging"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/ward) +"tZZ" = ( +/obj/machinery/shieldwallgen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"uao" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"uat" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"uau" = ( +/obj/structure/closet/secure_closet/virology, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"uav" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"uaD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/port) +"uaK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"uaL" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"uaM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"uaO" = ( +/obj/floor_decal/corner/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"uaP" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random/junk, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"uaQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"uaS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"uaW" = ( +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ubk" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood{ + icon_state = "wood_broken4" + }, +/area/maintenance/firstdeck/forestarboard) +"ubm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"ubp" = ( +/turf/simulated/wall/r_wall/hull, +/area/space) +"ubr" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"ubB" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"ubG" = ( +/obj/item/stack/material/wood/walnut{ + amount = 2 + }, +/turf/simulated/floor/carpet, +/area/vacant/gambling) +"ubH" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 4; + req_access = list("ACCESS_TOXINS"); + name = "Test Chamber"; + autoset_access = 0 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/blast/regular/open{ + id_tag = "misclab"; + name = "Test Chamber Blast Doors"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"ubP" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"ucf" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"uci" = ( +/obj/structure/table/marble, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/reagent_temperature, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"uco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"ucp" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/teapot{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"ucs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/foreport) +"ucu" = ( +/obj/structure/closet/crate/radiation, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"ucx" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"ucy" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"ucE" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_north = 1; + tag_south = 2; + tag_west = 8 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"ucQ" = ( +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ucR" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"ucT" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/ward) +"ucV" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ucW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Fourth Deck - Starbound Necelle" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"ucY" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"uda" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"udc" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"udn" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"udr" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"udy" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"udF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "hop_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"udI" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"udJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"udP" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/prison) +"udR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"uea" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + dir = 8; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 25; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"ueh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"uek" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"uel" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/fourthdeck/center) +"uem" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"ueq" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"uet" = ( +/obj/machinery/light, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/turretid/stun{ + pixel_y = -32; + control_area = list(/area/turret_protected/ai_maint); + name = "Maintenance turret control panel" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_maint) +"uew" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"ueK" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "petrov_shuttle_sensor"; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/oxygen_pump{ + pixel_y = 32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "petrov_shuttle_pump" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"ueY" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/foreport) +"ufa" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"ufg" = ( +/obj/machinery/atmospherics/valve{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"ufm" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"ufo" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/office) +"ufy" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/obj/structure/sign/nanotrasen{ + dir = 8 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_l) +"ugb" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "eng4"; + name = "First Deck Port Nacelle Access"; + pixel_x = -20; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/high/critical{ + pixel_y = -24; + name = "south bump" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"ugd" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_10" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"ugw" = ( +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Robotics Laboratory"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/machinery/holosign/surgery{ + dir = 1; + id_tag = "robosurg" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"ugG" = ( +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"ugK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/incinerator) +"ugM" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ugQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"ugW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"uhk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d3port) +"uhv" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/tank/air{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod4/station) +"uhC" = ( +/obj/floor_decal/corner/red{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 40 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"uhD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"uhE" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"uhJ" = ( +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/storage2) +"uhR" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 1; + icon_state = "railing0-1" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"uhW" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"uhY" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/random/ironing_board_structure, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"uib" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"uim" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Longterm - Hydroponics"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"uiv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/suits) +"uiA" = ( +/obj/machinery/conveyor{ + id = "packageSort1"; + dir = 1 + }, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/plating, +/area/quartermaster/office/post) +"uiB" = ( +/obj/machinery/hologram/holopad{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"uiC" = ( +/obj/structure/railing/mapped, +/obj/machinery/camera/network/research{ + c_tag = "Xenobio - aqua chamber" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"uiE" = ( +/obj/item/storage/box/cups, +/obj/floor_decal/spline/fancy/black, +/obj/structure/table/standard, +/obj/machinery/light/spot, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/prison) +"uiJ" = ( +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"uiQ" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/machinery/computer/modular/preset/cardslot/command_eng{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"ujc" = ( +/obj/structure/catwalk, +/obj/structure/ladder/up, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ujk" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ujt" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"uju" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 1 + }, +/obj/structure/bed/chair/office/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"ujv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"ujx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"ujy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ujE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"ujN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"ujZ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"ukd" = ( +/obj/structure/railing/mapped, +/obj/random/vendor/contraband/maintenance{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uke" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"ukj" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"ukl" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + id = "o22p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"ukn" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"ukq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"ukv" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"ukw" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ukA" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"ukG" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/paleblue, +/obj/item/flora/pottedplantsmall/leaf{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"ukQ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"ukT" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"ukV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace) +"ukZ" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/camera_assembly, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"ulg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"uli" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/bluespace/chamber) +"ult" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"ulv" = ( +/obj/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"ulw" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_11_berth_hatch"; + name = "Escape Pod Eleven" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"uly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"ulA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/machinery/light/spot, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"ulB" = ( +/obj/machinery/air_sensor/nacelle/third/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"ulC" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/firstdeck/foreport) +"ulE" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"ulM" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftport) +"ulQ" = ( +/obj/machinery/suit_storage_unit/science, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"ulS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"ulT" = ( +/obj/machinery/seed_extractor, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"ulW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"ulX" = ( +/obj/floor_decal/corner/red, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"uma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance{ + autoset_access = 0; + name = "Dormitory Maintenance"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/south) +"umm" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"umo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"ums" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"umw" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"umI" = ( +/obj/random/vendor{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"umT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"umU" = ( +/obj/machinery/flasher{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"una" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"une" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/civilian{ + dir = 8; + name = "Holodeck" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/holocontrol) +"ung" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"uni" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "32-2"; + d1 = 32 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/turf/simulated/open, +/area/maintenance/seconddeck/starboard) +"unm" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"unn" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/foreport) +"unp" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"uns" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"unu" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"unx" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"unF" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"unH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/substation/bridgedeck) +"unN" = ( +/obj/structure/grille, +/obj/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"unU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"unX" = ( +/turf/simulated/floor/tiled, +/area/maintenance/firstdeck/aftstarboard) +"uod" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"uoi" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"uoA" = ( +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"uoB" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/security) +"uoD" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"uoG" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "iaaleft" + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"uoH" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"uoI" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uoJ" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"uoK" = ( +/obj/wallframe_spawn/reinforced, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/rnd/servers) +"uoL" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"uoM" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"uoZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"uph" = ( +/obj/machinery/door/blast/regular/escape_pod{ + dir = 8; + id_tag = "escape_pod_5" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/firstdeck/foreport) +"upm" = ( +/obj/structure/railing/mapped, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"upq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"upr" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ups" = ( +/obj/structure/closet/emcloset, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"upE" = ( +/obj/item/stool/bar/padded, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/obj/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"upI" = ( +/obj/machinery/air_sensor{ + id_tag = "h2_sensor" + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/engineering/atmos) +"upK" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/air_sensor/nacelle/first, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"upM" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"upN" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"upO" = ( +/obj/machinery/computer/shuttle_control{ + dir = 4; + shuttle_tag = "Petrov"; + req_access = list("ACCESS_PETROV_HELM") + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"upT" = ( +/obj/structure/towel/black{ + pixel_y = -12 + }, +/obj/structure/hygiene/toilet, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"upY" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"uqa" = ( +/obj/machinery/portable_atmospherics/canister/chlorine, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"uqd" = ( +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uqg" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/floor_decal/corner/red/bordercee{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uql" = ( +/obj/floor_decal/corner/purple, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"uqm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"uqr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "centcom_shuttle_dock_inner"; + name = "Docking Port Airlock" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/docking) +"uqy" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"uqC" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"uqE" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/locker) +"uqJ" = ( +/obj/structure/table/steel, +/obj/item/storage/box/condimentbottles, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"uqL" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"uqZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/artifact_harvester, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/scan) +"ura" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow, +/obj/machinery/power/tracker, +/turf/simulated/floor/reinforced, +/area/solar/bridge_port) +"urd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"urq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins/storage) +"urs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"urv" = ( +/obj/floor_decal/corner/grey_alt{ + dir = 10 + }, +/obj/machinery/button/holosign{ + dir = 1; + id_tag = "robosurg"; + pixel_x = -6; + pixel_y = -21 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "robotics_surgery"; + pixel_x = 6; + pixel_y = -21 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/external_cooling_device, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"urw" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "cedoor"; + name = "Chief Engineer"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#ffbf00" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/office/ce) +"urz" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"urE" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"urH" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"urK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access = list("ACCESS_SEC_DOORS"); + autoset_access = 0; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"urR" = ( +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Lower - Containment Aft"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"usb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"usc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"usl" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/shuttle_control/lift/medical, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"usp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24; + req_access = list(list("ACCESS_ATMOS","ACCESS_ENGINE_EQUIP","ACCESS_GUPPY")) + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"usr" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Adjutants Room" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"usv" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cadetwindow" + }, +/turf/simulated/floor/plating, +/area/security/range) +"usx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"usD" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"usG" = ( +/obj/machinery/suit_cycler/medical/alt, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"usI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"usQ" = ( +/obj/machinery/jukebox/custom_tape/old, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"usS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"usU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"utb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass/research{ + dir = 8; + id_tag = "PetrovAccess"; + name = "Petrov Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/airlock) +"utn" = ( +/turf/simulated/wall/r_wall/hull, +/area/medical/virology/lab) +"utv" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"utC" = ( +/obj/machinery/power/smes/batteryrack, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"utD" = ( +/obj/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"utF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"utP" = ( +/obj/floor_decal/industrial/traffic/corner{ + dir = 4 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"utW" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"utX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "toxin_lab_access"; + name = "Toxin Lab Access Console"; + req_access = list("ACCESS_TOX_STORAGE"); + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"uuA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uuL" = ( +/obj/machinery/door/firedoor, +/obj/random/obstruction, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"uuS" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/accessory, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"uuV" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"uvj" = ( +/obj/machinery/radiocarbon_spectrometer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"uvl" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/disposal/deliveryChute, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/exploration_shuttle/airlock) +"uvx" = ( +/obj/structure/railing/mapped{ + dir = 1; + color = "#b19664"; + init_color = "#b19664" + }, +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#b19664"; + color = "#b19664" + }, +/turf/simulated/open, +/area/hallway/primary/thirddeck/central_stairwell) +"uvE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"uvJ" = ( +/obj/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"uvK" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"uvV" = ( +/obj/machinery/organ_printer/flesh/mapped, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery) +"uvY" = ( +/obj/item/stool, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/solar/bridge_starboard) +"uwd" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/foreport) +"uwf" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/science{ + name = "Exploration Storage" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"uwh" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"uwk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"uwl" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "calypso_shuttle_pump" + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/exploration_shuttle/airlock) +"uwr" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/folder/envelope/captain, +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"uwx" = ( +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = 28 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/corner/black/half{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"uwA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Expedition Leader's Office"; + sort_type = "Expedition Leader's Office" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"uwC" = ( +/obj/machinery/telecomms/processor/preset_two, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"uwG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uwI" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/item/reagent_containers/food/snacks/proteinbar, +/obj/item/reagent_containers/food/snacks/proteinbar, +/obj/item/reagent_containers/food/snacks/proteinbar, +/obj/item/reagent_containers/food/snacks/proteinbar, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"uwR" = ( +/obj/floor_decal/ntlogo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"uwY" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"uxa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"uxd" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"uxe" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"uxg" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"uxi" = ( +/obj/structure/girder, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/crew_quarters/sauna) +"uxj" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"uxl" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"uxm" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Armory"; + req_access = newlist(); + dir = 4 + }, +/obj/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/sergeant) +"uxr" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"uxv" = ( +/obj/machinery/chemical_dispenser/full, +/obj/floor_decal/corner/beige{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"uxx" = ( +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"uxy" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"uxB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"uxN" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"uxP" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/pager/medical{ + name = "Call Medics button"; + pixel_y = 24 + }, +/obj/structure/sign/emergonly{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"uxQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/foreport) +"uyd" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/cable{ + d1 = 32; + icon_state = "32-1" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/fuel, +/turf/simulated/open, +/area/maintenance/firstdeck/aftstarboard) +"uyf" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uyB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"uyI" = ( +/obj/structure/table/standard, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/item/storage/box/cups, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Devlab"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/development) +"uyK" = ( +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"uyP" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"uyQ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/iaa) +"uzc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + target_pressure = 3500 + }, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"uzk" = ( +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"uzm" = ( +/obj/machinery/floodlight{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"uzq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"uzw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"uzC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"uzD" = ( +/obj/machinery/washing_machine, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"uzI" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa3"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"uzL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"uzM" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"uzR" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/brown/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/obj/structure/bed/chair/padded/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"uzU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"uzY" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"uAb" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"uAd" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/light_construct, +/obj/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"uAg" = ( +/obj/machinery/door/airlock/glass/command{ + name = "E.V.A."; + req_access = newlist(); + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"uAj" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "briefing_windows" + }, +/turf/simulated/floor/plating, +/area/bridge/marine_room) +"uAo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge Access"; + id_tag = "bridge_hallway_doors_port" + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"uAp" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uAv" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/fourthdeck) +"uAB" = ( +/obj/structure/bed/chair/pew, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"uAC" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uAJ" = ( +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uAN" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"uAU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1starboard) +"uAY" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"uAZ" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"uBb" = ( +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"uBf" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"uBi" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"uBj" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"uBB" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"uBD" = ( +/obj/machinery/door/airlock/civilian{ + id_tag = "toilet_eng_2"; + name = "Toilet"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"uBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"uBI" = ( +/obj/structure/iv_stand, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"uBS" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"uBX" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"uBY" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/thirddeck/center) +"uCg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + autoset_access = 0; + frequency = 1331; + id_tag = "guppy_shuttle_inner"; + name = "Guppy Internal Access"; + req_access = list("ACCESS_GUPPY") + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"uCk" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uCl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/civilian{ + name = "Actor's Room" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"uCq" = ( +/obj/machinery/atmospherics/omni/mixer{ + tag_east = 2; + tag_north = 1; + tag_north_con = 0.33; + tag_south = 1; + tag_south_con = 0.33; + tag_west = 1; + tag_west_con = 0.34 + }, +/obj/machinery/button/ignition{ + id_tag = "toxlab_petrov"; + pixel_y = -23; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"uCr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"uCw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"uCy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bridge Checkpoint"; + autoset_access = 0; + req_access = list("ACCESS_SEC_DOORS") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/lockdown{ + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/lobby) +"uCB" = ( +/turf/simulated/wall/prepainted, +/area/vacant/infirmary) +"uCK" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular{ + id_tag = "BSD_windows"; + name = "Bluespace Chamber Lockdown" + }, +/turf/simulated/floor/plating, +/area/engineering/bluespace/chamber) +"uCN" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"uCO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uCT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/chapel/main) +"uCW" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"uDc" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 3; + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"uDo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"uDp" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/stack/cable_coil, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"uDG" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio1"; + name = "Containment Blast Doors" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"uDK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"uDL" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"uDN" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"uDO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"uDW" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/storage/tech/high_risk) +"uDZ" = ( +/obj/structure/flora/pottedplant/thinbush, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"uEb" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron/fifty, +/obj/item/stack/material/phoron/fifty, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"uEh" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"uEk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/padded/red{ + dir = 8 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"uEl" = ( +/obj/machinery/bodyscanner, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/nosmoking_1{ + dir = 8; + pixel_x = 32; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"uEn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"uEp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/starboard) +"uET" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/maintenance/bridgedeck/starboard) +"uFc" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"uFe" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"uFk" = ( +/obj/floor_decal/carpet/purple, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"uFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"uFL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level1) +"uFR" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "mining_internal" + }, +/turf/simulated/floor, +/area/quartermaster/hangar) +"uFT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/sleep/bunk) +"uGe" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4; + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"uGf" = ( +/obj/floor_decal/corner/black/border{ + dir = 6 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uGm" = ( +/obj/floor_decal/corner/black/mono, +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"uGq" = ( +/obj/structure/towel/black{ + pixel_y = 18 + }, +/obj/structure/hygiene/toilet{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"uGu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/storage) +"uGv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"uGw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"uGz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"uGA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"uGD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining{ + name = "Delivery Office"; + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office/post) +"uGF" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"uGI" = ( +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"uGJ" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/barrier, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - Fusion Generator" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uGK" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"uGM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"uGN" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"uGS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"uGT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uGY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/valve/shutoff/supply{ + name = "supply valve to Deck 4, Hangar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uHd" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/fore) +"uHi" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"uHj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/alternate/door/bolts{ + dir = 4; + id_tag = "toilet1"; + name = "Lock"; + pixel_x = -24 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"uHw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uHB" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/obj/random/cash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uHE" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"uHG" = ( +/obj/floor_decal/corner/red, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Bar - Entry"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"uHH" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"uHL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"uHQ" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"uHU" = ( +/obj/machinery/air_sensor/nacelle/third/co2, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"uHX" = ( +/obj/structure/table/steel, +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"uHZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uIc" = ( +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/obj/structure/railing/mapped{ + dir = 4; + init_color = "#8c911d"; + color = "#8c911d" + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"uIe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uIk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"uIl" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"uIp" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"uIr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "petrov_shuttle_airlock"; + pixel_x = -24; + req_access = list("ACCESS_PETROV_HELM"); + tag_airpump = "petrov_shuttle_pump"; + tag_chamber_sensor = "petrov_shuttle_sensor"; + tag_exterior_door = "petrov_shuttle_outer"; + tag_interior_door = "petrov_shuttle_inner" + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"uIu" = ( +/obj/structure/bed/sofa/r/teal{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Personnel - Recreation"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/office) +"uIv" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/deck/bridge{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"uIA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Cell Three"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"uIC" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo) +"uIE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"uIF" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + name = "Emergency Exit"; + id_tag = "guppy_emergency_exit" + }, +/obj/machinery/button/blast_door{ + id_tag = "guppy_emergency_exit"; + name = "Emergency Exit Control"; + req_access = list("ACCESS_GUPPY"); + pixel_y = -24; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"uIG" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"uIL" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/actor/stage) +"uIO" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/south) +"uIP" = ( +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "bsa_door2"; + name = "Obstruction Field Disperser Blast Door"; + pixel_x = -24; + req_access = list("ACCESS_GUN") + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"uIX" = ( +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"uIY" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/space, +/area/space) +"uJe" = ( +/obj/machinery/door/airlock/civilian{ + name = "Sauna" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/sauna) +"uJh" = ( +/obj/machinery/door/window/brigdoor/westleft, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"uJj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uJl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"uJo" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"uJr" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"uJt" = ( +/obj/machinery/atmospherics/unary/heater, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"uJu" = ( +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/obj/machinery/computer/air_control{ + input_tag = "o21p_in"; + name = "Oxygen Supply Control"; + output_tag = "o21p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngOxygen1" + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"uJv" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/sparker{ + id_tag = "engines-3"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"uJz" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "abahyd_blast"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/abandoned_hydroponics) +"uJF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"uJG" = ( +/obj/floor_decal/corner/black/half, +/obj/floor_decal/corner/red/bordercorner2, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/floor_decal/corner/red/bordercorner, +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"uJR" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/office) +"uJV" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"uJY" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"uKe" = ( +/obj/machinery/door/blast/regular{ + id_tag = "petrovcell2"; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"uKk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uKo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"uKq" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"uKr" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/command{ + c_tag = "Command - Starboard Hallway Entry" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"uKy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/maintenance{ + dir = 8; + autoset_access = 0 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"uKz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"uKA" = ( +/obj/item/ore/iron, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"uKL" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"uKY" = ( +/obj/machinery/chemical_dispenser/full, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"uLa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"uLi" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"uLm" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_l) +"uLo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"uLp" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"uLu" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"uLv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hydroponics/third_deck_storage) +"uLH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/item/taperoll/engineering/applied, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"uLI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"uLR" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"uLY" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/floor_decal/corner/red, +/obj/machinery/camera/network/hangar{ + c_tag = "Hangar - Ground Crew Room"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"uMe" = ( +/obj/floor_decal/corner/red/border, +/obj/machinery/light/led/small, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"uMi" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/test_room) +"uMn" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/launcher, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"uMs" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"uMt" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uMu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uMF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"uMG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Sorting Office"; + sort_type = "Sorting Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"uMK" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"uMU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"uNk" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/device/flashlight/lamp{ + pixel_y = 19; + pixel_x = 3 + }, +/obj/item/book/manual/nt_sop, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"uNn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uNq" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "qm_warehouse2"; + name = "Warehouse Shutters" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/storage) +"uNw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"uNx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"uND" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"uNF" = ( +/obj/machinery/recharger/wallcharger{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"uNG" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"uNI" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); + secured_wires = 1; + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/dockcheck) +"uNO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"uNU" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "ai_bridge_airlock"; + pixel_x = 2; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL"); + tag_airpump = "ai_bridge_pump"; + tag_chamber_sensor = "ai_bridge_sensor"; + tag_exterior_door = "ai_bridge_outer"; + tag_interior_door = "ai_bridge_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "ai_bridge_sensor"; + pixel_x = -12; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_bridge_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"uOc" = ( +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/hallway) +"uOd" = ( +/obj/structure/table/steel_reinforced, +/obj/floor_decal/corner/darkblue/mono, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/microwave, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"uOe" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"uOm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"uOv" = ( +/obj/paint_stripe/red, +/obj/paint/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod2/station) +"uOw" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"uOQ" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"uOR" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"uOS" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"uOV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"uOX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"uPb" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - RD Enter" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uPc" = ( +/obj/structure/closet/secure_closet/engineering_sierra, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/gps, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"uPf" = ( +/obj/shuttle_landmark/escape_pod/start/pod1, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod1/station) +"uPh" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"uPj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"uPl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"uPn" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/shuttlefuel) +"uPo" = ( +/obj/random/closet, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uPp" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/garden_room) +"uPB" = ( +/obj/decal/cleanable/dirt, +/obj/structure/table/woodentable, +/obj/item/deck/cards, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/green{ + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = 11; + pixel_x = 10 + }, +/obj/item/trash/chips{ + pixel_y = 8; + pixel_x = -11 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"uPD" = ( +/obj/item/taperoll/engineering/applied, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"uPM" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"uPQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"uPV" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hydroponics/third_deck_storage) +"uPX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"uPY" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"uQe" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "o23p_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"uQl" = ( +/obj/structure/undies_wardrobe, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Actors - Dressing room"; + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor) +"uQp" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"uQt" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/central_stairwell) +"uQx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"uQE" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + locked = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/taperoll/engineering/applied, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/bar) +"uQF" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai) +"uQI" = ( +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/locker) +"uQO" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/hangar_stairs) +"uQR" = ( +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"uQX" = ( +/obj/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/storage/primary) +"uRf" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"uRg" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"uRj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"uRn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"uRo" = ( +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"uRw" = ( +/obj/structure/sign/warning/docking_area{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/hallway/primary/fourthdeck/center) +"uRz" = ( +/obj/random/obstruction, +/obj/structure/largecrate, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"uRI" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"uRL" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/storage) +"uRR" = ( +/obj/machinery/telecomms/server/presets/security, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"uRY" = ( +/obj/floor_decal/corner/black/border, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"uSa" = ( +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/fluid_mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"uSb" = ( +/obj/item/storage/mirror{ + pixel_x = -1; + pixel_y = 32 + }, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/floor_decal/industrial/warning, +/obj/decal/cleanable/blood/drip, +/obj/decal/cleanable/blood/splatter, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uSj" = ( +/obj/machinery/oxygen_pump{ + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/xenoflora) +"uSn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/vacant/gambling) +"uSt" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"uSA" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor, +/area/quartermaster/hangar) +"uSB" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"uSJ" = ( +/obj/floor_decal/stairs{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo{ + name = "stairs" + }, +/area/crew_quarters/garden_room) +"uSS" = ( +/obj/machinery/door/blast/regular{ + id_tag = "petrovcell1"; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell1) +"uSV" = ( +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/navbeacon/sierra/SD_centralhallway1, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"uTd" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/structure/stairs/south, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics/third_deck_storage) +"uTf" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uTg" = ( +/obj/structure/sign/nanotrasen{ + dir = 4 + }, +/turf/simulated/wall/r_wall/hull, +/area/vacant/infirmary) +"uTl" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"uTw" = ( +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Lower - Airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry2) +"uTy" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "interrogation_no2_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/interrogation/second) +"uTz" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"uTA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/actor/stage) +"uTE" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bridge_windows" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/bridge) +"uTP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"uTR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"uTY" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"uUc" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"uUh" = ( +/obj/floor_decal/corner/green/diagonal, +/obj/structure/table/glass, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/recharger, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"uUl" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Desk"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"uUH" = ( +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"uUK" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"uUN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera/network/petrov{ + c_tag = "Petrov - Anomaly Lab" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"uVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"uVb" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/obj/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"uVi" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod11/station) +"uVs" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"uVt" = ( +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "hangar_atmos_storage"; + name = "Storage Door Control"; + pixel_x = -24; + req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP")) + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_atmos) +"uVw" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"uVD" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"uVF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/air_sensor/nacelle/third, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + injecting = 1; + use_power = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1starboard) +"uVJ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"uVV" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod2/station) +"uWa" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/green/bordercorner, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod5/station) +"uWf" = ( +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/machinery/smartfridge/drying_rack, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"uWh" = ( +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"uWi" = ( +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"uWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/range) +"uWu" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/head) +"uWA" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/spline/fancy/wood, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"uWB" = ( +/obj/floor_decal/corner/green/bordercee{ + dir = 1 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uWD" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"uWK" = ( +/obj/landmark{ + name = "carpspawn" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"uWM" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"uWO" = ( +/obj/machinery/door/firedoor, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced/polarized{ + id = "hos_windows" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hos) +"uWS" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/bridgedeck/center) +"uXb" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/item/stool/wood, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"uXj" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"uXm" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar_control{ + id = "auxsolarbridge"; + name = "Bridge Solar Control"; + track = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Control - Bridge Deck - Port"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/solar/bridge_port) +"uXp" = ( +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"uXq" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/pottedplant/tall, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"uXH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"uXO" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/high_voltage{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/center) +"uXP" = ( +/obj/structure/table/rack, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics Fabricators" + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"uXR" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 8 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_port) +"uXX" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"uXY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/seconddeck/fore) +"uYf" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"uYl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/wallframe_spawn/reinforced_phoron/hull, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"uYq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"uYs" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/eva) +"uYt" = ( +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"uYw" = ( +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"uYA" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"uYB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/fore) +"uYI" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"uYL" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft_stairwell) +"uYM" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/test_room) +"uYP" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/thirddeck/aft_stairwell) +"uYT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"uYU" = ( +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/power/smes/batteryrack, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/servers) +"uYX" = ( +/obj/structure/table/steel, +/obj/item/paper/monitorkey, +/obj/item/stamp/ce, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"uYY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"uZh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"uZq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"uZt" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"uZu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"uZx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"uZz" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/firstdeck/center) +"uZC" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"uZH" = ( +/obj/structure/table/standard, +/obj/item/scalpel/basic, +/obj/item/circular_saw, +/obj/machinery/vending/wallmed2{ + pixel_x = 24; + pixel_y = 1; + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"uZJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "CO23p_in"; + name = "Propellent Supply Control"; + output_tag = "CO23p_out"; + sensor_name = "Tank"; + sensor_tag = "ReacEngCO23" + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"uZL" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"uZT" = ( +/obj/paint_stripe/blue, +/obj/paint/dark_gunmetal, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/cargo_r) +"uZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"uZW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "firingspace"; + name = "Firing Range Shields" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint_stripe/red, +/obj/wallframe_spawn/reinforced, +/turf/simulated/floor/plating, +/area/security/range) +"vaa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"vab" = ( +/obj/floor_decal/carpet, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"vah" = ( +/obj/structure/closet/crate/radiation_gear, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vas" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"vau" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"vaw" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"vaA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"vaD" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"vaF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vaH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/civilian{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/dungeon_master_lounge) +"vaI" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/armband/engine, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"vaJ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + sort_type = "Research and Development"; + name = "Research and Development" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"vaO" = ( +/turf/simulated/wall/prepainted, +/area/rnd/locker) +"vaQ" = ( +/obj/floor_decal/corner/darkblue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"vaT" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"vbe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"vbg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "specops_dock"; + pixel_x = 32; + pixel_y = 21; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"vbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"vbi" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "sierra_surgery2" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/surgery/second) +"vbj" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"vbl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"vbm" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/structure/closet/crate, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"vbs" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"vbG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"vbQ" = ( +/obj/structure/table/standard, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Teleporter"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"vbR" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vbU" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"vbV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"vcd" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/iaa/cobed) +"vcg" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vcl" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"vcm" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holocontrol) +"vcn" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"vco" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"vcq" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "Skynet_launch"; + name = "Mech Bay"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/assembly/chargebay) +"vcv" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"vcz" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"vcA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"vcB" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"vcH" = ( +/obj/structure/railing/mapped, +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"vcI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"vcJ" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/seats_place) +"vcO" = ( +/obj/machinery/door/airlock/command{ + dir = 1; + id_tag = "pmdoor"; + name = "Head of Personnel Maintaince"; + secured_wires = 1; + stripe_color = "#b7f27d" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/heads/office/hop) +"vcQ" = ( +/obj/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"vcS" = ( +/obj/structure/bed/sofa/m/black{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/cafe) +"vcT" = ( +/obj/floor_decal/corner/darkblue/full, +/obj/floor_decal/corner/black/half{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/folder/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"vcZ" = ( +/obj/machinery/uniform_vendor{ + dir = 4; + icon_state = "robotics" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"vdd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"vdh" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/bluespace/chamber) +"vdj" = ( +/obj/machinery/door/window/brigdoor/westleft{ + req_access = newlist(); + id_tag = "iaaright"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"vdr" = ( +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/closet/secure_closet/explorer/engineer, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration) +"vdu" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/forestarboard) +"vdv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/obj/structure/table/steel, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/insulated, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shield/thirddeck) +"vdx" = ( +/obj/floor_decal/spline/fancy/black/corner{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"vdz" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/interrogation) +"vdA" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/storage2) +"vdC" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = 22 + }, +/obj/machinery/flasher{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"vdE" = ( +/obj/machinery/air_sensor/nacelle/fourth/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1port) +"vdI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/taperecorder, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/tape, +/obj/item/device/tape, +/obj/item/device/tape, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"vdJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vdL" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"vdS" = ( +/obj/item/stool, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"vdU" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"vdV" = ( +/obj/machinery/air_sensor{ + id_tag = "containment_sensor" + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"vdW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vdZ" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sauna) +"vec" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"veg" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/random/maintenance, +/obj/random/single/playing_cards, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist() + }, +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"vek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"vem" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ves" = ( +/obj/structure/table/steel, +/obj/structure/bedsheetbin, +/obj/structure/sign/poster/nyc/space_escort{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"vez" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"veC" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"veV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"veY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"vfb" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/primary) +"vfj" = ( +/obj/machinery/pipedispenser, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"vfn" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright{ + name = "Excavation suit storage"; + req_access = newlist() + }, +/obj/item/rig/industrial/equipped, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"vfs" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"vfy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lightgrey/border, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"vfC" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"vfD" = ( +/obj/item/modular_computer/telescreen/preset/engineering{ + pixel_y = 26 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_sierra/junior, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"vfI" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"vfK" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"vfQ" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/orange/diagonal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32; + pixel_x = 32; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"vfY" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology - Decontamination"; + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology) +"vgc" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/soap, +/obj/item/storage/box/lights/led_neon, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/foreport) +"vgk" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"vgl" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/toxins) +"vgm" = ( +/obj/structure/rubble, +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/decal/cleanable/filth, +/obj/decal/cleanable/greenglow, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vgw" = ( +/obj/structure/table/marble, +/obj/floor_decal/corner/red/diagonal, +/obj/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"vgx" = ( +/obj/machinery/radiocarbon_spectrometer, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"vgF" = ( +/obj/floor_decal/corner/mauve/mono, +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"vgH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/starboard) +"vgO" = ( +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod5/station) +"vgU" = ( +/obj/machinery/door/airlock/hatch{ + autoset_access = 0; + dir = 4; + name = "Cockpit"; + req_access = list("ACCESS_EXPEDITION_SHUTTLE") + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"vgV" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/paleblue/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/ward) +"vgW" = ( +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/floor_decal/techfloor/corner, +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"vha" = ( +/obj/floor_decal/corner/red, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"vhj" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"vho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"vhv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"vhy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"vhE" = ( +/obj/machinery/atmospherics/valve/shutoff/supply, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"vhF" = ( +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"vhH" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_3" + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/foreport) +"vhK" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"vhP" = ( +/obj/machinery/seed_storage/garden, +/obj/machinery/button/blast_door{ + id_tag = "abahyd_blast"; + name = "Hydro Blast Door"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"vhV" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"vhZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"via" = ( +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/heads/office/cmo/cobed) +"vif" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"vig" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"vii" = ( +/obj/structure/sign/warning/high_voltage{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar) +"vik" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"vio" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"vir" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"vit" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/machinery/disposal/small{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/airlock{ + color = "#ff9900"; + name = "\improper WAY TO SPACE"; + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/corner/black/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"viv" = ( +/obj/shuttle_landmark/sierra/deck2/guppy, +/turf/space, +/area/space) +"viz" = ( +/obj/structure/bed/chair/armchair/blue, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"viI" = ( +/obj/structure/sign/warning/vent_port{ + pixel_y = 32 + }, +/obj/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"viJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"viL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/thirddeck) +"viM" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist(); + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/corner/black/full, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/single/lighter, +/turf/simulated/floor/tiled, +/area/crew_quarters/commissary) +"viS" = ( +/obj/item/trash/liquidfood, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"viU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"vja" = ( +/turf/simulated/wall/r_wall/hull{ + can_open = 1 + }, +/area/maintenance/firstdeck/foreport) +"vjl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"vjn" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/ion, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"vjs" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/paint/nt_white, +/obj/machinery/door/firedoor, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"vjt" = ( +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vjE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/binoculars, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ + pixel_y = 11 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vjF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"vjJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"vjK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod1/station) +"vjM" = ( +/obj/structure/largecrate, +/obj/random/junkfood, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vjP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"vjQ" = ( +/obj/machinery/space_heater, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vke" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"vkf" = ( +/obj/structure/table/standard, +/obj/item/device/scanner/reagent, +/obj/item/device/scanner/spectrometer/adv, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"vku" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/paper/sierra, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"vky" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"vkB" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/docking) +"vkD" = ( +/obj/machinery/door/airlock/mining{ + name = "Supply Office"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/office) +"vkF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vkI" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/civilian{ + name = "Toilet"; + secured_wires = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/captain) +"vkK" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/seconddeck/emergency) +"vkL" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/prepainted, +/area/security/sierra/breakroom) +"vkR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"vkV" = ( +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair/padded/teal{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"vkW" = ( +/obj/machinery/hologram/holopad/longrange, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/random_multi/single_item/space_rabbit, +/obj/structure/handrail{ + dir = 1; + pixel_y = -6 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"vlb" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa2"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level2) +"vlh" = ( +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"vln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/structure/sign/warning/pods/east{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"vlq" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"vls" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"vlt" = ( +/obj/structure/table/standard, +/obj/item/defibrillator/loaded, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"vlw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 10 + }, +/obj/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"vlx" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"vlH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/mortus{ + dir = 4; + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"vlK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"vlL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"vlO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/junction/mirrored{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"vlT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"vlW" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/space) +"vmb" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"vmf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"vmp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/button/ignition{ + id_tag = "Isocell2"; + pixel_x = -6; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"vmq" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"vmx" = ( +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/structure/rubble/war, +/obj/fluid_mapped, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"vmy" = ( +/obj/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/darkblue/border, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vmB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/aft_stairwell) +"vmE" = ( +/obj/floor_decal/plaque, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"vmL" = ( +/obj/floor_decal/corner/yellow/half, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"vmN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"vmR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"vna" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition) +"vnc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"vnl" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vnm" = ( +/obj/structure/mattress/dirty, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"vnn" = ( +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"vno" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"vnr" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Autopsy"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"vnt" = ( +/obj/machinery/computer/modular/preset/library{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"vnD" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"vnK" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"vnL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/table/steel{ + flipped = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"vnV" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"vnW" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/vacant/infirmary) +"voa" = ( +/obj/machinery/vending/security{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Longterm - Checkpoint"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/brig) +"vog" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/port) +"voh" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"voi" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/corner/lightgrey/mono, +/obj/machinery/light{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/docking) +"vok" = ( +/obj/item/taperoll/engineering/applied, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"voo" = ( +/obj/structure/table/glass, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/toner, +/obj/item/device/taperecorder, +/obj/item/device/taperecorder, +/obj/item/device/tape, +/obj/item/pen/multi, +/obj/item/pen/multi, +/obj/item/paper_bin, +/obj/item/device/tape, +/obj/item/device/tape, +/obj/structure/window/reinforced, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"vox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"voy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"voA" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"voC" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "do_windows" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters/open{ + name = "QM Office Shutters"; + id_tag = "qm_office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/deckofficer) +"voL" = ( +/obj/floor_decal/corner/red/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"voO" = ( +/obj/machinery/power/apc/charon{ + dir = 1; + name = "north bump"; + pixel_y = 24; + req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"voP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/decal/cleanable/cobweb2, +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"voQ" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/towel/fleece, +/obj/item/towel/fleece, +/obj/item/towel/fleece, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"voS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/machinery/navbeacon/sierra/TD_centralhallway1, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"voT" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"vpe" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/rack, +/obj/item/rig/command/hop/equipped, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"vpm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"vpp" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"vpr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"vpJ" = ( +/obj/floor_decal/carpet/purple{ + dir = 1 + }, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/main) +"vpQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"vqc" = ( +/obj/floor_decal/industrial/traffic/corner{ + detail_color = "#a2819e"; + color = "#a2819e" + }, +/turf/simulated/floor/tiled/white, +/area/rnd/office) +"vqf" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"vqg" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/papershredder, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"vqq" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"vqL" = ( +/obj/structure/table/standard, +/obj/floor_decal/borderfloorwhite, +/obj/floor_decal/corner/paleblue/border, +/obj/item/paper_bin, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"vqO" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"vqR" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4; + name = "CO2 Supply"; + target_pressure = 10000 + }, +/obj/structure/closet/hydrant{ + pixel_y = -28 + }, +/obj/machinery/camera/network/hangar{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"vrd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"vre" = ( +/obj/paint_stripe/red, +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/hallway/aft) +"vrg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ + dir = 1; + id_tag = "guppy_shuttle_pump_out_internal" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "guppy_shuttle_sensor"; + master_tag = "guppy_shuttle"; + pixel_y = 26; + pixel_x = 25 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/guppy_hangar/start) +"vri" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/modular/preset/cardslot/command, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"vru" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d3port) +"vrx" = ( +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vry" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/navbeacon/sierra/TD_fore6, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"vrD" = ( +/obj/machinery/status_display, +/obj/paint_stripe/turquoise, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai) +"vrE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/conveyor{ + id = "charon_cargo_out"; + name = "charon interior conveyor belt" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_l) +"vrF" = ( +/obj/machinery/door/airlock/research{ + name = "Spectrometry Lab" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/ship) +"vrG" = ( +/obj/structure/bed/chair/office/comfy/blue, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"vrS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/aftstarboard) +"vrX" = ( +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"vsd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"vsh" = ( +/obj/item/storage/mirror{ + pixel_x = -26; + pixel_y = 1 + }, +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/gym) +"vsn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/wrench, +/obj/item/storage/mre/random, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, +/obj/floor_decal/corner/black/full, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"vso" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/holoplant, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"vsz" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/structure/bookcase/manuals/security, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"vsB" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass/civilian{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_1" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"vsE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"vsF" = ( +/obj/structure/ladder/up, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vsI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vsJ" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"vsL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vsN" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/storage/box/cups, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"vsO" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"vsX" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/aft) +"vtl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad{ + pixel_y = 16; + pixel_x = 16 + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"vtp" = ( +/obj/machinery/door/airlock/command{ + id_tag = "iaadoorright"; + name = "Internal Affairs Agent"; + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa) +"vtr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"vts" = ( +/obj/structure/lattice, +/obj/random/trash, +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"vtD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"vtH" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"vtT" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"vtZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"vuc" = ( +/obj/structure/lattice, +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d1starboard) +"vud" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_port" + }, +/obj/floor_decal/industrial/warning/cee, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"vuf" = ( +/obj/structure/table/woodentable/walnut, +/obj/item/book/manual/anomaly_testing, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"vut" = ( +/obj/structure/table/rack, +/obj/item/storage/firstaid/radiation{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/stab{ + pixel_y = -10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire/special, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"vuu" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/grey, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "bar<-cafe"; + name = "Bar Shutters" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/bar) +"vuA" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"vuC" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell3) +"vuI" = ( +/obj/floor_decal/industrial/hatch/red, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"vuL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"vuW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"vuZ" = ( +/obj/structure/sign/warning/fire{ + dir = 1; + pixel_y = -40 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"vvb" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d1port) +"vvj" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance{ + id_tag = "crusher"; + name = "Compactor Zone" + }, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"vvp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + dir = 4; + name = "Restroom" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sleep/cryo/bridge) +"vvs" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"vvw" = ( +/obj/floor_decal/solarpanel, +/obj/machinery/power/solar{ + id = "auxsolarsport"; + name = "Aft Port Solar Array" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/solar/port) +"vvz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"vvB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"vvM" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/structure/closet/secure_closet/bar_sierra, +/obj/item/flame/lighter/zippo/brass, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/storage/candle_box, +/obj/item/storage/candle_box, +/obj/item/storage/box/lights/led_neon, +/obj/item/storage/box/lights/led_neon, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/material/clipboard, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"vvO" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"vvR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"vvV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vvX" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"vwa" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/port) +"vwi" = ( +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish/grump, +/obj/structure/flora/seaweed/mid, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"vwm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/random/ironing_board_structure, +/obj/item/ironing_iron, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"vwn" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"vwv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/item/bedsheet/brown, +/obj/item/beartrap{ + anchored = 1; + deployed = 1; + icon_state = "beartrap1" + }, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"vwy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/seconddeck/aftstarboard) +"vwE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"vwH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"vwI" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/floor_decal/corner/blue/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"vwP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/port) +"vxa" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"vxc" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vxd" = ( +/obj/structure/sign/nanotrasen{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"vxf" = ( +/obj/structure/bed/sofa/r/black{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/sleep/cryo/south) +"vxn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng3_inner"; + name = "First Deck Starboard Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d1starboard) +"vxq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry2) +"vxI" = ( +/obj/machinery/power/solar_control{ + id = "auxsolarstrbbridge"; + name = "Bridge Solar Control"; + track = 1 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Solar Control - Bridge Deck - Starboard" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/solar/bridge_starboard) +"vxN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vxP" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"vxW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access = newlist() + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"vxY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "solar_bridge_port_inner"; + locked = 1; + name = "Engineering External Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_port) +"vxZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + controlled = 0; + dir = 1; + internal_pressure_bound = 35000; + internal_pressure_bound_default = 35000; + pressure_checks = 2; + pressure_checks_default = 2; + use_power = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/thruster/d3port) +"vya" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"vyb" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized/full, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/ce) +"vyd" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/center) +"vyf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"vyh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"vyo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/meeting_room) +"vyr" = ( +/obj/structure/table/rack, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/storage) +"vyy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 1; + id_tag = "toilet_eng_2"; + name = "Lock"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head/deck3) +"vyz" = ( +/obj/machinery/door/airlock/vault/bolted{ + name = "AI Core External Access" + }, +/obj/item/airlock_brace{ + req_access = list("ACCESS_BRIDGE") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_maint) +"vyF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vyI" = ( +/obj/structure/closet{ + anchored = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"vyK" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"vyS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced/polarized/full, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/ce) +"vzp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"vzx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"vzz" = ( +/obj/decal/cleanable/dirt, +/obj/structure/closet/cabinet, +/obj/machinery/light_construct/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/vacant/sauna) +"vzD" = ( +/obj/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"vzJ" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"vzO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"vzX" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"vAf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vAk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/holocontrol) +"vAp" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black/corner, +/obj/floor_decal/spline/fancy/black/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vAH" = ( +/obj/floor_decal/corner/darkblue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"vAJ" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 15000 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"vAL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"vAM" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vAP" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"vAU" = ( +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"vAV" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"vBb" = ( +/obj/machinery/washing_machine, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"vBe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vBi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"vBj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/coatrack, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"vBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vBn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random/vendor/contraband/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vBp" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/prepainted, +/area/vacant/utility) +"vBw" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"vBB" = ( +/obj/machinery/keycard_auth/sierra{ + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = -8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"vBC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"vBH" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"vBM" = ( +/obj/machinery/door/blast/regular/escape_pod{ + id_tag = "escape_pod_9" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/maintenance/exterior) +"vBP" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/boron_reinforced{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d1starboard) +"vBY" = ( +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Bridge Starboard" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/bridge_starboard) +"vCd" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"vCq" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"vCu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/storage) +"vCB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"vCC" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/floor_decal/spline/fancy/black{ + dir = 8 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"vCG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_construct{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"vCI" = ( +/obj/machinery/vending/wallmed2{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod3/station) +"vCK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/door/blast/regular{ + id_tag = "d4portnacelle" + }, +/obj/wallframe_spawn/reinforced_phoron, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"vCR" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/storage/primary) +"vCS" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"vCV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/civilian{ + autoset_access = 0; + name = "Long Term Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/prison) +"vDa" = ( +/obj/machinery/suit_cycler/engineering, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"vDg" = ( +/obj/structure/table/standard, +/obj/item/folder/nt, +/obj/machinery/button/blast_door{ + id_tag = "xenobio_desk"; + name = "Containment Blast Doors"; + req_access = list("ACCESS_RESEARCH"); + dir = 8; + pixel_x = 21 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"vDj" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/eva) +"vDm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"vDr" = ( +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"vDv" = ( +/obj/wallframe_spawn/reinforced_phoron/hull, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"vDB" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vDC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "eng_QAW"; + name = "Quick Access Warehouse" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"vDK" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"vDN" = ( +/obj/structure/catwalk, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "td_port"; + name = "exterior access button"; + pixel_y = 24; + req_access = list("ACCESS_EXTERNAL"); + pixel_x = -32 + }, +/turf/simulated/open, +/area/space) +"vDO" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"vDS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"vDT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vDV" = ( +/obj/structure/table/rack, +/obj/item/storage/mre/random, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"vDW" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "expe_warehouse"; + name = "Storage Shutters" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"vDY" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"vEe" = ( +/turf/simulated/floor/pool, +/area/crew_quarters/sauna) +"vEf" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"vEg" = ( +/obj/structure/closet/chefcloset_sierra, +/obj/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"vEq" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/hangar_stairs) +"vEv" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/main) +"vED" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_to_maint"; + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/sleeper) +"vEO" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 4; + id_tag = "td_fore_starboard_pump" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + display_name = "Second Deck Auxillary Dock"; + id_tag = "td_fore_starboard"; + name = "Third Deck Fore Starboard Airlock Controller"; + pixel_x = -20; + req_access = list("ACCESS_EXTERNAL") + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"vEU" = ( +/obj/machinery/door/window/eastleft, +/obj/decal/cleanable/dirt, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/vacant/sauna) +"vEW" = ( +/obj/paint/hull, +/turf/simulated/wall/ocp_wall, +/area/rnd/toxins) +"vEX" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + pixel_y = 24; + dir = 4 + }, +/obj/structure/sign/directions/infirmary{ + dir = 4; + pixel_y = 31 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"vFf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 6 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/sticky_pad/random, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"vFk" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/suit_cycler/pilot, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"vFq" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/thirddeck/fore) +"vFr" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/incinerator) +"vFt" = ( +/obj/machinery/atmospherics/unary/tank/hydrogen, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"vFu" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"vFw" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/random/closet, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"vFA" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"vFB" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/foreport) +"vFE" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"vFH" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "Chief Medical Officer Dorm"; + secured_wires = 1; + stripe_color = "#00e1ff"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/cmo/cobed) +"vFJ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/starboard) +"vFO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"vFR" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"vGb" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dormintories) +"vGc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/wall/r_wall/hull, +/area/thruster/d1port) +"vGk" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/engineering{ + name = "Quick Access Warehouse"; + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "eng_lockdown"; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"vGl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vGm" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"vGn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"vGv" = ( +/obj/structure/sign/directions/bridge{ + pixel_y = 24; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"vGI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"vGR" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + id_tag = "escape_pod_9_berth"; + name = "escape pod nine berth controller"; + pixel_x = -32; + pixel_y = -28; + tag_door = "escape_pod_9_berth_hatch"; + frequency = 1380; + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/obj/floor_decal/steeldecal/steel_decals_central4, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"vGU" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vGX" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/cryo/thirddeck) +"vGY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"vHa" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/research{ + name = "Development Laboratory"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"vHc" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "xenobio_surg"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"vHe" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/obj/decal/cleanable/dirt, +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/red, +/turf/simulated/floor/lino, +/area/maintenance/firstdeck/forestarboard) +"vHg" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "test_xenoflora_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/xenoflora) +"vHm" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/recharge_station, +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"vHM" = ( +/obj/floor_decal/corner/purple/half{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"vHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/civilian{ + id_tag = "toilet2"; + name = "Stall Two" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"vHY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/fore) +"vId" = ( +/obj/random/vendor, +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/lime/border{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"vIj" = ( +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/reagent_temperature, +/obj/item/reagent_containers/food/drinks/milk{ + pixel_x = -1 + }, +/obj/item/reagent_containers/food/drinks/soymilk{ + pixel_x = 6 + }, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"vIq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vIw" = ( +/turf/simulated/open, +/area/hallway/primary/thirddeck/central_stairwell) +"vIG" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"vIL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"vIP" = ( +/obj/floor_decal/corner/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"vIX" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod4/station) +"vJb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"vJj" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"vJu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vJA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/machinery/light, +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"vJC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/aft) +"vJD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/floor_decal/industrial/warning/cee, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"vJE" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ + pixel_y = -3; + pixel_x = 6 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"vJQ" = ( +/obj/floor_decal/ntlogo{ + dir = 8 + }, +/obj/landmark/start{ + name = "Research Director" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"vJS" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"vJV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_to_maint" + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/locker) +"vKa" = ( +/obj/floor_decal/corner/purple{ + pixel_y = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/janitor) +"vKg" = ( +/obj/machinery/r_n_d/server/core, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research{ + c_tag = "Research - Servers" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/rnd/servers) +"vKD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"vKI" = ( +/obj/machinery/door/airlock/glass{ + autoclose = 0; + frequency = 1379; + heat_proof = 1; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"vKK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Cadets"; + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"vKU" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vKY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cap_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/captain) +"vLh" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/hallway/primary/fourthdeck/center) +"vLj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"vLr" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/camera/network/bridge_deck{ + dir = 8; + c_tag = "Bridge Deck - Central Hallway - Port" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/bridge) +"vLt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"vLv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/red/bordercorner, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vLG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/turf/simulated/wall/ocp_wall{ + heat_capacity = 412500 + }, +/area/thruster/d1port) +"vLM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/purple, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"vLT" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/item/stack/material/plastic/fifty{ + amount = 30 + }, +/obj/item/stack/material/aluminium{ + amount = 30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"vMe" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Head Of Security"; + req_access = newlist(); + secured_wires = 1; + stripe_color = "#9d2300"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos) +"vMg" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"vMl" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"vMm" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vMx" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"vMB" = ( +/obj/floor_decal/corner/red/half{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"vME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"vMR" = ( +/obj/item/reagent_containers/food/snacks/egg/lizard{ + color = "black" + }, +/obj/structure/table/rack, +/obj/item/bedsheet, +/obj/item/reagent_containers/food/snacks/egg/lizard, +/obj/item/reagent_containers/food/snacks/egg/lizard{ + color = "black" + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"vMS" = ( +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/structure/hygiene/shower, +/obj/structure/closet/walllocker{ + pixel_x = 28 + }, +/obj/random/soap, +/obj/item/towel/random, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/item/towel/random, +/obj/item/flame/lighter/zippo/random, +/obj/item/haircomb/random, +/obj/item/lipstick/random, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/vacant/cargo) +"vMX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"vMY" = ( +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/hand_labeler, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"vNe" = ( +/obj/structure/closet/secure_closet/RD_sierra, +/obj/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/keycard_auth/sierra{ + pixel_x = 3; + pixel_y = 21 + }, +/obj/machinery/button/windowtint{ + id = "rd_windows"; + pixel_x = 12; + pixel_y = 21; + range = 11 + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "rddoor"; + name = "Office Door Control"; + pixel_x = -10; + pixel_y = 21; + req_access = list("ACCESS_RESEARCH_DIRECTOR") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"vNl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"vNm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"vNq" = ( +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vNt" = ( +/obj/decal/cleanable/cobweb2{ + dir = 4 + }, +/obj/random/vendor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"vNv" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"vNw" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/stamp/ward, +/obj/item/device/eftpos{ + eftpos_name = "Warden's EFTPOS scanner" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"vNz" = ( +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -22 + }, +/obj/floor_decal/borderfloor{ + color = null; + dir = 8 + }, +/obj/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + color = null; + dir = 10 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"vNC" = ( +/obj/structure/table/standard, +/obj/item/deck/cards, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/aftstarboard) +"vNF" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/space, +/area/space) +"vNH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable/walnut, +/obj/item/storage/box/donkpocket_dessert, +/turf/simulated/floor/wood/walnut, +/area/vacant/gambling) +"vNM" = ( +/obj/machinery/chemical_dispenser/full, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"vNO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"vOs" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + name = "Actor's Room" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/actor) +"vOy" = ( +/obj/structure/railing/mapped, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vOC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"vOF" = ( +/obj/machinery/air_sensor/nacelle/second/oxygen, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3port) +"vON" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"vOQ" = ( +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vPd" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "fuel4p_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"vPj" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_smes) +"vPu" = ( +/turf/simulated/open, +/area/maintenance/firstdeck/aftstarboard) +"vPw" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + name = "Forensics" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/forensic/lab) +"vPH" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/maintenance/fourthdeck/foreport) +"vPI" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vPL" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/yellow/three_quarters, +/obj/item/storage/belt/utility{ + pixel_y = 11; + pixel_x = 2 + }, +/obj/item/storage/belt/utility{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/storage/belt/utility, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"vPO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"vQb" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_11_hatch"; + name = "Escape Pod Eleven Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod11/station) +"vQd" = ( +/obj/structure/table/steel_reinforced, +/obj/item/folder/nt, +/obj/item/folder/nt{ + pixel_y = 4; + pixel_x = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"vQj" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "hydroponics_space"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"vQl" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"vQo" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "solar_bridge_inner"; + locked = 1; + name = "Engineering External Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_starboard) +"vQu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"vQv" = ( +/obj/floor_decal/borderfloorblack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"vQJ" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/maintenance, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/foreport) +"vQO" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/drone_pad{ + desc = "A small pad for transport drones to deposit their payloads at. Requires network reestablishment after Bluespace jump via multitool" + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"vQU" = ( +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/utility) +"vQW" = ( +/obj/floor_decal/corner/red/half{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"vRa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/nano) +"vRd" = ( +/obj/floor_decal/corner/black{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/teal, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"vRg" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/floor_decal/corner/grey/diagonal, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/rnd/research) +"vRh" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"vRl" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shield/thirddeck) +"vRo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"vRw" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/green, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"vRA" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"vRU" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/waterstore) +"vRY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"vSg" = ( +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"vSl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"vSn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/decal/cleanable/greenglow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/fuelbay) +"vSo" = ( +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vSp" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/storage/toolbox/electrical, +/obj/random/tech_supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner/yellow/mono, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"vSw" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Containment Control"; + dir = 8; + network = list("Research","Miscellaneous Reseach") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/containment) +"vSE" = ( +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"vSF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown2_2" + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"vSJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vSO" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"vSQ" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"vSR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"vSZ" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"vTd" = ( +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/obj/floor_decal/corner/black/full, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/command/bsa) +"vTf" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/table/marble, +/obj/machinery/fabricator/micro/bartender{ + pixel_x = 4 + }, +/obj/item/stack/material/glass/ten{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/stack/material/aluminium/ten{ + pixel_y = -4 + }, +/obj/item/stack/material/plastic/ten{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"vTg" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"vTj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"vTn" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_10_berth_hatch"; + name = "Escape Pod Ten" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralport) +"vTp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"vTq" = ( +/obj/machinery/mech_recharger, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot, +/turf/simulated/floor/bluegrid, +/area/assembly/chargebay) +"vTs" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vTy" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass/civilian{ + dir = 8; + name = "Hallway" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"vTB" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/sign/xenobio_1{ + dir = 8; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/hangar_stairs/upper) +"vTC" = ( +/obj/structure/table/standard, +/obj/random/single/playing_cards, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"vTJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"vTQ" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"vTY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"vTZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"vUf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/bunk) +"vUh" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/fuelbay) +"vUn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/valve/shutoff/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"vUq" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/substation/bridgedeck) +"vUs" = ( +/obj/floor_decal/techfloor/orange, +/obj/machinery/conveyor{ + dir = 4; + id = "compactor" + }, +/obj/machinery/recycler, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/compactor) +"vUu" = ( +/obj/random/maintenance, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"vUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = -30 + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/security{ + c_tag = "Security - Evidences"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/security/sierra/evidence) +"vUB" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"vUL" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"vUO" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"vUQ" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"vUU" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/mahogany, +/area/security/range) +"vUZ" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder/juicer{ + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"vVb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"vVc" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"vVg" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/centralport) +"vVo" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"vVu" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/hallway) +"vVv" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "hop_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"vVx" = ( +/obj/machinery/sleeper/survival_pod{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/med_pouch/oxyloss, +/obj/item/storage/med_pouch/oxyloss, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"vVM" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"vVN" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/structure/closet/secure_closet/hos/sierra, +/obj/item/device/binoculars, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/hos) +"vVR" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"vVY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vWk" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"vWm" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"vWn" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/recharge_station, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Syntetics Compartment"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"vWo" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/reinforced, +/area/maintenance/firstdeck/forestarboard) +"vWr" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/computer/upload/robot{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"vWt" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/black/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation) +"vWu" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + id = "CO22p_in"; + injecting = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/thruster/d3port) +"vWv" = ( +/obj/floor_decal/industrial/hatch/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"vWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id_tag = "SupermatterPort"; + name = "Reactor Blast Doors"; + pixel_x = -6; + pixel_y = 7; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id_tag = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_y = -3; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/machinery/button/toggle/alternate{ + id_tag = "EngineEmitter"; + name = "Emitter Control"; + pixel_x = 6; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"vWC" = ( +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/item/book/manual/nt_tc, +/obj/item/paper/sierra/teleport, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"vWF" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"vWG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vWI" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"vWK" = ( +/obj/machinery/bluespacedrive, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"vWL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"vWR" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"vWT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"vWW" = ( +/obj/structure/hygiene/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/storage/mirror{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"vWX" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/item/storage/photo_album, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/airlock) +"vWZ" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id_tag = "eva_shutters"; + name = "EVA Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"vXb" = ( +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/item/folder/nt, +/obj/item/folder/nt, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Robotics Office" + }, +/turf/simulated/floor/tiled, +/area/assembly/office) +"vXi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d3starboard) +"vXk" = ( +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"vXm" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "sierra_surgery1"; + name = "Operation room 1"; + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holosign/surgery{ + dir = 8; + id_tag = "surgery1" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"vXn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"vXp" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"vXC" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular{ + dir = 8; + id_tag = "miners_restroom_sierra" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar_stairs) +"vXE" = ( +/obj/structure/bed/chair/office/teal{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"vXJ" = ( +/obj/floor_decal/corner/paleblue/border, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"vXO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/solar) +"vXP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"vXR" = ( +/obj/machinery/door/airlock/highsecurity{ + id_tag = "capt_safe_room"; + locked = 1 + }, +/obj/machinery/door/firedoor, +/obj/item/airlock_brace{ + req_access = list("ACCESS_CAPTAIN") + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/substation/bridgedeck) +"vXT" = ( +/obj/structure/table/marble, +/obj/machinery/cooker/candy, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"vXU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"vXV" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/rack, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/machinery/light_switch{ + dir = 4; + on = 1; + pixel_x = -25 + }, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"vYc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/security/sierra/hallway/aft) +"vYl" = ( +/obj/machinery/cryopod, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + color = "#393f43"; + init_color = "#393f43" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/central_stairwell) +"vYu" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall/hull, +/area/security/sierra/prison) +"vYz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "eng1_outer"; + name = "Third Deck Starboard Nacelle Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/thruster/d3starboard) +"vYG" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants/cobed) +"vYP" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"vYV" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"vYX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/light/spot, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"vYY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"vZb" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/turf/space, +/area/space) +"vZh" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"vZx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"vZz" = ( +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_diffuser, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/item/stock_parts/circuitboard/shield_generator, +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech/high_risk) +"vZB" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"vZF" = ( +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/exploration/eva) +"vZK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"vZL" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"vZO" = ( +/obj/structure/table/reinforced, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/holocontrol) +"vZQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/security/sierra/hallway/aft) +"vZS" = ( +/obj/decal/cleanable/cobweb2{ + dir = 8 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"vZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"vZW" = ( +/obj/floor_decal/carpet{ + dir = 4 + }, +/mob/living/simple_animal/passive/cat/fluff{ + name = "Cookie"; + speak_emote = list("purrs","meows","moans") + }, +/obj/structure/dogbed, +/obj/floor_decal/spline/fancy/black, +/obj/floor_decal/carpet, +/obj/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/garden_room) +"vZY" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"wag" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"waq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"was" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation/second) +"waF" = ( +/obj/structure/closet/secure_closet/security/sierra, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"waJ" = ( +/obj/floor_decal/borderfloor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/yellow/bordercorner2, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"waK" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"waO" = ( +/obj/structure/bed/chair/rounded/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"waR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/pew/left, +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/security/sierra/breakroom) +"waS" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"waX" = ( +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"wbc" = ( +/obj/floor_decal/industrial/traffic/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wbk" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"wbm" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/office) +"wbr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wbt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"wbv" = ( +/obj/shuttle_landmark/ferry/out, +/turf/space, +/area/space) +"wbZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"wca" = ( +/obj/shuttle_landmark/ninja/deck3, +/turf/space, +/area/space) +"wcb" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/incinerator) +"wcm" = ( +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"wcs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"wcF" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"wcM" = ( +/obj/machinery/gibber, +/obj/structure/curtain/medical, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"wcN" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/turret_protected/ai) +"wcU" = ( +/obj/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/substation/seconddeck) +"wdh" = ( +/obj/machinery/vending/tool{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/storage/primary) +"wdj" = ( +/obj/structure/bed/chair/padded/purple{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"wdk" = ( +/obj/floor_decal/industrial/traffic{ + dir = 1 + }, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wdp" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"wds" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/reagent_sublimator/sauna, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/breakroom) +"wdE" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"wdG" = ( +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"wdI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"wdK" = ( +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/suplocker_room) +"wdL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"wdN" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Chamber Output" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"wdP" = ( +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"wdT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"wdV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/airlock_canisters) +"web" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"wed" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + display_name = "Starboard Dock A"; + frequency = 1380; + id_tag = "merchant_shuttle_station"; + pixel_x = 32; + req_access = list("ACCESS_EXTERNAL"); + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"wej" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Central Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wek" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"wel" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/suits) +"wep" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/lime/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"wew" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"weB" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/cryo/south) +"weC" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoflora Hydroponics"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"weD" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"weF" = ( +/obj/floor_decal/floordetail/edgedrain{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"weJ" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"weM" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/thirddeck/port) +"weN" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"weT" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"weX" = ( +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"weY" = ( +/obj/structure/largecrate, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"wfa" = ( +/obj/machinery/oxygen_pump{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "petrov_shuttle_pump" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"wfc" = ( +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/thirddeck/starboard) +"wff" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "lounge_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/garden_room) +"wfo" = ( +/obj/floor_decal/carpet/blue2{ + dir = 4 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 5 + }, +/obj/structure/dogbed, +/mob/living/simple_animal/passive/cat/fluff/Runtime, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"wfu" = ( +/obj/shuttle_landmark/sierra/deck1/guppy, +/turf/space, +/area/space) +"wfw" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"wfJ" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/obj/item/autopsy_scanner, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue/autopsy) +"wfV" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"wfW" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/development) +"wgk" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/docking) +"wgm" = ( +/obj/fluid_mapped, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"wgn" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/chair/padded/red{ + dir = 4; + desc = "You sit in this, either by will or force. This is probably the most uncomfortable chair in the whole world. You literally die sitting on it." + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/office/hos) +"wgr" = ( +/obj/floor_decal/spline/fancy/wood/corner, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/computer/modular/preset/civilian{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"wgs" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"wgD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"wgH" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"wgN" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"wgO" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/paint_stripe/red, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cadetwindow" + }, +/turf/simulated/floor/plating, +/area/security/range) +"wgP" = ( +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wgQ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/rack, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/item/aicard, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"wgR" = ( +/obj/machinery/button/alternate/door/bolts{ + dir = 4; + id_tag = "cafe_private_room"; + name = "Lock"; + pixel_x = -24; + pixel_y = 7 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "private_cafe_windows"; + pixel_x = -24; + pixel_y = -6; + range = 3 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/paper/sierra, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 14; + pixel_x = -5 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"wgY" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/seconddeck/starboard) +"whd" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"whe" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"whj" = ( +/obj/item/stack/tile/walnut{ + pixel_y = -5; + pixel_x = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/vacant/bar) +"whl" = ( +/obj/structure/hygiene/sink/kitchen{ + pixel_y = 24 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/floor_decal/snow, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"whn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"whv" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"whx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/media/music_writer{ + pixel_y = 60 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"whD" = ( +/obj/structure/bed/chair/padded/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/office/hop) +"whF" = ( +/obj/structure/undies_wardrobe, +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/captain) +"whL" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + dir = 4; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/medical) +"whO" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"whQ" = ( +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"whR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/navbeacon/sierra/FD_forehallway1, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"whX" = ( +/turf/simulated/wall/prepainted, +/area/medical/ward) +"wib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"wid" = ( +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/port) +"wig" = ( +/turf/simulated/floor/tiled, +/area/maintenance/abandoned_hydroponics) +"wik" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/random/maintenance, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist(); + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/random/maintenance, +/obj/floor_decal/corner/black/full, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/single/lighter, +/turf/simulated/floor/tiled, +/area/crew_quarters/commissary) +"win" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red, +/obj/floor_decal/corner/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"wiz" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/maintenance/solgov, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"wiB" = ( +/obj/item/mech_component/propulsion/spider, +/obj/structure/closet/crate, +/obj/item/robot_parts/robot_component/actuator, +/obj/item/robot_parts/robot_component/actuator, +/obj/item/circuitboard/exosystem/utility, +/obj/item/circuitboard/exosystem/medical, +/obj/item/mech_equipment/sleeper, +/obj/item/mech_equipment/mounted_system/melee/mechete, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"wiF" = ( +/obj/floor_decal/carpet{ + dir = 8 + }, +/obj/floor_decal/carpet{ + dir = 1 + }, +/obj/floor_decal/carpet{ + dir = 9 + }, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/garden_room) +"wiH" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wiJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"wiO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/solar/port) +"wiU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"wjg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"wji" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"wjj" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "sierra_surgery1" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/surgery) +"wjk" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"wjl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"wjm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"wjq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/center) +"wjs" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"wjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/exploration/briefing_room) +"wjv" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"wjB" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"wjK" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/bridge/meeting_room) +"wjN" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"wjO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"wka" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa) +"wke" = ( +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"wkl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"wkt" = ( +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"wkA" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/infirmreception) +"wkC" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft) +"wkE" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"wkM" = ( +/obj/floor_decal/corner/red, +/obj/machinery/door_timer/cell_1{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"wkN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"wle" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/sleep/cryo) +"wlh" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"wlm" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"wlw" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"wly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"wlE" = ( +/obj/machinery/papershredder, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"wlJ" = ( +/obj/landmark/test/space_turf, +/turf/space, +/area/space) +"wlQ" = ( +/obj/machinery/suit_storage_unit/science, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/eva) +"wlR" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/quartermaster/hangar/upper) +"wlV" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/hangar) +"wlW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/emergency) +"wlZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"wma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/atmos) +"wme" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"wmh" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "First Deck Substation Bypass" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"wmm" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"wmn" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/hangar_atmos) +"wmo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/exploration_shuttle/power) +"wmq" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/pottedplant/smalltree, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/cryo/south) +"wms" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/shield/thirddeck) +"wmv" = ( +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/wood/walnut, +/area/chapel/main) +"wmy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/thirddeck/port) +"wmB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 8; + pixel_x = 24; + id_tag = "old_maintaince_privatedorm_toilet"; + name = "Lock" + }, +/turf/simulated/floor/tiled/freezer, +/area/vacant/dormintories) +"wmY" = ( +/obj/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/reagent_containers/glass/rag{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 4; + pixel_y = 17 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"wng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar_atmos) +"wnh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"wns" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"wnz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wnK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"wnO" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"wnT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "petrov_shuttle_outer"; + name = "Petrov Exterior Access"; + req_access = list("ACCESS_PETROV_HELM"); + autoset_access = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/petrov/airlock) +"wnX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"wnY" = ( +/obj/structure/bed/sofa/l/brown{ + dir = 8 + }, +/obj/floor_decal/carpet/red{ + dir = 1 + }, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/floor_decal/carpet/red{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"wod" = ( +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/turbolift/medical_lift) +"woo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"wop" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/aftport) +"wot" = ( +/turf/simulated/wall/prepainted, +/area/vacant/dungeon) +"woz" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"woC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"woD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner, +/obj/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"woE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"woN" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/radiation, +/obj/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"woR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"woS" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"wpa" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"wph" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"wpi" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen/blue{ + pixel_y = 3; + pixel_x = -2 + }, +/obj/item/pen/red{ + pixel_y = -2; + pixel_x = 6 + }, +/obj/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa/high_sec) +"wpk" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/sign/science_1{ + dir = 1; + pixel_y = -32 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"wpo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/item/folder/nt, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"wpI" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "xenobioaqua"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/water_cell) +"wpL" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/port) +"wpT" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/bar/cobed) +"wpU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/button/alternate/door/bolts{ + dir = 1; + id_tag = "shower1"; + name = "Lock"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head_big) +"wpV" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition/storage) +"wpX" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"wpZ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/b_green/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/b_green/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"wqe" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wqk" = ( +/obj/structure/fitness/weightlifter, +/obj/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/gym) +"wqm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"wqq" = ( +/obj/structure/table/standard, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"wqu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"wqy" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"wqA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/aft) +"wqC" = ( +/obj/item/device/flashlight/lamp/floodlamp/green, +/obj/item/device/flashlight/lamp/floodlamp/green, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 5 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"wqN" = ( +/obj/structure/bed/sofa/m/black{ + dir = 10 + }, +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"wrf" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "nuke_shuttle_dock_airlock_sensor"; + master_tag = "nuke_shuttle_dock_airlock"; + pixel_y = 24 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + id_tag = "nuke_shuttle_dock_airlock_pump" + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"wru" = ( +/obj/random/obstruction, +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"wrv" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"wrC" = ( +/obj/floor_decal/corner/red, +/obj/structure/table/steel, +/obj/item/storage/box/donkpocket_mixed, +/obj/item/storage/box/donkpocket_mixed, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"wrD" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"wrG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"wrR" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/office/hos/cobed) +"wsk" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d3starboard) +"wst" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/mortuary) +"wsu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"wsy" = ( +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/decal/cleanable/greenglow, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"wsz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"wsF" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/bridgedeck/starboard) +"wsH" = ( +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/cafe) +"wsQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/fore) +"wsR" = ( +/obj/machinery/door/airlock/glass/civilian{ + autoset_access = 0; + name = "Long Term Dorms" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/prison) +"wsS" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"wsW" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/bed/sofa/l/teal, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"wtc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"wtg" = ( +/obj/structure/window/reinforced/polarized{ + id = "cap_room_window" + }, +/obj/structure/dogbed, +/mob/living/simple_animal/friendly/fox/renault, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/floor_decal/carpet/blue{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"wtn" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/floor_decal/corner/grey/three_quarters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"wtu" = ( +/obj/fluid_mapped, +/obj/machinery/atmospherics/unary/outlet_injector{ + desc = "Passively injects water into its surroundings. Has a valve attached to it that can control flow rate."; + dir = 1; + name = "water injector" + }, +/turf/simulated/floor/reinforced, +/area/maintenance/waterstore) +"wtw" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wty" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery{ + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/sterilizine, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"wtA" = ( +/obj/structure/table/standard, +/obj/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"wtD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/firstdeck/centralport) +"wtH" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/crew_quarters/adherent) +"wtJ" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/starboard) +"wtM" = ( +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"wtP" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"wtU" = ( +/obj/structure/table/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/inflatable_dispenser, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"wua" = ( +/obj/structure/sign/warning/docking_area{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/space, +/area/space) +"wue" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"wug" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"wuh" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/heads/office/captain) +"wui" = ( +/obj/structure/table, +/obj/item/stack/material/steel, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"wuk" = ( +/obj/structure/table/woodentable_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Steward" + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"wun" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"wuE" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/undies_wardrobe, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"wuG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"wuH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"wuI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/heads/captain/beach) +"wuO" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"wuP" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"wuR" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"wuT" = ( +/obj/floor_decal/corner/purple/half{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"wve" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen{ + start_pressure = 14999 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"wvg" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/space) +"wvk" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"wvp" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/central_stairwell) +"wvv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"wvA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"wvG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wvM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/stool/padded/red, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"wvO" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"wvT" = ( +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/coatrack, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"wvZ" = ( +/obj/machinery/camera/network/hangar, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"wwf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/aftstarboard) +"wwj" = ( +/obj/structure/stairs/north, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/ward) +"wwm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "civsafedoorport"; + name = "Second Deck Safe Room" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"wwo" = ( +/obj/structure/table/marble, +/obj/structure/window/reinforced, +/obj/item/storage/fancy/egg_box, +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"wwr" = ( +/obj/structure/bed, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"wws" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder/empty, +/turf/simulated/floor/tiled/white/monotile, +/area/vacant/gambling) +"www" = ( +/obj/shuttle_landmark/merc/deck5, +/turf/space, +/area/space) +"wwG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"wwH" = ( +/turf/simulated/floor/tiled, +/area/vacant/cargo) +"wwN" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"wwR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"wwT" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"wwV" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"wxd" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass/engineering{ + req_access = newlist(); + dir = 8; + name = "Engineering EVA Storage" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/engineering/engine_eva) +"wxi" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/bed/chair/padded/blue, +/obj/structure/closet/medical_wall/filled{ + pixel_y = 32 + }, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/medical, +/obj/item/reagent_containers/food/snacks/proteinbar, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"wxx" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/bed/chair/shuttle/green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/seats_place) +"wxL" = ( +/obj/structure/catwalk, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"wxQ" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod1/station) +"wxY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"wyb" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 6 + }, +/obj/floor_decal/snow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/fridge/meat, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"wyg" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/port) +"wyn" = ( +/obj/structure/bed/padded, +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/item/bedsheet/green, +/obj/machinery/light_construct, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/ward) +"wyp" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/bed/chair/office/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"wyt" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/structure/bed/chair/rounded/blue{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"wyx" = ( +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wyy" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"wyB" = ( +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"wyE" = ( +/obj/structure/table/woodentable/maple, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/wardhallway) +"wyH" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/cistern) +"wyO" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/sleekstab{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/stab, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"wyV" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"wyZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Starboard Thruster"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"wzi" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/structure/bed/chair/office/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/suplocker_room) +"wzk" = ( +/obj/structure/table/rack, +/obj/item/stack/material/wood/walnut{ + amount = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"wzp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"wzq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wzw" = ( +/obj/structure/closet/secure_closet/medical_sierra, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Equipment - Locker Room" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"wzy" = ( +/turf/simulated/open, +/area/crew_quarters/cafe/upper) +"wzD" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/spline/plain/brown{ + dir = 8 + }, +/obj/structure/holoplant, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"wzG" = ( +/obj/structure/closet/crate/plastic, +/obj/decal/cleanable/cobweb2, +/obj/item/bodybag, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/obj/item/reagent_containers/ivbag/blood/human/oneg, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"wzH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"wzQ" = ( +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wzU" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"wAh" = ( +/obj/structure/flora/pottedplant/smalltree, +/obj/floor_decal/corner/black/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hos/cobed) +"wAw" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"wAE" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"wAR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"wAS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"wAU" = ( +/obj/floor_decal/corner/green/three_quarters{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/bordercorner, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wAZ" = ( +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/staging) +"wBb" = ( +/turf/simulated/wall/r_wall/hull, +/area/quartermaster/exploration/eva) +"wBg" = ( +/obj/machinery/telecomms/server/presets/service, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"wBl" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/power/apc/super/critical{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"wBq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"wBr" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id_tag = "Skynet_launch"; + name = "Mech Bay"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/assembly/chargebay) +"wBP" = ( +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/cistern) +"wBR" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"wBV" = ( +/obj/structure/bed/chair/padded/red, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/hangar/upper) +"wBZ" = ( +/obj/machinery/suit_storage_unit/explorer, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/expedition{ + c_tag = "Expedition - EVA"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"wCd" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"wCk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"wCl" = ( +/obj/machinery/air_sensor/nacelle/second/plasma, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"wCt" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/closet, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"wCv" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/structure/table/woodentable_reinforced/ebony, +/obj/machinery/fabricator/micro/bartender{ + pixel_x = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"wCA" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"wCL" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/bunk) +"wDa" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"wDi" = ( +/obj/structure/table/steel_reinforced, +/obj/item/book/manual/atmospipes, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"wDm" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod3/station) +"wDo" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"wDC" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"wDG" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"wDJ" = ( +/obj/structure/closet/fridge, +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/floor_decal/snow, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Kitchen - Freezer" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/galley/freezer) +"wDQ" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 8; + name = "cargo outlet" + }, +/obj/structure/sign/warning/mail_delivery{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/quartermaster/office/post) +"wDS" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/storage/box/rxglasses, +/obj/item/storage/box/rxglasses, +/obj/item/cane, +/obj/item/cane, +/obj/item/wheelchair_kit, +/obj/item/wheelchair_kit, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"wEb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"wEf" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/hardstorage) +"wEl" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"wEn" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"wEu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"wEw" = ( +/obj/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/wood/bamboo{ + name = "stairs" + }, +/area/crew_quarters/garden_room) +"wEy" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"wEU" = ( +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "selfddoor" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "selfddoor"; + name = "Vault Airlock Bolt Control"; + pixel_y = -32; + req_access = list("ACCESS_VAULT") + }, +/obj/item/airlock_brace{ + req_access = list("ACCESS_VAULT") + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"wFa" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d1port) +"wFh" = ( +/turf/simulated/wall/r_wall/hull{ + can_open = 1 + }, +/area/command/bsa) +"wFo" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge/upper) +"wFx" = ( +/obj/machinery/vending/wallmed2{ + dir = 8; + pixel_x = 23 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/escape_pod/escape_pod1/station) +"wFy" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/engineering/engine_monitoring) +"wFB" = ( +/obj/structure/sign/xenobio_3{ + pixel_y = -32 + }, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"wFO" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/hop) +"wFQ" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2{ + dir = 1 + }, +/obj/floor_decal/carpet/blue2{ + dir = 9 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1; + icon_state = "window" + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop/cobed) +"wFV" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/seconddeck/hangar) +"wGf" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"wGh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"wGK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"wGZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/chair/padded/purple{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"wHf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/obj/machinery/light, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"wHk" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft_stairwell) +"wHn" = ( +/obj/machinery/cryopod, +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod2/station) +"wHp" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/bridgedeck/aft) +"wHD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/sign/warning/high_voltage{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"wHL" = ( +/obj/floor_decal/industrial/hatch/grey, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/security{ + name = "Interrogation" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/sierra/interrogation/second) +"wHP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/wallframe_spawn/no_grille, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown1_2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"wHU" = ( +/obj/machinery/door/blast/shutters{ + id_tag = "portaux_warehouse"; + name = "Warehouse Shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"wIm" = ( +/obj/machinery/cryopod{ + dir = 2 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"wIq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"wIr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 9 + }, +/obj/structure/bed/chair/pew, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"wIy" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"wIz" = ( +/obj/machinery/computer/modular/preset/aislot/research{ + dir = 1 + }, +/obj/floor_decal/corner/research/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/office) +"wIU" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"wIW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/computer/air_control{ + dir = 1; + input_tag = "h2_in"; + name = "Hydrogen Supply Control"; + output_tag = "h2_out"; + sensor_name = "Tank"; + sensor_tag = "h2_sensor" + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"wIY" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"wJj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"wJl" = ( +/obj/structure/reagent_dispensers/coolanttank, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/ship) +"wJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"wJr" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"wJw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"wJA" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"wJE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"wJH" = ( +/obj/floor_decal/borderfloor, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"wJK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"wJN" = ( +/turf/space, +/area/space) +"wJP" = ( +/turf/simulated/wall/prepainted, +/area/bridge/marine_room) +"wKb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"wKq" = ( +/obj/structure/hygiene/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/storage/mirror{ + pixel_x = 24; + pixel_y = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/vacant/cargo) +"wKs" = ( +/obj/decal/cleanable/dirt, +/obj/structure/bed/chair/pew/left/mahogany, +/turf/simulated/floor/wood/walnut, +/area/vacant/sauna) +"wKC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"wKF" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/decal/cleanable/dirt, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/monotile, +/area/maintenance/abandoned_hydroponics) +"wKI" = ( +/obj/structure/closet/crate, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"wKK" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/steel_reinforced, +/obj/item/book/manual/supermatter_engine, +/obj/item/device/geiger, +/obj/item/device/binoculars, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"wKO" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/command{ + c_tag = "Command - Port Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"wLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"wLg" = ( +/obj/structure/table/steel, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/office/ce) +"wLl" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/ship_map, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wLu" = ( +/obj/machinery/atmospherics/binary/pump/on, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"wLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"wLC" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 32; + pixel_y = -37 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad{ + pixel_y = 16; + pixel_x = 16 + }, +/obj/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"wLT" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"wLX" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/roller_bed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"wMi" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"wMn" = ( +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_10_hatch"; + name = "Escape Pod Ten Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod10/station) +"wMx" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "toxins_petrov_in" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/sparker{ + id_tag = "toxlab_petrov"; + pixel_w = 1; + pixel_z = -23 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"wMB" = ( +/obj/floor_decal/industrial/warning/full, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng4"; + name = "First Deck Port Nacelle Access"; + pixel_y = 21; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/valve/shutoff/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/thruster/d1port) +"wMF" = ( +/turf/simulated/wall/prepainted, +/area/security/nuke_storage) +"wMG" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/storage) +"wMJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "ai_starboard"; + name = "exterior access button"; + pixel_y = 28; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"wMQ" = ( +/turf/simulated/wall/prepainted, +/area/maintenance/seconddeck/hangar) +"wMT" = ( +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"wMV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"wMZ" = ( +/obj/structure/closet/coffin/wooden, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/seconddeck/aftport) +"wNm" = ( +/obj/shuttle_landmark/sierra/deck5/exploration_shuttle, +/turf/space, +/area/space) +"wNp" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bridge Checkpoint"; + autoset_access = 0; + req_access = list("ACCESS_SEC_DOORS") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/regular/lockdown{ + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/lobby) +"wNq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"wNr" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"wNs" = ( +/obj/floor_decal/corner/green/half, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wNu" = ( +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"wNF" = ( +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"wNH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"wNJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/medical/morgue/autopsy) +"wNK" = ( +/obj/machinery/seed_storage/garden{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"wNN" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/sign/warning/pods/south{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"wNO" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_to_maint"; + name = "Infirmary to Maintenance Lockdown"; + req_access = list("ACCESS_MEDICAL"); + dir = 8; + pixel_x = 20 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_morg"; + name = "Mogrue Exit Lockdown"; + pixel_x = 20; + pixel_y = 10; + req_access = list("ACCESS_MEDICAL"); + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_crit2"; + name = "Critical Wing 2 Lockdown"; + pixel_x = 28; + pixel_y = 10; + req_access = list("ACCESS_MEDICAL"); + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_crit1"; + name = "Critical Wing 1 Lockdown"; + pixel_x = 36; + req_access = list("ACCESS_MEDICAL"); + pixel_y = 10; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_pat_ward"; + name = "Infirmary Patient Ward Lockdown"; + pixel_y = -10; + req_access = list("ACCESS_MEDICAL"); + pixel_x = 20; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_main_reg"; + name = "Infirmary Main Entrance Lockdown"; + pixel_y = -10; + req_access = list("ACCESS_MEDICAL"); + pixel_x = 28; + dir = 8 + }, +/obj/machinery/button/blast_door{ + id_tag = "med_pub_hall"; + name = "Infirmary Public Hallway Lockdown"; + pixel_x = 36; + req_access = list("ACCESS_MEDICAL"); + pixel_y = -10; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"wNV" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"wNX" = ( +/obj/structure/bed/chair/padded/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"wOa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 4 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/r_titanium, +/area/exploration_shuttle/power) +"wOd" = ( +/obj/machinery/computer/modular/preset/civilian, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"wOe" = ( +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - First Deck Subgrid"; + name_tag = "First Deck Subgrid" + }, +/obj/machinery/power/apc/critical{ + name = "south bump"; + pixel_y = -21 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"wOg" = ( +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"wOo" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"wOq" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"wOs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"wOv" = ( +/obj/shuttle_landmark/sierra/deck2/exploration_shuttle, +/turf/space, +/area/space) +"wOw" = ( +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_permabrig_third_cell_shutters" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"wOz" = ( +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/paint_stripe/red, +/obj/machinery/door/blast/shutters{ + dir = 4; + id_tag = "security_sergeant_shutters"; + name = "Warden Desk" + }, +/obj/wallframe_spawn/reinforced/polarized{ + id = "bo_windows" + }, +/turf/simulated/floor/plating, +/area/security/sierra/sergeant) +"wOA" = ( +/obj/structure/iv_stand, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"wOI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"wOU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"wPb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + dir = 4; + name = "Bridge Access"; + id_tag = "bridge_hallway_doors_starboadr" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/hallway) +"wPe" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod2/station) +"wPo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/foreport) +"wPp" = ( +/obj/machinery/light, +/obj/structure/closet/emcloset, +/obj/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/pager/science{ + dir = 1; + name = "Call Scientists button"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/entry) +"wPq" = ( +/obj/structure/largecrate, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"wPr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/turret_protected/ai_teleport) +"wPt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/storage/eva) +"wPB" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 200; + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"wPH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"wPK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "ai_core_inner"; + locked = 1; + name = "AI Internal Access" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "ai_core_airlock"; + name = "interior access button"; + pixel_x = 7; + pixel_y = -24; + req_access = list("ACCESS_AI_UPLOAD") + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai_teleport) +"wPL" = ( +/obj/structure/sign/emergonly{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/industrial/hatch/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/staging) +"wPQ" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/hole, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"wPR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"wPU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"wPV" = ( +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel_grid, +/area/command/bsa) +"wQa" = ( +/obj/machinery/button/blast_door{ + id_tag = "auxbar"; + name = "Blast Shutter Control"; + pixel_x = 26 + }, +/turf/simulated/floor/wood/walnut{ + icon_state = "walnut_broken5" + }, +/area/vacant/bar) +"wQf" = ( +/obj/structure/closet/coffin/wooden, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/black/mono, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/chapel/mortuary) +"wQg" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"wQh" = ( +/obj/floor_decal/techfloor, +/obj/machinery/light/spot, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8 + }, +/obj/engine_setup/pump_max, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_room) +"wQk" = ( +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"wQs" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wQC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"wQE" = ( +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/wall/r_titanium, +/area/shuttle/petrov/equipment) +"wQM" = ( +/obj/machinery/light, +/obj/structure/table/rack/dark, +/obj/item/storage/firstaid/adv{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/stab{ + pixel_y = 2 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = -3 + }, +/obj/item/device/robotanalyzer, +/obj/item/stack/nanopaste{ + pixel_x = 1 + }, +/obj/item/stack/nanopaste{ + pixel_x = -6 + }, +/obj/floor_decal/spline/plain/paleblue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/storage) +"wRc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"wRe" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/space) +"wRf" = ( +/obj/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"wRk" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/industrial/danger/corner, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"wRm" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/obj/floor_decal/corner/mauve/mono, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"wRs" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/thruster/d3port) +"wRA" = ( +/obj/floor_decal/corner/yellow/half{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"wRB" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"wRD" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"wRH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "Mail" + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/supply{ + c_tag = "Supply Office - Post Office"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"wRX" = ( +/obj/item/stool, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"wSa" = ( +/obj/machinery/porta_turret{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/flasher{ + dir = 8; + id_tag = "ai_core"; + pixel_x = 24 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"wSb" = ( +/obj/structure/table/standard, +/obj/item/bodybag/rescue/loaded, +/obj/item/bodybag/rescue/loaded, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/ward) +"wSm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"wSp" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/quartermaster/hangar/upper) +"wSG" = ( +/obj/floor_decal/corner/yellow, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/tropical, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/ce/cobed) +"wSK" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"wSZ" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"wTa" = ( +/obj/structure/table/standard, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + id_tag = "mental_health_door"; + name = "Office Door Control"; + pixel_x = -4; + pixel_y = 7; + req_access = list("ACCESS_PSYCHIATRIST") + }, +/obj/machinery/button/windowtint{ + id = "mental_health_windows"; + pixel_x = 4; + pixel_y = 7; + range = 11 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"wTr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/auxillary/port) +"wTv" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/device/synthesized_instrument/guitar, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"wTA" = ( +/obj/floor_decal/corner/black{ + dir = 6 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medbay Hall"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"wTF" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/center) +"wTG" = ( +/obj/structure/sign/nanotrasen{ + dir = 8 + }, +/turf/simulated/wall/r_wall/hull, +/area/storage/airlock_canisters) +"wTI" = ( +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"wUa" = ( +/obj/structure/catwalk, +/obj/machinery/light/spot, +/turf/simulated/floor/shuttle_ceiling/sierra/air{ + color = "#4c535b" + }, +/area/quartermaster/hangar/upper) +"wUi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/locker_room) +"wUn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"wUo" = ( +/obj/floor_decal/corner/red/diagonal, +/obj/floor_decal/spline/fancy/black, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/security/sierra/prison) +"wUp" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"wUq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"wUr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"wUu" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ + dir = 8; + name = "west bump"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"wUC" = ( +/obj/structure/table/rack, +/obj/random/trash, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"wUD" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"wUM" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/aft_stairwell) +"wUS" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/recharge_station, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"wUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/disposal/small{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/port) +"wUV" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -10; + pixel_y = -21 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"wVd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"wVe" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_cyborg_upload) +"wVf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"wVj" = ( +/obj/floor_decal/corner/red/border, +/obj/machinery/light/led/small, +/obj/machinery/hologram/holopad{ + pixel_x = 16 + }, +/obj/floor_decal/spline/fancy/black, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/bar) +"wVv" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Mess Hall - Canteen - Distribution"; + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"wVw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/engineering{ + c_tag = "Engineering - Substation - First Deck" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"wVA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"wVD" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"wVI" = ( +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"wVJ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"wVO" = ( +/obj/machinery/suit_storage_unit/engineering/alt, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_eva) +"wVT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/medical/virology/atmos) +"wWb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/chapel/main) +"wWd" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/shuttlefuel) +"wWk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/ntlogo, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/entry) +"wWm" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/l3closet/scientist, +/obj/floor_decal/corner/grey/diagonal, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/rnd/locker) +"wWo" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/storage, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"wWp" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/sign/directions/janitor{ + dir = 1; + pixel_x = -32; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"wWr" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/green/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"wWt" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"wWz" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"wWF" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/stock_parts/circuitboard/message_monitor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/tech) +"wWI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/power/apc/critical{ + name = "north bump"; + pixel_y = 21; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"wWV" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/firstdeck/aftstarboard) +"wWY" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/vending/games, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"wXb" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/hallway/primary/bridgedeck/aft) +"wXc" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/adv, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/locker) +"wXk" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/bed/padded, +/obj/item/bedsheet/purple, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/bunk) +"wXr" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "lounge_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/garden_room) +"wXw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/wallframe_spawn/reinforced/polarized/full, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/iaa) +"wXB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wXK" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"wXZ" = ( +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"wYj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/button/blast_door{ + pixel_y = 24; + id_tag = "armory"; + name = "Armory blast door-control"; + req_access = list("ACCESS_ARMORY") + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"wYl" = ( +/obj/structure/ladder, +/obj/catwalk_plated/dark, +/turf/simulated/open, +/area/crew_quarters/galley) +"wYp" = ( +/obj/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"wYr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleport Maintenance"; + req_access = newlist() + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/teleporter) +"wYz" = ( +/obj/floor_decal/corner/green/three_quarters{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics_sierra, +/obj/machinery/camera/network/research{ + c_tag = "Research - Xenoflora Atmospherics" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"wYF" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "xenolow_airlock"; + name = "Xenobiology Access Console"; + pixel_x = 24; + req_access = list("ACCESS_XENOBIO") + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/rnd/xenobiology/entry2) +"wYI" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"wYJ" = ( +/obj/machinery/door/window/brigdoor/eastright{ + id_tag = "iaaleft"; + req_access = newlist() + }, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"wYN" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"wYV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/mauve/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"wYZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/sergeant) +"wZg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"wZo" = ( +/obj/machinery/atmospherics/unary/vent_pump/tank{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/engineering/atmos) +"wZr" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/b_green/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/b_green/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/shuttle/green, +/turf/simulated/floor/tiled, +/area/exploration_shuttle/cargo_r) +"wZw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"wZz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/floor_decal/corner/black/three_quarters{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"wZC" = ( +/obj/floor_decal/corner/black{ + dir = 5 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"wZI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/hygiene/toilet, +/obj/item/taperoll/bog{ + pixel_x = -12; + pixel_y = -10 + }, +/obj/landmark/start, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"wZR" = ( +/obj/floor_decal/corner/green/border, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xaa" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "ai_starboard_outer"; + name = "Engineering External Access" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/aftport) +"xab" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"xae" = ( +/obj/structure/table/steel, +/obj/item/clothing/suit/chef/classic, +/obj/item/material/knife/combat, +/obj/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"xaj" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/paint/nt_white, +/obj/machinery/door/firedoor, +/obj/paint_stripe/nt_red, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/petrov/ship) +"xam" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"xar" = ( +/obj/structure/morgue, +/obj/floor_decal/industrial/outline/blue, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"xaC" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/exploration/storage) +"xaE" = ( +/obj/shuttle_landmark/skipjack/deck1, +/turf/space, +/area/space) +"xaG" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xaJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"xaK" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lob_bridge_lock" + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"xaM" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xaP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/entry) +"xaV" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xbm" = ( +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 4 + }, +/obj/floor_decal/carpet/purple{ + dir = 6 + }, +/obj/structure/dogbed, +/mob/living/simple_animal/hostile/retaliate/beast/diyaab{ + dir = 8; + faction = "boo"; + name = "Boo"; + response_disarm = "bops"; + response_harm = "kicks"; + response_help = "pets" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"xbp" = ( +/obj/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"xbx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"xbA" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobio3"; + name = "Containment Blast Doors" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/rnd/xenobiology/level1) +"xbC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"xbE" = ( +/obj/structure/lattice, +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xbG" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 25 + }, +/obj/item/stack/material/steel{ + amount = 25 + }, +/obj/item/stack/material/steel{ + amount = 25 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + color = "#8c911d" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"xbJ" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/assembly/robotics) +"xbL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"xbO" = ( +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"xbY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xbZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"xcb" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xce" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"xch" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"xck" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xcm" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"xcq" = ( +/obj/structure/railing/mapped, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"xct" = ( +/obj/wallframe_spawn/reinforced/titanium, +/obj/machinery/door/blast/regular/open{ + id_tag = "PetrovShield"; + name = "Petrov Blast Shutters" + }, +/obj/paint/nt_white, +/obj/paint_stripe/nt_red, +/turf/simulated/floor/plating, +/area/shuttle/petrov/scan) +"xcu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"xcw" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + id_tag = "ai_bridge_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"xcx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"xcB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"xcF" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"xcJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/barrier, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"xcU" = ( +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/coffee, +/obj/machinery/rotating_alarm/security_alarm{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"xcX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"xcZ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"xdi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/engineering/bluespace/chamber) +"xdk" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -21 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/storage) +"xdv" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/firstdeck/aftstarboard) +"xdx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/hydroponics) +"xdB" = ( +/obj/machinery/door/airlock/research{ + name = "Custodial Closet" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/eva) +"xdC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/papershredder, +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"xdE" = ( +/obj/shuttle_landmark/sierra/hangar/crucian, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"xdF" = ( +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xdN" = ( +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/hangar_stairs) +"xei" = ( +/turf/simulated/wall/r_wall/hull, +/area/vacant/storage) +"xek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"xep" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/holocontrol) +"xet" = ( +/obj/structure/hygiene/shower{ + dir = 1 + }, +/obj/structure/hygiene/drain/bath, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"xeA" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/vacant/monitoring) +"xeN" = ( +/obj/structure/bed/chair/shuttle/white{ + dir = 8 + }, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 8; + id_tag = "escape_pod_3_pump" + }, +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"xeO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"xeQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/telecomms/server{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"xeX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xeY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xfd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xfi" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/security/sierra/prison) +"xft" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"xfu" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/hardstorage) +"xfw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/petrov/cell2) +"xfz" = ( +/obj/structure/sign/warning/hot_exhaust{ + dir = 4 + }, +/obj/paint/red, +/obj/paint_stripe/white, +/turf/simulated/wall/ocp_wall, +/area/shuttle/petrov/gas) +"xfC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, +/obj/floor_decal/corner/darkblue/mono, +/obj/structure/filingcabinet/wallcabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/adjutants) +"xfY" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing/mapped{ + init_color = "#8c911d"; + dir = 1; + color = "#8c911d" + }, +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"xgj" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"xgk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"xgp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod3/station) +"xgt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"xgA" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 8; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/galley) +"xgB" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"xgD" = ( +/obj/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/engineering/gravitaional_generator) +"xgE" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/heads/office/rd/cobed) +"xgH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Petrov Checkpoint"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"xgP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner/grey/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"xgS" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/cans/cherrycola, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = 11; + pixel_x = 10 + }, +/obj/item/reagent_containers/food/drinks/cans/coffeecola{ + pixel_y = -4; + pixel_x = -8 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/dungeon) +"xgT" = ( +/obj/structure/bed/sofa/r/brown{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"xgX" = ( +/obj/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xgZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green, +/obj/wallframe_spawn/reinforced/polarized{ + id = "cap_windows" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/office/captain) +"xhd" = ( +/obj/item/stool/bar/padded, +/obj/floor_decal/corner/red{ + dir = 10 + }, +/obj/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/cafe) +"xhp" = ( +/obj/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"xhr" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/vacant/prototype/engine) +"xhu" = ( +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"xhz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"xhA" = ( +/obj/structure/table/woodentable/walnut, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/green, +/obj/floor_decal/carpet/green, +/obj/floor_decal/carpet/green{ + dir = 8 + }, +/obj/floor_decal/carpet/green{ + dir = 10 + }, +/turf/simulated/floor/carpet/green, +/area/medical/mentalhealth/therapyroom) +"xhN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/forestarboard) +"xhU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/catwalk_plated/dark, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/bridge/hallway) +"xhX" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"xia" = ( +/obj/structure/cable/green, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/wallframe_spawn/reinforced/polarized/full{ + id = "mental_health_windows" + }, +/turf/simulated/floor/plating, +/area/medical/mentalhealth) +"xic" = ( +/obj/shuttle_landmark/escape_pod/start/pod9, +/obj/wallframe_spawn/reinforced/titanium, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod/escape_pod9/station) +"xig" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xik" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/floor_decal/corner/green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"xim" = ( +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/bordercorner, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"xin" = ( +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"xip" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/landmark{ + name = "lightsout" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"xiA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/air_sensor{ + id_tag = "toxins_petrov_sensor" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/shuttle/petrov/gas) +"xiD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"xiE" = ( +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"xiJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/ladder/up, +/obj/floor_decal/industrial/warning/fulltile, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"xiS" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/bandolier/safari, +/obj/item/gun/launcher/net, +/obj/item/clothing/accessory/storage/bandolier/safari, +/obj/item/gun/launcher/net, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/exploration/storage) +"xiV" = ( +/obj/floor_decal/industrial/traffic{ + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/floor_decal/industrial/traffic{ + dir = 1; + detail_color = "#a2819e"; + color = "#a2819e" + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/turbolift/rndmaint_lift) +"xiW" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/office/iaa/high_sec) +"xiY" = ( +/obj/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/railing/mapped, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"xjd" = ( +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/heads/office/rd/cobed) +"xje" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"xjf" = ( +/obj/structure/table/reinforced, +/obj/floor_decal/corner/beige{ + dir = 5 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"xjk" = ( +/obj/floor_decal/corner/green/half{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"xjo" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"xjq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange/corner, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"xjr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/warning/pods/west{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"xjt" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"xjw" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"xjE" = ( +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/rotating_alarm/security_alarm{ + dir = 4; + pixel_x = -14 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"xjQ" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/tech_loot, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"xjT" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/bridgedeck/starboard) +"xjV" = ( +/turf/simulated/wall/prepainted, +/area/hallway/primary/seconddeck/aft_stairwell) +"xjZ" = ( +/turf/simulated/wall/r_wall/hull, +/area/maintenance/solar/starboard) +"xkk" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "ai_bridge_inner"; + locked = 1; + name = "Engineering External Access" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + pixel_y = 24; + master_tag = "ai_bridge_airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"xkl" = ( +/obj/structure/sign/warning/airlock{ + dir = 8 + }, +/turf/simulated/wall/prepainted, +/area/maintenance/solar/bridge_port) +"xkv" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"xkD" = ( +/obj/machinery/constructable_frame/computerframe{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"xkE" = ( +/obj/structure/table/reinforced, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Holodeck - Center" + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/holocontrol) +"xkF" = ( +/obj/structure/table/standard, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/floor_decal/corner/green/half{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"xkH" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/center) +"xkR" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"xkX" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"xkZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"xlb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar) +"xlf" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "hydroponics_space"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/hydroponics) +"xli" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"xlq" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/maintenance/fourthdeck/forestarboard) +"xls" = ( +/obj/structure/ladder, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/firstdeck/centralport) +"xlz" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"xlB" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/aftstarboard) +"xlH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar_stairs/upper) +"xlN" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/morgue) +"xlV" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/railing/mapped, +/turf/simulated/floor/grass/cut, +/area/hallway/primary/bridgedeck/center) +"xmj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/rnd/xenobiology/xenoflora) +"xml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) +"xmm" = ( +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"xmq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 4 + }, +/obj/floor_decal/spline/fancy/black, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"xmF" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/item/storage/briefcase/inflatable, +/obj/random/maintenance, +/obj/machinery/button/alternate/door/bolts{ + id_tag = "bridgesafe_front"; + name = "safe room door-control"; + pixel_x = -24; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"xmH" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xmK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"xmN" = ( +/obj/structure/closet/emcloset, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"xmU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/gas) +"xnd" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/floor_decal/industrial/hatch/yellow, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/high_voltage{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/hop) +"xnf" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/item/book/manual/engineering_singularity_safety, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xng" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"xnh" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/obj/machinery/computer/cryopod{ + pixel_x = -32 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod7/station) +"xnl" = ( +/obj/structure/bed/chair/shuttle/blue, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/guppy_hangar/start) +"xno" = ( +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"xnr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xnB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Security Checkpoint"; + sort_type = "Security Checkpoint" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"xnJ" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair/office/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"xnL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Security Equipment"; + sort_type = "Security Equipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/corner/red/bordercorner, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"xnM" = ( +/obj/floor_decal/corner/darkblue/mono, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"xoa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/aft) +"xof" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/shield_diffuser, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "solar_bridge_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_starboard) +"xog" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/constructable_frame, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/foreport) +"xoo" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level2) +"xor" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_r) +"xov" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + id_tag = "solar_starboard_inner"; + name = "Engineering External Access" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/starboard) +"xoy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xoB" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_port_pump" + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/engine{ + c_tag = "Engine - Access"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"xoP" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"xoT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/fourthdeck/center) +"xoZ" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/firstdeck/center) +"xpg" = ( +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "bridge_windows" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"xpq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xpx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"xpy" = ( +/obj/structure/sign/warning/docking_area{ + dir = 1 + }, +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/docking) +"xpJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/obj/structure/cart{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"xpM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"xpO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"xpP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/door/blast/regular{ + id_tag = "ThrusterVents"; + name = "Thruster Blast Door" + }, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/engine_room) +"xpQ" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xpT" = ( +/obj/floor_decal/techfloor, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"xpU" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xpV" = ( +/obj/floor_decal/borderfloor/corner, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft_stairwell) +"xpX" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id_tag = "hangar_hallway_shutters"; + name = "Hangar Deck Hallway Shutters"; + opacity = 0 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 2; + id_tag = "lockdown3_4" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/fore) +"xqa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"xqd" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"xqh" = ( +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/firstdeck/center) +"xql" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology/atmos) +"xqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"xqJ" = ( +/turf/simulated/wall/prepainted, +/area/vacant/monitoring) +"xrb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"xrm" = ( +/obj/structure/dogbed, +/mob/living/simple_animal/friendly/koala/samorey, +/obj/floor_decal/carpet/purple, +/obj/floor_decal/carpet/purple{ + dir = 8 + }, +/obj/floor_decal/carpet/purple{ + dir = 10 + }, +/turf/simulated/floor/carpet/purple, +/area/chapel/office) +"xrn" = ( +/obj/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/disposal/small{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/airlock{ + color = "#ff9900"; + name = "\improper WAY TO SPACE"; + dir = 8; + pixel_x = 32 + }, +/obj/floor_decal/corner/black/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/interrogation/second) +"xru" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"xrv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/bed/chair/padded/blue, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/seconddeck) +"xrw" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xrC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"xrJ" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"xrL" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/soap/red_soap, +/obj/item/material/twohanded/baseballbat, +/turf/simulated/floor/tiled/dark, +/area/maintenance/firstdeck/forestarboard) +"xrV" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"xrW" = ( +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"xrZ" = ( +/obj/machinery/photocopier, +/obj/floor_decal/corner/blue{ + dir = 6 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + pixel_x = 20; + pixel_y = -10; + id = "cmo_windows" + }, +/obj/machinery/button/alternate/door{ + desc = "A remote control-switch for the office door."; + dir = 8; + id_tag = "cmodoor"; + name = "CMO Office Door Control"; + pixel_x = 24; + pixel_y = 6; + req_access = list("ACCESS_CHIEF_MEDICAL_OFFICER") + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/cmo) +"xsa" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"xsf" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/open, +/area/space) +"xsg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/closet/l3closet/scientist, +/obj/structure/sign/xenobio_3{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"xsi" = ( +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/single/color/cable_coil, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xsl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"xsr" = ( +/obj/machinery/computer/modular/preset/cardslot/command{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"xsu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"xsz" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id_tag = "Biohazard"; + name = "Biohazard Shutter" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Miscellaneous Research"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/containment) +"xsB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"xsC" = ( +/obj/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"xsF" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); + secured_wires = 1; + autoset_access = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"xsN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/obj/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Ship Energy Brig" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/firstdeck/foreport) +"xsQ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"xsS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engine_monitoring) +"xsT" = ( +/obj/shuttle_landmark/lift/medical_top, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/turbolift/medical_lift) +"xsW" = ( +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/monitoring) +"xtu" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/bridge) +"xtD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"xtM" = ( +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/floor_decal/corner/grey_alt{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"xtN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"xtS" = ( +/obj/structure/closet/secure_closet/atmos_sierra, +/obj/item/rpd, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xtU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"xtW" = ( +/obj/floor_decal/industrial/traffic, +/obj/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xtX" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "sierra_surgery2"; + name = "Operating Room 2"; + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/holosign/surgery{ + dir = 8; + id_tag = "sierra_surgery2" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery/second) +"xuf" = ( +/obj/structure/hygiene/shower{ + dir = 1 + }, +/obj/structure/hygiene/drain/bath, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/head) +"xuk" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/maintenance_equipstorage) +"xuw" = ( +/obj/machinery/sleeper{ + dir = 1 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/nosmoking_1{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Critical Wing - Entry"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/sleeper) +"xuz" = ( +/obj/structure/table/standard, +/obj/item/device/scanner/spectrometer/adv, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/turf/simulated/floor/tiled/dark/monotile, +/area/shuttle/petrov/scan) +"xuD" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai_upload) +"xuN" = ( +/obj/machinery/computer/modular/preset/security{ + dir = 4; + name = "security console" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/floor_decal/techfloor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"xuO" = ( +/turf/simulated/wall/prepainted, +/area/quartermaster/shuttlefuel) +"xuU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xvl" = ( +/obj/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"xvr" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals10, +/obj/structure/curtain/open/shower, +/obj/item/soap, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/structure/hygiene/drain, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/prison) +"xvB" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder/juicer, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/floor_decal/corner/green/three_quarters{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/reagent_containers/dropper, +/turf/simulated/floor/tiled, +/area/hydroponics) +"xvF" = ( +/obj/structure/table/rack, +/obj/floor_decal/industrial/outline/yellow, +/obj/random/maintenance, +/turf/simulated/floor/tiled, +/area/maintenance/seconddeck/aftstarboard) +"xvO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"xvP" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/hangar/upper) +"xvS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"xvT" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/corner, +/obj/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/vacant/prototype/engine) +"xvV" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"xwc" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/canister) +"xwd" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"xwl" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue) +"xwp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"xws" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xwu" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xwC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"xwJ" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/crew_quarters/commissary) +"xwP" = ( +/obj/structure/bed/chair/office/light, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/scan) +"xwR" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralstarboard) +"xwV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"xwW" = ( +/obj/structure/table/woodentable/ebony, +/obj/item/storage/firstaid/regular{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = -2; + pixel_x = 9 + }, +/obj/machinery/body_scan_display{ + pixel_y = 24 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"xwY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/forestarboard) +"xxb" = ( +/obj/structure/bed/sofa/r/black{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/forensic) +"xxf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xxk" = ( +/obj/floor_decal/techfloor/orange, +/obj/structure/bed/chair/padded/blue{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"xxl" = ( +/obj/machinery/reagentgrinder, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/research{ + c_tag = "Xenobiology - Surgery"; + dir = 4 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"xxo" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/standard, +/obj/item/device/scanner/xenobio, +/obj/item/device/scanner/xenobio, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/rnd/xenobiology/level1) +"xxp" = ( +/obj/machinery/computer/modular/preset/medical{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/mentalhealth) +"xxv" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering EVA Storage"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/engine_eva) +"xxB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"xxZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/atmos{ + dir = 8; + name = "Bridge Atmospherics Supply" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos/bridge) +"xya" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"xye" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xyh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/aft_stairwell) +"xyk" = ( +/obj/structure/roller_bed, +/obj/structure/iv_stand, +/obj/floor_decal/borderfloor{ + color = null; + dir = 9 + }, +/obj/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + color = null; + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/exploration_shuttle/medical) +"xyo" = ( +/obj/floor_decal/borderfloor{ + dir = 9 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"xyq" = ( +/obj/structure/wall_frame/standard, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id_tag = "concheckwindow"; + name = "Operation Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Security Checkpoint"; + autoset_access = 0 + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8; + name = "Security Checkpoint" + }, +/obj/machinery/door/firedoor, +/obj/structure/table/wallf{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/opscheck) +"xyt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"xyI" = ( +/obj/machinery/suit_storage_unit/pilot, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/eva) +"xyL" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_s"; + dir = 1 + }, +/obj/paint/red, +/obj/paint_stripe/red, +/turf/simulated/wall/r_titanium, +/area/shuttle/escape_pod/escape_pod9/station) +"xyO" = ( +/obj/decal/cleanable/dirt, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"xyV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Adherent Maintenance" + }, +/turf/simulated/floor/crystal, +/area/crew_quarters/adherent) +"xzd" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"xzh" = ( +/obj/machinery/computer/modular/preset/engineering{ + dir = 1 + }, +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmospherics - Bridge Deck"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/bridge) +"xzj" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/solar/bridge_port) +"xzu" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman{ + sheets = 25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"xzw" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"xzD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "solar_starboard"; + name = "interior access button"; + pixel_x = 12; + pixel_y = 27; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/solar/starboard) +"xzF" = ( +/obj/structure/bed/chair/padded/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/interrogation) +"xzJ" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/thirddeck/starboard) +"xzL" = ( +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "guppy_shield"; + name = "Window Shield" + }, +/obj/paint_stripe/yellow, +/turf/simulated/floor/plating, +/area/guppy_hangar/start) +"xzN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/thruster/d3starboard) +"xzT" = ( +/obj/floor_decal/corner/paleblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/infirmary) +"xzY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/floor_decal/industrial/outline/blue, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/backstorage) +"xAd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe/upper) +"xAj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"xAk" = ( +/obj/floor_decal/corner/grey/full, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"xAm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/floor_decal/borderfloor{ + dir = 5 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"xAq" = ( +/obj/structure/bed/sofa/l/beige, +/turf/simulated/floor/carpet, +/area/crew_quarters/lounge) +"xAw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xAE" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/bridge/storage) +"xAG" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"xAH" = ( +/obj/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/filingcabinet/chestdrawer{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Misc. Chemistry"; + dir = 8; + network = list("Research","Miscellaneous Reseach") + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"xAM" = ( +/obj/machinery/suspension_gen, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/equipment) +"xBb" = ( +/obj/structure/table/standard, +/obj/item/board, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/sierra/prison) +"xBh" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/button/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + dir = 8; + id_tag = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = 25; + req_access = list("ACCESS_ENGINE_EQUIP") + }, +/obj/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xBi" = ( +/obj/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xBk" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/safe_room/firstdeck) +"xBo" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue3, +/area/crew_quarters/heads/office/cmo/cobed) +"xBy" = ( +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"xBF" = ( +/obj/structure/closet/crate/bin, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Laundry room"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/laundry) +"xBH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/bed/chair/office/purple, +/obj/floor_decal/corner/purple/diagonal, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/level1) +"xBR" = ( +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"xBY" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = -24 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/rnd/xenobiology/atmos) +"xBZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"xCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"xCc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/floor_decal/corner/purple/half{ + dir = 8 + }, +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/shuttle/petrov/security) +"xCd" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/fore) +"xCg" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"xCn" = ( +/obj/landmark/map_data{ + height = 5 + }, +/turf/space, +/area/space) +"xCs" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"xCz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"xCA" = ( +/obj/wallframe_spawn/reinforced_phoron, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"xCB" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"xCC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall/hull, +/area/medical/virology/atmos) +"xCG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/turret_protected/ai_cyborg_station) +"xCJ" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"xCQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/yellow/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"xCW" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/seconddeck/aftport) +"xCY" = ( +/obj/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/security/nuke_storage) +"xDi" = ( +/obj/paint/black, +/obj/paint_stripe/turquoise, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_teleport) +"xDk" = ( +/obj/structure/railing/mapped, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xDs" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cargo_l) +"xDA" = ( +/obj/structure/sign/deck/first{ + dir = 8; + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/open, +/area/hallway/primary/firstdeck/aft_stairwell) +"xDC" = ( +/obj/machinery/vending/hotfood{ + dir = 1 + }, +/obj/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/decal/cleanable/dirt, +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/dark, +/area/vacant/mess) +"xDJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"xDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"xDT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"xDU" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"xDX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"xEc" = ( +/obj/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"xEd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"xEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"xEi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"xEk" = ( +/obj/structure/table/standard, +/obj/machinery/reagent_temperature, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"xEn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"xEA" = ( +/obj/structure/closet/emcloset, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftstarboard) +"xEB" = ( +/obj/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1port) +"xEE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"xEG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/sleep/cryo/south) +"xEI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xEJ" = ( +/obj/structure/bed/chair/pew/left, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/actor/stage) +"xEM" = ( +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = -31 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -24 + }, +/obj/machinery/camera/network/first_deck{ + c_tag = "First Deck - Central Stairwell"; + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/firstdeck/central_stairwell) +"xEQ" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/purple/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/storage2) +"xES" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/equipment) +"xFc" = ( +/turf/simulated/floor/plating, +/area/medical/morgue) +"xFd" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/fourthdeck/aft) +"xFn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/materials_storage) +"xFo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"xFp" = ( +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/medical/morgue/autopsy) +"xFy" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/item/barrier, +/obj/machinery/button/blast_door{ + pixel_y = -24; + dir = 1; + id_tag = "armory"; + name = "Armory blast door-control"; + req_access = list("ACCESS_ARMORY") + }, +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/light/small, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"xFG" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/thirddeck) +"xFK" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/door/window/southleft{ + name = "Containment Pen"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular/open{ + id_tag = "xenobioa1"; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/level2) +"xFL" = ( +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/fore) +"xFQ" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/button/blast_door{ + dir = 4; + id_tag = "Skynet_launch"; + name = "Charging Bay Door Control"; + pixel_x = -24; + req_access = list("ACCESS_ROBOTICS") + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"xFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/holoplant, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/fore) +"xGg" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"xGi" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/crew_quarters/sleep/bunk) +"xGr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/floor_decal/corner/black/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics/third_deck_storage) +"xGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"xGD" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/level1) +"xGM" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"xGT" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/barbecue{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"xGX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "ai_bridge_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + pixel_y = -24; + master_tag = "ai_bridge_airlock" + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"xGZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/starboard) +"xHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/centralport) +"xHi" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"xHt" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/quartermaster/hangar/upper) +"xHE" = ( +/obj/structure/closet/chefcloset_sierra, +/obj/floor_decal/corner/grey/three_quarters{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/galley/backroom) +"xHI" = ( +/obj/structure/table/reinforced, +/obj/floor_decal/corner/beige{ + dir = 10 + }, +/obj/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"xHK" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/foreport) +"xHM" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/infirmreception) +"xHR" = ( +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"xHT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xHY" = ( +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/captain) +"xIb" = ( +/obj/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xIg" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/foreport) +"xIj" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftport) +"xIk" = ( +/obj/machinery/door/airlock/external/bolted/cycling{ + frequency = 1380; + id_tag = "admin_shuttle_dock_outer"; + name = "Docking Port Airlock" + }, +/obj/machinery/shield_diffuser, +/obj/shuttle_landmark/sierra/deck3/skrellshuttle, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/fourthdeck/center) +"xIl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"xIp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/hologram/holopad/longrange, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape_pod/escape_pod5/station) +"xIs" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass/civilian{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/laundry) +"xIC" = ( +/obj/structure/closet/emcloset/anchored, +/obj/floor_decal/corner/yellow/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/thirddeck/aft_stairwell) +"xIG" = ( +/obj/structure/bed/chair/padded/blue, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"xII" = ( +/obj/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced/hydrogen/fuel, +/area/thruster/d3port) +"xIJ" = ( +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/white, +/area/medical/ward) +"xIM" = ( +/obj/item/stool/bar, +/obj/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"xIQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/prison) +"xIV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Drone Bay"; + secured_wires = 1 + }, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_ridged, +/area/turret_protected/ai_cyborg_station) +"xIW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/teleporter) +"xIY" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1438; + id = "cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/engineering/engine_room) +"xIZ" = ( +/obj/structure/disposalpipe/segment, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"xJc" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/gas) +"xJd" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/hull, +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "library_space_lower"; + name = "Space Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/lounge/upper) +"xJg" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/blue/border, +/obj/machinery/light_switch{ + pixel_x = 21; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/hop/cobed) +"xJl" = ( +/obj/structure/railing/mapped, +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xJo" = ( +/turf/simulated/wall/r_wall/hull, +/area/crew_quarters/visitors) +"xJH" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/medical{ + name = "Critical Wing Second"; + dir = 8; + id_tag = "MedbayER" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"xJO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"xJP" = ( +/obj/paint/red, +/obj/paint_stripe/white, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/r_titanium, +/area/guppy_hangar/start) +"xJT" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/medical/infirmreception) +"xJU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/fourthdeck/aft) +"xKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"xKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/thirddeck/center) +"xKr" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/forestarboard) +"xKw" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/tech_supply{ + pixel_y = 5; + pixel_x = -6 + }, +/obj/random/tech_supply{ + pixel_y = -8; + pixel_x = -9 + }, +/obj/random/tech_supply{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/random/tech_supply{ + pixel_y = -8; + pixel_x = 7 + }, +/obj/random/tool{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/random/tool{ + pixel_y = -2; + pixel_x = -5 + }, +/obj/random/tank{ + pixel_y = -1; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"xKB" = ( +/obj/structure/table/rack, +/obj/item/aiModule/freeform, +/obj/item/aiModule/protectStation, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Utility Modules" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"xKP" = ( +/obj/machinery/door/blast/regular/open{ + density = 0; + id_tag = "calypso_shutters"; + name = "Protective Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced/titanium, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/paint/black, +/obj/paint_stripe/blue, +/turf/simulated/floor/plating, +/area/exploration_shuttle/cargo_r) +"xKS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"xKT" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/muzzle/tape, +/obj/item/clothing/mask/plunger, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"xLe" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"xLl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/quartermaster/exploration/storage) +"xLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/firstdeck/center) +"xLy" = ( +/obj/structure/sign/warning/pods/south{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"xLz" = ( +/obj/floor_decal/industrial/outline/grey, +/obj/machinery/suit_storage_unit/medical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/eva) +"xLL" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Research Office"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/office) +"xLM" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"xLN" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/xenobio) +"xLO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"xLQ" = ( +/obj/floor_decal/corner/red/half{ + dir = 8 + }, +/obj/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/central_stairwell) +"xLU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/port) +"xLV" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"xMc" = ( +/obj/floor_decal/corner/black/mono, +/obj/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/floor_decal/corner/green/bordercorner, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/commissary) +"xMk" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"xMl" = ( +/obj/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/structure/bed/chair/padded/blue, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/bridge) +"xMn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/thruster/d1starboard) +"xMp" = ( +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"xMu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/wardhallway) +"xMx" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/corner/red/border, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xMy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"xMA" = ( +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/rnd/toxins) +"xMC" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/paper/sierra/compactor, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/compactor) +"xMK" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"xMO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"xMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/bridgedeck/aft) +"xNb" = ( +/obj/machinery/door/airlock/civilian{ + name = "Toilets"; + req_access = newlist() + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/freezer, +/area/vacant/cargo) +"xNe" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall/hull, +/area/space) +"xNg" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/button/holosign{ + dir = 1; + id_tag = "surgery1"; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "sierra_surgery1"; + pixel_x = -8; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/surgery) +"xNk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/fore) +"xNv" = ( +/obj/floor_decal/corner/red{ + dir = 8 + }, +/obj/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/bridge/lobby) +"xNy" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/starboard) +"xNz" = ( +/obj/shuttle_landmark/sierra/deck5/guppy, +/turf/space, +/area/space) +"xND" = ( +/obj/machinery/shield_diffuser, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_7_berth_hatch"; + name = "Escape Pod Seven" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/firstdeck/centralstarboard) +"xNH" = ( +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/hallway/primary/bridgedeck/center) +"xNI" = ( +/obj/structure/reagent_dispensers/water_cooler{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"xNM" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/docking) +"xNQ" = ( +/turf/simulated/wall/r_wall/hull, +/area/rnd/xenobiology/level1) +"xOd" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ + RCon_tag = "Substation - AI Upload" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "AI Maintenance" + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/turret_protected/ai_upload) +"xOe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xOf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/port) +"xOg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo/firstdeck) +"xOp" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/folder/red{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder/nt, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"xOs" = ( +/obj/wallframe_spawn/reinforced/polarized, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"xOH" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"xOK" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/exploration_shuttle/cockpit) +"xOM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/command/exploration_leader) +"xOR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"xOY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"xPa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xPb" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/thirddeck/center) +"xPe" = ( +/obj/structure/table/standard, +/obj/item/folder/yellow, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 8; + pixel_y = -27 + }, +/obj/floor_decal/corner/yellow/half, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"xPm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "td_port" + }, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xPo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"xPp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"xPs" = ( +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/aft) +"xPv" = ( +/obj/floor_decal/industrial/traffic{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xPy" = ( +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"xPF" = ( +/obj/structure/table/rack, +/obj/item/storage/firstaid/fire{ + pixel_y = 10 + }, +/obj/item/storage/firstaid/trauma, +/obj/item/storage/firstaid/o2{ + pixel_y = -10 + }, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/equipstorage) +"xPG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/heads/office/rd) +"xPH" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"xPM" = ( +/obj/machinery/pointdefense{ + initial_id_tag = "sierra_main_pd" + }, +/obj/structure/cable/green, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xPO" = ( +/obj/fluid_mapped, +/obj/item/clothing/under/swimsuit/blue, +/obj/item/beach_ball, +/obj/item/bananapeel, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"xPU" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + id_tag = "shower2"; + name = "Second Private Shower" + }, +/turf/simulated/floor/tiled/white/monotile, +/area/crew_quarters/head_big) +"xQg" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"xQm" = ( +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/civilian{ + dir = 8; + name = "Cryo Storage" + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/sleep/cryo/bridge) +"xQy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/security/sierra/breakroom) +"xQE" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/closet/medical_wall/filled{ + pixel_y = 24 + }, +/obj/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled, +/area/rnd/research) +"xQF" = ( +/obj/wallframe_spawn/reinforced/no_grille, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/quartermaster/exploration/briefing_room) +"xQL" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"xQT" = ( +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "xenohight_airlock_sensor_inner"; + master_tag = "xenohight_airlock"; + pixel_x = 5; + pixel_y = 29; + req_access = list("ACCESS_XENOBIO") + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"xQZ" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"xRa" = ( +/turf/simulated/wall/prepainted, +/area/crew_quarters/heads/captain) +"xRc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/sleep/cryo/bridge) +"xRf" = ( +/obj/machinery/door/window{ + autoset_access = 0; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/misc_lab) +"xRA" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"xRB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"xRM" = ( +/obj/structure/railing/mapped, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/turf/simulated/floor/tiled/white, +/area/medical/maintenance_equipstorage) +"xRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"xRU" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/glasses, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/engineering/engineering_monitoring) +"xSc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/corner_techfloor_grid, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/bluespace) +"xSl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/aftstarboard) +"xSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/solar/bridge_port) +"xSo" = ( +/obj/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 10 + }, +/obj/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/floor_decal/corner/darkblue/bordercorner2{ + dir = 9 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"xSp" = ( +/obj/structure/synthesized_instrument/synthesizer/piano, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/obj/floor_decal/spline/fancy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"xSr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/woodentable_reinforced/walnut, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/storage/box/donut, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge/upper) +"xSt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/quartermaster/office/post) +"xSy" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"xSA" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/armory) +"xSF" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/black/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"xSK" = ( +/obj/structure/bed/chair/armchair/brown, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"xSL" = ( +/obj/structure/bed/chair/wood/walnut{ + dir = 1 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/vacant/gambling) +"xSX" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"xTc" = ( +/obj/floor_decal/corner/green{ + dir = 1 + }, +/obj/floor_decal/corner/purple, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/rnd/xenobiology/xenoflora) +"xTj" = ( +/turf/simulated/floor/tiled/white, +/area/medical/staging) +"xTl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft) +"xTq" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor/orange, +/obj/structure/window/boron_reinforced{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/gravitaional_generator) +"xTs" = ( +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/expedition/storage) +"xTt" = ( +/obj/item/stool/padded, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley/backroom) +"xTv" = ( +/obj/structure/hygiene/shower{ + dir = 4; + pixel_x = -2 + }, +/obj/structure/curtain/open/shower{ + opacity = 1 + }, +/obj/item/bikehorn/rubberducky, +/obj/item/soap, +/obj/structure/closet/walllocker{ + pixel_x = -28 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/heads/captain/secret_room/level_one) +"xTC" = ( +/obj/structure/table/woodentable_reinforced/ebony, +/obj/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/floor_decal/carpet/blue, +/obj/floor_decal/carpet/blue{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/folder/nt, +/turf/simulated/floor/carpet/blue, +/area/crew_quarters/heads/office/iaa) +"xTD" = ( +/obj/machinery/recharge_station, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai_cyborg_station) +"xTI" = ( +/obj/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"xTK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xTP" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"xTZ" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/assembly/robotics) +"xUd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"xUe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/shuttle/escape_pod/escape_pod2/station) +"xUf" = ( +/obj/machinery/vending/weeb{ + dir = 8 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitors) +"xUo" = ( +/obj/machinery/door/firedoor, +/obj/wallframe_spawn/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id_tag = "hangar_checkpoint_shutters"; + name = "Hangar Deck Checkpoint Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/sierra/dockcheck) +"xUw" = ( +/turf/simulated/wall/prepainted, +/area/janitor) +"xUC" = ( +/obj/structure/sign/warning/fire{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/incinerator) +"xUF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/research{ + dir = 4; + name = "Miscellaneous Laboratory"; + req_access = newlist() + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/rnd/misc_lab) +"xUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/floor_decal/techfloor/orange/corner, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/fourthdeck/aft) +"xUT" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/seconddeck/forestarboard) +"xVc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/floor_decal/borderfloor{ + dir = 4 + }, +/obj/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xVe" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/quartermaster/hangar) +"xVg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"xVp" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/maintenance/compactor) +"xVJ" = ( +/obj/structure/sign/warning/fire, +/turf/simulated/wall/r_wall/hull, +/area/maintenance/thirddeck/aftport) +"xVO" = ( +/obj/floor_decal/corner/black{ + dir = 9 + }, +/obj/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"xVQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/tech) +"xVR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"xVS" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/closet/crate/hydroponics/beekeeping, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"xVT" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/head_big) +"xWd" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/maintenance_equipstorage) +"xWl" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"xWr" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 29 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"xWt" = ( +/obj/structure/closet/jcloset/sierra, +/turf/simulated/floor/tiled/steel_grid, +/area/bridge/storage) +"xWu" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng1"; + name = "Third Deck Starboard Nacelle Access"; + pixel_y = 21; + req_access = list("ACCESS_ENGINEERING") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/thruster/d3starboard) +"xWx" = ( +/obj/structure/bed/chair/comfy/green{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/command/chief_steward) +"xWy" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"xWz" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/obj/floor_decal/corner/green/border, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"xWS" = ( +/obj/item/stool/padded, +/obj/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/exploration) +"xWT" = ( +/obj/paint/black, +/turf/simulated/wall/ocp_wall, +/area/maintenance/thirddeck/aftport) +"xWW" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"xWY" = ( +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge/marine_room) +"xWZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white/monotile, +/area/shuttle/petrov/cockpit) +"xXd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/hallway/primary/thirddeck/center) +"xXf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random_multi/single_item/space_rabbit, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/solar/port) +"xXt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/forestarboard) +"xXy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/purple/border, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/purple/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/center) +"xXG" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/corner/green/mono, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/taperoll/engineering/applied, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/virology/lab) +"xXH" = ( +/obj/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"xXO" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/cafe) +"xXQ" = ( +/obj/machinery/door/airlock/civilian{ + autoset_access = 0; + id_tag = "bsa_safe_room"; + name = "Toilet" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/command/bsa) +"xXX" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id_tag = "cChamber1pV"; + name = "Chamber Vent" + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/thruster/d3starboard) +"xYc" = ( +/obj/structure/largecrate, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"xYd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/paint_stripe/turquoise, +/obj/paint/black, +/turf/simulated/wall/r_wall/prepainted, +/area/turret_protected/ai_teleport) +"xYm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hydroponics) +"xYo" = ( +/obj/floor_decal/corner/black{ + dir = 10 + }, +/obj/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair/padded/teal{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"xYw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/containment) +"xYz" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 10; + pixel_y = 28 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security - Dock Checkpoint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/dockcheck) +"xYF" = ( +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood/walnut, +/area/vacant/bar) +"xYH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/floor_decal/industrial/warning/full, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "eng3"; + name = "First Deck Starboard Access"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/valve/shutoff/fuel{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/thruster/d1starboard) +"xYO" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/quartermaster/exploration/eva) +"xYT" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/fourth_deck{ + c_tag = "Fourth Deck - Fore Hallway Starboard" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fourthdeck/fore) +"xYV" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/suit_cycler/science, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/eva) +"xYW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway) +"xYX" = ( +/obj/random_multi/single_item/punitelly, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/maintenance/firstdeck/forestarboard) +"xZb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/standard, +/obj/item/storage/toolbox/electrical, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"xZc" = ( +/obj/structure/bed/chair/padded/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"xZk" = ( +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory/lobby) +"xZt" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass/maintenance{ + autoset_access = 0 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar/upper) +"xZu" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/floor_decal/techfloor{ + dir = 10 + }, +/obj/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/airlock_canisters) +"xZv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"xZx" = ( +/obj/machinery/door/airlock/external/escapepod{ + id_tag = "escape_pod_5_berth_hatch"; + name = "Escape Pod Five" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/floor_decal/industrial/warning/fulltile, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/security/sierra/prison) +"xZC" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "solar_port"; + name = "exterior access button"; + pixel_x = -12; + pixel_y = 27; + req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") + }, +/turf/simulated/floor/airless, +/area/solar/port) +"xZE" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"xZG" = ( +/obj/floor_decal/carpet/blue2{ + dir = 8 + }, +/obj/floor_decal/carpet/blue2, +/obj/floor_decal/carpet/blue2{ + dir = 10 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/heads/office/hop) +"xZN" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/crew_quarters/heads/captain) +"xZO" = ( +/obj/machinery/telecomms/bus/preset_two, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"xZS" = ( +/obj/structure/bed/chair/office/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"xZU" = ( +/obj/floor_decal/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/airlock) +"xZV" = ( +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/thruster/d1starboard) +"xZW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/aftstarboard) +"xZX" = ( +/obj/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/vacant/mess) +"yad" = ( +/obj/floor_decal/corner/green/bordercee{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"yag" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/equipment) +"yah" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/door/blast/regular/lockdown{ + dir = 4; + id_tag = "lockdown3_3" + }, +/obj/wallframe_spawn/no_grille, +/turf/simulated/floor/plating, +/area/hallway/primary/fourthdeck/center) +"yas" = ( +/obj/floor_decal/corner/grey/border, +/obj/structure/hygiene/sink{ + dir = 1; + pixel_y = 18 + }, +/obj/item/storage/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_tile, +/area/crew_quarters/head) +"yav" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"yaz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"yaA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/expedition) +"yaV" = ( +/obj/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"yba" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/solar/starboard) +"ybb" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/captain) +"ybd" = ( +/obj/decal/cleanable/dirt, +/obj/item/material/shard/shrapnel/titanium, +/turf/simulated/floor/plating, +/area/crucian_hangar/start) +"ybf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/catwalk_plated, +/obj/machinery/camera/network/hangar{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ybl" = ( +/obj/floor_decal/borderfloorblack, +/obj/floor_decal/corner/darkblue/border, +/obj/floor_decal/borderfloorblack/corner2, +/obj/floor_decal/corner/darkblue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/bridge/hallway) +"ybq" = ( +/obj/structure/closet/lawcloset, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/mono, +/obj/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/heads/office/iaa/high_sec) +"ybs" = ( +/obj/random/obstruction, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/port) +"ybu" = ( +/obj/wallframe_spawn/reinforced/polarized/no_grille{ + id = "pathfinder_office" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/command/exploration_leader) +"ybz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos) +"ybD" = ( +/obj/structure/table/standard, +/obj/item/book/manual/rust_engine, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/vacant/prototype/control) +"ybM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"ybQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/freezer, +/obj/item/reagent_containers/spray/sterilizine, +/obj/floor_decal/industrial/outline/yellow, +/obj/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white/monotile, +/area/medical/surgery/second) +"ybR" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/command/chief_steward) +"ybU" = ( +/obj/floor_decal/techfloor/orange, +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/escape_pod/escape_pod5/station) +"ybV" = ( +/obj/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/locker) +"ybW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/forestarboard) +"ybX" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/largecrate, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/aftport) +"ycb" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"ych" = ( +/obj/landmark{ + name = "JoinLateCryo" + }, +/obj/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/railing/mapped{ + init_color = "#393f43"; + color = "#393f43" + }, +/turf/simulated/floor/tiled/techfloor, +/area/hallway/primary/fourthdeck/central_stairwell) +"ycn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/corner/grey/border, +/obj/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/crew_quarters/galley) +"ycr" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/dungeon_master_lounge) +"ycs" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 4 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/deck/second{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ycv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/hallway/primary/seconddeck/center) +"ycx" = ( +/obj/shuttle_landmark/ert/dock, +/obj/shuttle_landmark/sierra/deck1/skrellscout, +/turf/space, +/area/space) +"ycK" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/decal/cleanable/cobweb{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"ycO" = ( +/obj/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/nav_light, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"ycV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/blast_door{ + id_tag = "xenobioaqua"; + name = "Aqua Containment Blast Doors"; + pixel_x = 6; + pixel_y = 29; + req_access = list("ACCESS_RESEARCH") + }, +/obj/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology/level1) +"ycX" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"ycY" = ( +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/computer) +"ydd" = ( +/obj/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/holoplant, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafe) +"ydf" = ( +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/center) +"ydg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftport) +"ydi" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/turret_protected/ai) +"ydn" = ( +/obj/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"ydo" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/centralport) +"ydu" = ( +/obj/floor_decal/corner/paleblue, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/infirmary) +"ydK" = ( +/obj/floor_decal/corner/lime/half{ + dir = 8 + }, +/obj/floor_decal/corner/lime{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/seconddeck/central_stairwell) +"ydR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"ydV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southright{ + id = "Cell 2"; + name = "Cell two"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id_tag = "security_permabrig_second_cell_shutters" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id_tag = "security_lockdown"; + name = "Security Department Lockdown" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/sierra/brig) +"ydX" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/chair/wood/maple{ + dir = 1 + }, +/turf/simulated/floor/wood/bamboo, +/area/crew_quarters/garden_room) +"ydZ" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id_tag = "ship_sensor"; + name = "Ship Sensor Blastdoor" + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/bridge) +"yeg" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"yeh" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/woodentable/mahogany, +/obj/floor_decal/carpet/red{ + dir = 4 + }, +/obj/item/material/ashtray/plastic{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/red, +/area/crew_quarters/cafe/upper) +"yei" = ( +/obj/structure/railing/mapped, +/obj/structure/bed/chair/padded/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"yel" = ( +/obj/machinery/computer/shuttle_control/explore/guppy{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24; + dir = 8 + }, +/obj/overmap/visitable/ship/landable/guppy, +/turf/simulated/floor/tiled/steel_ridged, +/area/guppy_hangar/start) +"yen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/thirddeck/aftstarboard) +"yeq" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/structure/curtain/open/bed, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = 24 + }, +/obj/landmark/start{ + name = "Internal Affairs Agent" + }, +/obj/item/storage/secure/safe{ + pixel_y = -24 + }, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/office/iaa/cobed) +"yev" = ( +/obj/structure/closet/secure_closet/guncabinet/sierra_armory/shotgun, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/security{ + c_tag = "Security - Armory" + }, +/turf/simulated/floor/tiled/techfloor, +/area/security/sierra/armory) +"yew" = ( +/obj/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"yez" = ( +/obj/structure/table/standard, +/obj/item/storage/box/autoinjectors, +/obj/item/storage/box/beakers, +/turf/simulated/floor/plating, +/area/vacant/gambling) +"yeA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/firstdeck/aft_stairwell) +"yeL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/thirddeck/port) +"yeM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"yeN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/heads/captain/beach) +"yeP" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/closet/crate, +/obj/item/inflatable_dispenser, +/obj/item/sealgen_case, +/obj/item/stack/material/steel/ten, +/obj/item/stack/material/steel/ten, +/obj/item/module/power_control, +/obj/item/storage/toolbox/mechanical, +/obj/item/tape_roll, +/turf/simulated/floor/plating, +/area/exploration_shuttle/power) +"yeS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/hangar) +"yeT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/catwalk_plated, +/turf/simulated/floor/plating, +/area/quartermaster/hangar) +"yeX" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/aftstarboard) +"yfa" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/ebony, +/area/crew_quarters/sleep/bunk) +"yfb" = ( +/obj/machinery/door/firedoor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/blast/shutters/open{ + id_tag = "med_to_maint"; + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id_tag = "med_quar_lock"; + name = "Quarantine Blast Doors"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/maintenance_equipstorage) +"yfc" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"yfd" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/spline/fancy/black, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"yfi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/aft) +"yfk" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/barricade, +/turf/simulated/floor/tiled/white, +/area/maintenance/seconddeck/starboard) +"yfl" = ( +/obj/structure/bed/sofa/r/lime{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/cafe/upper) +"yfs" = ( +/obj/structure/railing/mapped, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"yfw" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/lounge) +"yfx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/helium, +/obj/floor_decal/techfloor{ + dir = 5 + }, +/obj/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/atmos) +"yfy" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "skipjack_shuttle_dock_airlock_sensor"; + master_tag = "skipjack_shuttle_dock_airlock"; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ + dir = 1; + id_tag = "skipjack_shuttle_dock_airlock_pump" + }, +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/half{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/docking) +"yfF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/maintenance/substation/firstdeck) +"yfH" = ( +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/assembly/chargebay) +"yfO" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/bridgedeck/aft) +"yfS" = ( +/obj/floor_decal/techfloor, +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/chamber) +"ygl" = ( +/obj/machinery/atmospherics/omni/filter{ + tag_east = 2; + tag_north = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"ygp" = ( +/obj/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark/monotile, +/area/medical/sleeper) +"ygt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ygz" = ( +/obj/structure/sign/bluecross_2, +/turf/simulated/wall/prepainted, +/area/vacant/infirmary) +"ygC" = ( +/obj/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/bridgedeck/center) +"ygD" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + target_pressure = 200 + }, +/obj/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/storage/airlock_canisters) +"ygM" = ( +/obj/structure/bed/chair/padded/blue{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 9 + }, +/obj/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/structure/sign/warning/pods/south{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/safe_room/firstdeck) +"ygP" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 4 + }, +/obj/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/engineering/atmos/storage) +"ygQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/firstdeck/aftport) +"ygS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/starboard) +"ygU" = ( +/obj/floor_decal/corner/black/half, +/obj/floor_decal/corner/red/border, +/obj/structure/closet/walllocker{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/gym) +"ygV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Commissary rack"; + req_access = newlist(); + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/floor_decal/corner/black/full, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/obj/random/single/lighter, +/turf/simulated/floor/tiled, +/area/crew_quarters/commissary) +"yha" = ( +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/computer/modular/preset/security, +/turf/simulated/floor/tiled/dark, +/area/security/sierra/forensic) +"yhd" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/random_multi/single_item/space_rabbit, +/turf/simulated/floor/airless, +/area/solar/starboard) +"yhh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/catwalk, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/fourthdeck/aft) +"yhr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"yhv" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos) +"yhD" = ( +/obj/machinery/door/airlock/hatch/maintenance, +/obj/machinery/door/firedoor, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hallway/primary/firstdeck/center) +"yhF" = ( +/obj/floor_decal/techfloor{ + dir = 4 + }, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/medical/backstorage) +"yhP" = ( +/obj/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bed/sofa/l/brown, +/obj/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/cafe/upper) +"yhR" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/maintenance/compactor) +"yhW" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/starboard) +"yhZ" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + id_tag = "ai_core_outer"; + locked = 1; + name = "AI Core Internal Access" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ai_core_airlock"; + name = "exterior access button"; + pixel_x = 24; + pixel_y = 10; + req_access = list("ACCESS_AI_UPLOAD") + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/turret_protected/ai) +"yia" = ( +/obj/floor_decal/corner/lime/mono, +/obj/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/soda, +/obj/item/device/radio/intercom{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/monotile, +/area/hallway/primary/seconddeck/fore) +"yib" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/toxins) +"yic" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/grass/cut, +/area/crew_quarters/garden_room) +"yid" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/shuttle/petrov/test_room) +"yih" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"yiq" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + c_tag = "Telecommunications - Server Room - East"; + network = list("Command","Engineering"); + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/tcommsat/chamber) +"yiE" = ( +/obj/floor_decal/techfloor{ + dir = 1 + }, +/obj/floor_decal/techfloor, +/obj/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch/maintenance{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/hydroponics) +"yiL" = ( +/obj/floor_decal/corner/grey/full, +/obj/structure/bed/chair/office/comfy/blue{ + dir = 1 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/adjutants) +"yiN" = ( +/obj/structure/curtain{ + color = "#aa0000" + }, +/obj/floor_decal/spline/fancy/black{ + dir = 10 + }, +/turf/simulated/floor/wood/maple, +/area/crew_quarters/actor/stage) +"yiR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology/xenoflora) +"yiT" = ( +/obj/structure/iv_stand, +/turf/simulated/floor/plating, +/area/vacant/infirmary) +"yiV" = ( +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/crew_quarters/docking) +"yiX" = ( +/obj/structure/sign/warning/vent_port{ + dir = 4; + pixel_x = -32 + }, +/obj/floor_decal/industrial/warning/half, +/turf/simulated/floor/reinforced{ + map_airless = 1 + }, +/area/space) +"yiZ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/space) +"yjb" = ( +/obj/structure/catwalk, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/rnd/xenobiology/level1) +"yjh" = ( +/obj/machinery/atmospherics/unary/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"yjA" = ( +/obj/structure/catwalk, +/obj/floor_decal/borderfloor{ + dir = 1 + }, +/obj/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/random/trash, +/obj/machinery/light_construct, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/hangar) +"yjK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/floor_decal/techfloor{ + dir = 8 + }, +/obj/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/port) +"yjR" = ( +/obj/floor_decal/spline/fancy/black{ + dir = 5 + }, +/obj/structure/bed/sofa/l/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/mahogany, +/area/crew_quarters/cafe) +"yjU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/bed/chair/office/green{ + dir = 1 + }, +/obj/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/medical/virology/lab) +"yka" = ( +/obj/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"yke" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/floor_decal/borderfloor, +/obj/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/floor_decal/borderfloor/corner2, +/obj/floor_decal/corner/red/bordercorner2, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/security/sierra/hallway/aft) +"yko" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/breath, +/obj/item/tank/oxygen, +/obj/machinery/camera/network/medbay{ + c_tag = "Virology - Atmospherics Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/medical/virology/atmos) +"ykB" = ( +/obj/structure/catwalk, +/obj/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ + dir = 8; + id_tag = "sd_port_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/seconddeck/foreport) +"ykD" = ( +/obj/floor_decal/corner/black/full, +/obj/floor_decal/corner/darkblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/padded/blue{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/marine_room) +"ykE" = ( +/obj/shuttle_landmark/ninja/deck5, +/turf/space, +/area/space) +"ykI" = ( +/obj/fluid_mapped, +/mob/living/simple_animal/aquatic/fish/judge, +/turf/simulated/floor/beach/sand, +/area/rnd/xenobiology/level2) +"ykQ" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall/hull, +/area/turret_protected/ai_maint) +"ylh" = ( +/obj/floor_decal/corner/yellow/three_quarters{ + dir = 4 + }, +/obj/structure/flora/pottedplant/floorleaf, +/obj/machinery/light_switch{ + pixel_x = 24; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/deckofficer) +"ylq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo, +/area/crew_quarters/head) +"ylw" = ( +/obj/structure/catwalk, +/obj/structure/rubble, +/turf/simulated/floor/plating, +/area/maintenance/firstdeck/forestarboard) +"ylx" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/head/kitty/fake, +/obj/item/clothing/head/philosopher_wig{ + color = "orange" + }, +/obj/item/mirror, +/obj/item/lipstick, +/obj/item/lipstick/random, +/obj/item/lipstick/random, +/obj/item/clothing/under/schoolgirl, +/obj/random/cash, +/obj/item/storage/toolbox/mechanical, +/obj/random/cash, +/obj/item/modular_computer/tablet/lease/preset/command, +/turf/simulated/floor/wood/walnut, +/area/maintenance/firstdeck/foreport) +"yly" = ( +/turf/simulated/wall/prepainted, +/area/rnd/research) +"ylA" = ( +/obj/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/seconddeck/foreport) +"ylF" = ( +/turf/simulated/floor/wood/walnut, +/area/crew_quarters/actor) +"ylP" = ( +/obj/machinery/computer/modular/preset/dock{ + dir = 4 + }, +/obj/floor_decal/corner/mauve/mono, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/monotile, +/area/bridge) +"ylS" = ( +/obj/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/floor_decal/corner/darkblue/border{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ylZ" = ( +/obj/wallframe_spawn/reinforced/polarized, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/chapel/main) +"ymg" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology/water_cell) (1,1,1) = {" -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNxaEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFplvplvplvplvfLfplvplvplvplvplvshywJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpubpubpubpubpubpubpubpubpsKrplvshywJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDubpubpxZNxZNxZNxZNxZNxZNxZNxZNubpubpubpsKrplvfLfplvplvplvplvplvplvplvplvplvfLfplvplvplvplvplvplvshyobSobSobSobSwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDubpxZNxyIlvmkQUkLVxRafFUfFUxZNxZNxZNubpqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLxHRxHRafUxHRiZgjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDubpxZNoWSisNeiVoWSxRafFUfFUiOldMHxZNxZNqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLqoLxHRaBewJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNeOAwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNccLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpxZNsgttnFvCdwBZxRaozvxOgxOgvZTxiSxRasqmoWjsAclQbuPoajSqLWmxjxzurBxiTylQbomisAKmUJjypxPOqoLqoLqoLqoLqoLqoLxHRxHRaBewJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNqWfeoTxIkuRwwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpxZNszwisNkqhfiDxRasPwxOguzMvZTpVOxRasrufRjxUQgaQkKlkKlkKlkvHpFPoetoetuPDjtgcispXIedjsmhizvtaBvmxuSaqoLqoLqoLxHRxHRaBewJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNbnefLfplvplvsKrsKrsKrsKrsKreokdJqeVJeoksKrsKrsKrsKrsKrwuaplvplvplvplvwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpubpxZNwiBmnvvZFopvuwfjPkjPkjPkrPyxLlqwSsvNmqOfSAlQbcZUxrVxrVpOnbYycqWaqHlQbvoklQbxzNxzNxzNxzNxzNxzNxzNxzNxzNceAavJcVlxHRjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNbnesKrtaataadackkJkkJkkJkkJkkJeokfMxcvZeokePXePXePXePXePXnNFnNFnNFnNFsKrplvfLfplvplvplvplvplvsKrplvfLfsKrubpubpubpubpxRagosisNkzJlJLxRajoAxOgxOgscElmjxRajYQjjnxjqxsusFssFssFsjavvvzgmzgmzlQbqsEclMxzNxzNxzNxzNxzNxzNxzNxzNxzNxzNiBddbDhpVjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDtaataataataaghopkwpkwpkwpkweokeoTeTveokfuxfuxfuxfuxgMZnNFnNFnNFnNFnNFubpubpubpubpubpubpsKrsKrsKrubpubpubpubpubpubpxRapnGisNkzJmuoxRacPAxOgxOgbDHqOaxRauYtglWtunlQbpRbpRblQblQbstslQblQblQbqsEttqxzNxzNwskfRPnALxzNbPtfdBljRxzNmQJhCGceAegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDtaataaevGtaahtlpkwpkwpkwigBeokggjculeokbdwfuxfuxfuxgOYnNFmiwqPentBxeAxZNxZNxZNxZNubpubpubpsKrubpubpxZNxZNxZNxZNxRaxRaxRapnImsExRaxRaxRavDWvDWxRaxRaxRalQblQbjgblQblQblQblQbrhxhKHoaolQbhYzqsEgIyxzNxzNqpefRPtZExzNjNvfdBqwKxzNmSWsvEsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDtaanAFkksfQFhQyhQyhQyhQyqnJshPuiJaGIlklqQaqQaqQaqQaqQabmknpYrxqlKoxqJaRfcTejQUxRaxZNubpubpwReubpubpxZNgTPrrurrusoQgYCpbEpHspHsvJuvJugJvpHspHsvJudyxjqkjqkjqkvWGlQbaBRaBRofOsFmhKHsFmuYqqsEqsEvDVxzNxzNukjrHtqOKxzNjQSsMyukjxzNvXitnxsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDtaanAFkKFxlqtFAtFAvgOtFAtFAfiXodqwUrfiXtFAtFAvgOtFAtFAxeAcFRfsKxsWrMYnpulKyniAuaPxZNxZNxZNdNbxZNxZNxZNrdvsJJkBmnvRkBmkBmkBmkBmkBmkBmkBmkBmkBmkBmuOmkBmkBmsDJvsIuKzeAjeAjeAjeAjadCsFmlZZxzNxzNxzNxzNfvLvSlhBxuJugPApGumMKoSUucWnizsvEsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNpJptaakkscKKxlqtFAjAWwPewxQtFAfiXsEedbHfiXtFAqGXwPewHntFAxeAcFRfsKilVxqJocWwMGxOgcYnxRagDDctugtIpnvoqkxRakFJhczuZTuZTocQuLmphNpaduZTmdDuZTuZTdBOxKPsDEuZTuZTnINxmKlQbeluqfVtaAxcFhKHcBqlZZxWuvYzghUozfcUzlNmbGZvGngSQlpQeNibJIfeMvXifpWceAegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNosJwJNwJNwJNwJNlfDwJNwJNtRDtaabhTafzxlqtFAbURxUemcptFAfiXqSXmhnfiXtFAeOjxUemiCtFAxeAhMAfsKjVyxqJeSixOgxOgiGbxRawYVxOMvmNkAyqSlxRardvhczufypmjdsYsEGrAfdxluZTmdDuZTsEGsEGsEGkfspmjtqVnINdFFxRaxRaxRaxRaxRatiElQblZZekrlZZlZZxzNlfsaTqhPntDhghCrubcrZlGrmSUgTLsvEsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvxdcUPxpyplvplvvxdgmnxpyplvddZtaaxXtcCkxlqtFAeyrxgplWstFAfiXqSXdVNfiXtFAmIXxgpviktFAxeAndtlearFmxqJkRKgRwuJonywxRalouwigedrsnBaFzxRardvhczuZTxDsippwigwigvrEuZTjkCuZTsEGsEGsEGkfssEGuZTnINmyuxRauVtikaqpExRawbtlQbjmbsbeeluciBxzNxzNbjGmgybjGtMapwNpwNldgeiDmPstnxsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpubpubpubpgequbpuyPuyPubpjmcubpuyPuyPtaaxqdajYxlqtFAinUtztejatFAfiXppssMYfiXtFAecltztinOtFAxeAxqJxqJpUwxqJgUlgUlgUlgUlgUliyZvncrepwdjbrxyburdvlWumsNsEGhBusjcmuqvirjSmlIQketsEGxorsEGkfssEGuZTvAPdFFmpxtwjgmQmCoxRanNqcwJuCkbDccdgtofxzNxzNdQapnTqQOtMaebfupKtbIcVEjnGmeYsoEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpubpubpubpubpubpiewubpfxtbVvubpbuqubpbVvbVvxlqhUZqOnxlqtFAmfIqNAvjKsqjbxagQdePmohbjOTbrFqNAvigtFAicvsyUusbqmSxrunorcAfjssmMAgUlkwciElfyEpBkhxyxRardvfPZfDErlJgTxqBNuZTuZTuZTvcJuZTuZTuZTldIuGzwZraAEvAPdRildPmuemRobcPxRapuiqeqepjjGzjmbfxZxzNxzNmxCpnToVJtMarVflnylvBrQorrYnCAceAegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpxZNxZNxZNxZNxZNhNkwedrRLwagwagvgkvbgrRLwagukAxlquJrpslxlqtFAeylmtjqYDnNSfiXcUDfKdfiXrbuuVVmtjcavtFAicvlScnkCiKKvbebJwbyfsklygSgUlxRaxRaksvkHTybuxRardvlWuuoDrLncYNrLLuZTfQdkLQscxkLQwqCuZTsxfgPwwpouoDvAPrdvakfrBDwngdpYqtNpRagVnwHDbesfClbedxzNrUBxzNxzNxzNtManYhxXXewqtMaceAceAwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFoGhubpubpxZNmDFddjngLfiQxRahVimQIpqSokmqbApqStGvwigwigoMIxlquJrpslxlqtFAiWekDMwFxtFAfiXqSXhZRfiXtFApPlsrLuhvtFAicvrLYvFJsLhsLhsLhtEqsLhsLhsLhjkHpvaqIwooGjhQxRardvlWuuZTrZtqKbcmAtgJsZdpipvkWpipfUdtgJqrpwpZvFfuZTvAPrdvxRawmnbxSnKQxRawOsjBzeaiemUjBzobIqoLqoLubpubpubpwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpxZNxZNuZtkWCaFswzUxRaszXwktwigitmuwRwigrhcwigwigmPvxlquJrotJxlquOvuOvuOvuOvuOvfiXqSXpQZfiXuOvuOvuOvuOvuOvicvsBAoWCsLheiTePvcrGtwTewesLhpzDoUqwjtsRCizfxRapCRlWughkftMuZTdewuZTwxxnfKiwfnfKluYuZTrqDuZTuZTghkvAPayYxRamhKiBJmggxRabWnjBzbuQhoajBzeZaqoLqoLubpwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpxZNeCviWKsNPwigkmHezlkIpfdAhwPwigcRPmfFgRsgYxeNtwiglBSxlquemdGexlquOvdSZdSZdSZuOvfiXwcFkWqfiXuOvdSZdSZdSZuOvicvdyCtmMsLhcwfncGoVEcxGjsWoenavjrKPuwAcccgPLmsErdvlWuuvlhbMdeOfIXcsPdlHdlHelFdlHdlHnhUjhBeavnhUrDrvAPuZCkIkkIkkIkkIkkIkdRwjBzcCydfPjBzeZaqoLqoLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtFAtFAkjpkjpkjptFAtFAwQEnGxnGxwQEpcopcouYsuYsuYspcopcohLOwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFsKrubpubpubpxRarIohFSwigwigihUdvGmwQhAcwKbwigbgKsxVwigmgcwigwigpLFxlqcrUukefiXfiXfiXfiXfiXfiXkTDqSXpQZfTrxZNxZNxZNxZNxZNxZNdyCtmMsLheiTxWSsMHqvihpasLhbxdlBcrxUqWodUHmsErdvlWulWehNEvWXgwpvoOhVyblitVDkvvjHBxykcDDcJHnhUrDrvAPrdvkIkeDCnFlpQekIkllrjBzgUSuAvjBzlEQqoLqoLwJNwJNwJNwJNwJNwJNtFAkjpkjptFAtFAtFAxctxctxcttFAnGewQEquiquiwQEaPJpcovDjvDjvDjpcoaPJhLOhLOhLOhLOwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvNFoGhubpubpubpsqgxRalpTavgfyJcocrpDxUfkIpoSiuOXfyJfyJfyJfyJxytwigwigrKZxlqazibxPfiXfiXfiXfiXfiXfiXfiXqSXhHCxZNxZNxZNxZNxZNxZNxZNdyCtmMsLhnwkkAalpZeynvdrsLhhAesVcrxUhgJnmWxRafHslWumDelEPeJAmCSeWfdlHkphpdKjPBdlHsuBxaJhcdnhUrDrvAPrdvhfvfeRaDNoGLkIkbUhrTzmElrvprachfKqoLqoLwJNwJNtFAtFAkjpkjptFAcFecFetFAatFoJTcLqczdlQjuUNnGetXcdPBdPBxPokVYolOffUvyfilzilzxdBhEJlQXhLOfUiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDubpubpubpsqgsqgxRawJraFarSzgWuwNHdYrkIpdIiuZUrCLirZhpLuDZxlishtirZfmyxlqxbLgdZfiXhWBhWBhWBhWBhWBfiXdMSpQZxZNbvaqfXhjfoEnxGMxRabIOgUlxRaxRaxRaxRaxRaxRaxRaeppkAJrxUvQddUHmsErdvlWuiKihNEkesaUUichdlHtziaQSmdedlHvNzfubpIWwhLrDrvAPalNkJgpTHeNlgewkIkbGxjBzjBzjBzjBzexMqoLqoLwJNtFAtFAtFAcFecFetFAjmtgGZnGehAZvFufcyxabxwPtqwvgOvTgdPBlgEekZaPJxYVrhsfxntVLsweaPJsUOmjkhLOfUiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNsKrubpubpubpubpubpxRaigxxRaxRaxRanpbxRaxRaowlowlpNxpNxpNxxpXpZwxpXpNxpNxxlqsHmxlqfiXhWBhWBhWBhWBhWBfiXawJohjxZNaKQwdKofRjhNtUSxRajolmMAxRaoedhouujunWlqDBxRajUclCKqOUgxKgPLmsErdvlWudMbfVtotNuRjvjFvgUxOKeJGgpiqXPickjSEdancOjrDrvAPxLOkIkheQjKEpOKiDlitjhIffcaelCfcaxamqoLqoLwJNtFAtFAxCcoPrdrxiqMmEEduynGegihvFumvqsEyxZUnKkvgOjeydPBpcPpHAaPJaPJaPJaPJaPJaPJaPJaPJaPJhLOfUiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpxZunGmnGmwdVxRakdkvsEikxprKnyLiMYokAusctOKlqEkGGadhtTaeRubDAxYTeULvzxiFHxAmfiXhWBhWBhWBhWBhWBfiXoWknnPxZNoOuwdKjOZdRqwpaxRatcnmMAxRawzijkcwdKlazqDBxRahgXjsnbdQwiggPLxRardvlWuhNEhNEtOijrwtOidlHdlHgzRdlHdlHnhUdDxnhUnhUnhUvAPxLObDnbDnbHqbDnbDndKElQbwIqovqhoNsruqoLqoLwJNtFAtFAicTsgFhHFwzpwzpodCnGenVWoZgmSZijNjPrrpRvgOxAMbijtBKjacxKSemxnGeloCdFVgZzxJcnGenGeuMiuMiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpvVRdzddzdubPxRatCRvryrVerVefQonysaDLotxnLiojNpjGfESuGwbRNwsQvGYlWRtqjeRPiTDfiXhWBhWBhWBhWBhWBfiXrmQlIcxZNdkfqcwmSXquzlLuxRajolmMAxRaafDfpBhlzlaztjQxRaunpjfubdQwigkVgxRardvlWuiKwcjbimAapEfkYdvyoprkxyfrJtLAvFkryZbZWsWndvyvAPibSbDnlqAwtulqAbDnyhhlQbwIqpeUobfsruqoLqoLwJNtFAtFAtFAtFArAuxByluUaWDnGeuqZvFuouUvXpvbVuKYnGeqQudPBdPBuYTqLAkpknGekuYghtosywrvixbsUtnkhdDawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpqweygDbeQdxClzHoGNjToixMtIzttArCBgYMttAgSJkoZlfWobPaXcuORaBKmjKuOReILxnBipgfiXhWBhWBhWBhWBhWBfiXgqemDyxZNliKppVlfBvmLylhxRadnLeIexRaszPskEnplnqxmAfxRagvzsgfgGXoMguNDxRardvlWujxzrTEsxBqeefLmdvywmowQgvSQhRzmuXlvfbxOyePkPqsSqqQXvRUlqAlqAlqAbDndKElQblQblQblQbhtdqoLqoLwJNwJNwJNgaPtnieAibaKmGYxgHnGejDJwUVouUalSxuzmwSnGeiwhvkfhxuyagdPBpAPnGepPwwrviEYfXPoWdlebedRkMdwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwTGubpubpubpubpubpxZNryCbaEwewtTprxdbPpauUxZNuNItTpxZNajudMChRWxZNxZNlWExCalGhwtcfiXfiXpmOpmOpmOfiXfiXeBqdRsxRaxRacJIpfrtezvoCxRajhrokjxRaxRasDHmsExRaxRaxRaxRaczYxQFmsExRaxRakFJlWuajphhZdnQuwlcvkdvyputfvAsLevfIgcgefuqCtkhcuKLqjDejQbDnbDnbDnbDnbDnqVUlQblQblQblZZlZZqoLqoLtFAtFAtFAtFAtFAexmsHwnGetrSnGenGenGesiynGevgOvgOnGepXhpXhowSiqcowSowSnGemMWkTnwrvqtJqLFjzvnfnxfzwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpcVdfNtwrffNtacExZNqvFgIfwewecghfFpkZhSwokZxMybelxYzgvixlznBIkRlxUotxbpGwgAvbNEhKKhGrjJhoGxjJhvydwTFtWWniccgKaCGgDZkJCpCOmXdqoPdOKlHMdrAeXnoJNrXWkTGqoPklyumwqDoclasChlJvhXerdvlWuuAbdjQgUFlmQwOalvvlmQlmQlmQlvvmaClmQeuRdjQnRAaUhwhQxmNlQbnQidFAkbnlyUcKtlzOgSVlZZogqsPHqoLtFAueKwfafwRuIrsyrspesGGhORbglaKmmvAaBDbxnuPMogGcYTpqTsuZqezagAvLMeeEjjBnZHgMIqaUwdNdMljCrpJetNgwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNnMapHhhHItBDhHIhHIcBtlkAeJnhKgxZNlXYoejlKylKyvDSdqBmRswRcojueraioUxZNgZDhsefvneAHyahgWWpcBoWooPvaFTiGSxipnkLfcfjOUjQxjltpejfpDnnQqrnfybvJCaBNfNzbGutSNbXInlCdJgsBZutFadKkyBiTMxtNpEWbXBdhjrkXrkXdhjrkXrkXrkXrkXrkXdhjrkXrkXhqatvkaUhtYVlKQceTsbPuGYlMYlPIdDfgNlokEkuQmXmlgHoZNwnTfkRvlTalYlokncmmVrutbwjOdAnpjXiHTpUqmYAxZUhzNmvqmFLmvqsQZmZaiIKjrLnGenoSfHzxmUgiTnTCxiAsSbtNgwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNnYRwJNwJNwJNwJNwJNubptwEaDIaDIaDIjZqxZNqtFgIfwewecgkyTfMDcrJoxVrWLehUwHfoTCxuNgFauNFhCYdXImTlwlynzubqroVBcPcoQhiOEnRmuXOivWvoSqVilKzrTavQucBgdnGxFdcxsoZiwaJcBgliRliRbGPxFdgqMgxNwkCseumVClMBhXelFZrotgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNgoNqRqvBmxmNlQbsLucZjubrrZMlQbtMVtBqlZZrAlkjCqoLtFAbFfdJptFAnoVnOMpTNnGejDOcWbnGenGexajkswvjsnGefvFfvFpZtnGelDZnGenGenGexchuCqdVJnsSdMlwMxcQTtNgwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgPPubpubptvjaiustRxZNjQYvIGwewtTplXxslWauUxZNxsFxZNxZNbEGvJjpgUxZNxZNtxbhsefbyeRnigxxRaqFZxRaxRaxRapTyfSsvlnpTyxRauGDxRaxRaxRaxRakeNvkDgRigRigRigRikeNkeNkeNxRasVBuYLgVExRaxRaaCfreMmzUmzUvkFmzUmzUmzUmzUxqamzUmzUmzUmzUirDtCamzUmzUmVhgrZgrZgrZgrZgrZcPDuCBuCBgHuceZceZfaAfaAtFAtFAtFAtFAomcxhXitinGexWZcWbjwsmSvwvvjcJmHfnGelkGuYMfPCcxWnEtulTfzonGenGenGenGenGeoLloLlkPnxfzwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvCShaqibJxNMpspxRaeFrhQtvqqaxyjKVecexcZjKVakzoxWkdOsQJrBOsQJiGpqURqURuTzfbywtcxRahkojFvixkpYxgXjpTyxoTvNmpTyreWxStizkgpUwDQxRaiBltSMawHivPpdFcAgiDrdIjkeNgeTdgPaoBtIprqpxRawUumEksJJofgqgayeSaPWcnoguosYLguosJJfrXanXfCMaxecnoguofHgpiyiJiiJiuFRgrZgPpuCBpkelxzivwwzGfaAuTgwJNwJNwJNcOtcOtdQpdQpcWbjDOcWbsVsmWagPMcLHlbZnGetbDlrfxEEwoznBSjIFtnBuJtlOAniOgqOroqnGetFAuMiuMiwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNvCShaqszskBwbdvipZevzewQrVemmQxbCxbCvpQamsoBKbhOhBLlCNlCNfzuapfmrSmrSenSjLVrdIoucxOgknDychpYxgXjpTyqSXpQZpTynxXnvkpijnMQwRHxRawRAmsjgwFpenpenpenrQwbalruEctgotiwHkhIPtRGsHdpgOqQLlWubbhbbhbbhbbhaUhoDPcflslElWubbhbbhbbhbbhaUhguohFegrZiuliulblDgrZgPpuCBmkShSUmkShYyfaAfaAwJNwJNwJNwJNrfUhlokMfaimmWAcWbdCnrEnmcraQnnLLnGesjfrxZpTMiqajxwfXPnHXiDjvmfwjsxyaekwnGetFAuMiocawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubptDsjWWkvNxRaqlksstqfItpJhAAkIlqfIdVraTdofKiQdnKDlLhiWpqpYqpYbjBvfyhpmktQxRahRhcGpnVjrRFxRapTyoWkaRepTyoigkgcfnbpWKuMGkNipgnqvmjOitgtqrkaDgoufoMXswViEmwigvnciHFqdSxRaeYzqQLlWutIXtIXtIXtIXaUhgrZgrZgrZlWudmMdmMdmMdmMaUhguofHgwlVwlVoLrcpRgrZbnfuCBdZUlGqmkSsCPfaAfaAwJNwJNwJNwJNrfUupOcbujuHwNrcWbeSIdnhabKjsgoZKnGegnsaRHrMhvmplDUyidprliModzYgiZvmfgSctFAtFAuMiocawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNubpubpubpbyKawDkchsOikchsOikypkchrOcowlprkowleBseBscJvcJvrRWwHUwHUcJvcJvpedjvvxRaaDppgbychpYxgXjpTyueltUJpTyuiAcuXnSrwlZtqdxRavPLgZUggZjNErEvmyCpIGvxNrUfmJWkpPcDXpxmsaexRavQOqQLiMxxxBtamwqurgyqRqguoiltguoiMxmQthvkhvkhvkltlqvWqRUwlVisviAvblDgrZgPpuuLmkSiussfWiOJfaAfaAwJNwJNwJNwJNcOtcOtcFGrkRcWbcWbnGenGenGevrFnGenGeeaTkqneaTslFaniqLhaagfqclhFtrglMlcBIudaanFuMiuMiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNreQreQreQreQeMaeMakQNlLcqBRecCcRYkchfRIphbcwriCaiyFcJvjIAfqFeKSbSUfZPcJvckAdDUxRavcZqUWaUPpYxgXjpTydMSpQZpTyjWMniFoENnyujNmtKPtKPgJdtKPtKPqYLkZGmsjhjIswVwIUpGEwigpGEwUMxRafMzkmViNjiNjnpyfzKfzKfzKfzKyeTwRkuMsuMsuMsmpVkBmkBmcnofHgwlVwlVsbGrFPgrZdPPygzvnWwTIsSzsqDfaAfaAwJNwJNwJNwJNwJNcOtdQpdQpcOtcOtnGewJlctWrxKcxinGegPUkwteoXslFjXAxfwjzJfqcqQAfihpABajdtFAanFuMiocawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNsKrreQreQreQeMakSwrvDlLcqBRxjwkSrkchljmpGEhQtrbmdkdcJvflJonawTroqptCEcJvbQceSgxRaxRaxRaxRaxRaxRapTyqSXqVHpTyxRaxRaxRaxRaxRatKPijoqNeeDxtKPlSixPedryaGJkeNhwUmswfPKdxghVhsHdguosJJkBmkBmkBmkBmkBmkBmcnorwclWufqqmblhtnivvsKybtXaUhhFegrZiuliuluSAgrZgPpuCBehamkSwTIyiTfaAfaAwJNwJNwJNwJNwJNwJNwJNwJNwJNtFAnGeeQVjxiouDuvjnGeeDtjbHeaDslFnbBtMhtKXfqceRVuCwhQZajdlYAhIquMiocawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDoGhreQreQeMafFxrIMmeNaRDdzhvegkchqRZfOUbaErbmsgNcJvcjcbUejVOmyBnSBnfobOfkyhxZNxZNxZNxZNxZNxZNkTDqSXpQZvLhxZNxZNxZNxZNxZNrkpcWhbGtoDstKPtKPtKPtKPtKPtKPtKPtKPuNqrwJtKPtKPguolWumdDmdDmdDmdDmdDmdDaUhrwclWuxJPnlIrhQtWVcOLcOLaUhfHgxVehiMhiMhcTgrZgPpuCBcPKwTIiftmpEfaAfaAwJNwJNwJNwJNwJNwJNwJNwJNwJNtFAnGerbRaxqciuvgxnGestneSprpAslFnvVsdbwwrfqcdwhsFgvuCajdfdIanFuMiocawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrreQreQeMamYoeMatmYiBaiRDjAUhAcpGEhfmrbmhHpcJvcJvjKacJvcJvcJvcJvuSBbACdEvuOvlndlndlnduOvfiXwcFkWqfiXuOvlndlndlnduOvrkpgszwrGfVRdjpdFZoajbVRagLdrolUdrnOdqPhtIpjNtKPdkJlWumdDmdDmdDmdDmdDmdDaUhrwclWuqkUgwLctFvrgllPuIFaUhfHgsePsePsePsePsePgPpuCBuCBuCBuCBuCBfaAfaAwJNwJNwJNwJNwJNwJNwJNwJNwJNtFAnGenGenGenGenGenGetydtydtydslFsxTsxTsxTfqcatHtXStXSajduMiuMiuMiuMiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrreQreQeMaeMaxMckoIkOJkchabtpGEhfmfpXwagyiVnwlxEelsdttdhkxdEvllwaIqdEvuOvuOvuOvuOvuOvfiXqSXpQZfiXuOvuOvuOvuOvuOvrkpqsIpsslCJlyEhOpgQrmdMmdMgpWtSdursdtVtHGmpYcXIaUhlWumdDmdDmdDmdDmdDmdDaUhybMlWuqkUpSTjrKqIKgMRrhBaUhoDVsePmjMxwcchssePxJUlQbkGkaHKqsErhxqoLqoLqoLwJNwJNwJNwJNwJNwJNwJNwJNwJNtFAtFAtFAtFAtFAtFAuSSuSSuSSaCuuKeuKeuKemGGilBilBilBajduMiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYsKrreQreQeMaviMygVwikkchduxiLOqyTjoamTBlGdvlKjzLlwJvoypAjdEvxwCapldEvtFAfHVoMJvCItFAfiXqSXhZRfiXtFAgllneEuhvtFArkpgEVqaulpYezIcymgLctETkGMdNXbwpbKceNsiHgdNXcXIaUhlWumdDmdDmdDmdDmdDmdDaUhybMlWuipRlwjfDJuCgrhBrhBaUhaLwrcxsadbvAfsXhWhcfplQbhnNuGTeZrdwDqoLqoLqoLqoLqoLwJNdHBwJNpKqwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrreQreQeMaeMaeMaeMaubphdiaBkujkirZirZszKgSxujkirZmwFkQPxEdapldEvtFAnVGotOnjVnNSfiXfeEnkrfiXrbucwEotOeeLtFArkpkTdgbgviShxbePeeJkiqApBUdNXbBffZnciLfZlrBftKPqRqlWumdDmdDmdDiNGmdDmdDaUhybMlWurhBcYdaYAtHTusprhBaUhjZasePopeoMMbZHsePceUllxmwNqjMpeUbRgslSslSslSslSslSsAusAugkosAusAuiasiaswJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrreQreQreQreQxwJubpubpbJAubpvoibVvubpuqrubpbVvbVvdEvqaCjvvdEvtFAprFpILtTwdStaEecYCeAurmWeUdtTwpILdFKtFArkpwkEmtPkvmmuIuoioFSrAjouVouVrAjoFSrAjmeUryYtKPbRclWumdDmdDmdDmdDmdDmdDaUhybMlWurhBvVxapDqKKbqLrhBaUhjZasePwLToMMadxsePklMlQbtgQnIaeQYlZZslSslSqFFpQseUosAucZPenqhoseyYdsjieRiasegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmrsqsKrreQreQreQubpubpyfyubphaqhaqubpspkubphaqhaqfIwfevuHQdEvtFAcGNtztpbxtFAfiXnxUoeIfiXtFAakmtztmvitFArkpvlhpmpktqtdleqAwQMaXMhFoiGvihylwuiNvgQBwoNtKPguolWumdDmdDmdDmdDmdDmdDaUhybMlWucaCfVpqGQqfcyelrhBaUhjZasePsePsePsePsePiEJlQblQblZZslSslSslSslSvWupQsszZsAuqZEdmNqHEdPvsQGgFvnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmvZbvZbvZbsKrbZLgQzbNjwJNwJNbZLlurbNjsKrsKrfIwxHKxiJdEvtFAeyrxgplWstFAfiXqSXdVNfiXtFAtoOxgpviktFArkptKPtKPtKPtKPtKPtKPtKPtKPtKPtKPtKPtKPgrEtKPtKPolglWumdDmdDmdDmdDmdDmdDaUhybMlWurhBacOjVnxnlcCCrhBomZpSysTiaUNaUNiKCfiAgEflBJsVNbeCfulslSslSslSlMFeEblMFpfhiKUiKUjbwvrutcbnQLnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwbvwJNwJNtRDfIwdDUdYSdEvtFAlZmbWaxeNtFAfiXqSXmhnfiXtFAlJpbWadAHtFArQmpQItCBvblhkgivzuFwqVwnimspmspmspmspmfkWwygvwPuPQhIrmdDmdDmdDmdDmdDmdDaUhybMlWurhBlackNSksMeAGcaCeoGbqSlQblQblQblQbfDCgWhbghaWXlZZawQslSslSwRsjHHmepiEtduluhCapUkLScToonpbMHnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNiCjwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNpJpfIwdDUdZgdEvtFAdxkwPewxQtFAfiXftLgtOfiXtFAqGXwPeeUxtFArQmoYrpJVwygqIBgxSsiVvDrvDrnFmmfJfrcoJdhAPsIRhkgucuvfCgoNgoNgoNgoNgoNgoNqRqybMlWugLSrhBrhBxzLrhBrhBuDObfInaicweuPnxuOxuOxuOlQblQblZZeDLraUkbWdvvfIKdvKfdztGCoQwsbpkwZhCFuPlqMmiasegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDfIwdDUdZgdEvtFAtFAvgOtFAtFAfiXdRnkvkfiXtFAtFAvgOtFAtFArQmiGYsiVtMzhkgrxalgmmORwidpGspGspGspGspGspGsrQmrMropmguoguoguoolXguoguoguoybMiMxgoNgoNmVFgoNgoNgoNqRquqmrXfikrghOaUdgQlxuOqyvqyvjzmjzmjzmslSoDYoGgvIPcGElfGkttulvmNftUiucEbMHnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNdDbfIwfIwfevuxQcFAcFAcFAcFAcFAshPnMhaGIshPwygwygwygwygwygpxRgxSrYZtMzhkgpGspGspGspGspGspGspGspGspGspGsrQmmalpeplFklFklFkmbTpYaamKkCItAOrWZeiQvYXaMGmebtqxmebmebebMvqRwWdhXTnPWiOcxuOeAkxTshsTfbbhhOslSslSkAggiRrAdslSrjAdUDkAgslSuPlnQLnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDfIwfIwfIwfIwueYogNogNogNfWseoknrCqDxeoktZFgSwgSwgSwjTLpGspGspGspGspGspGspGspGspGspGssKrgpxsKrpGspGsrQmxZNxZNxZNxRaowlowlxRaowlfjTxRarVYpdLrVYbRIpdLrVYnjYnjYbCUbCUbCUbCUvILqyvqyvgXfgXfgXfgXfgXfslSslSuklbrUpltslSggpsxJeqFslSmVwbMHnCKwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrfIwfIwfIwvPHogNogNogNogNeokeoTcRIeokgSwgSwgSwgSwplupGspGspGspGspGssKrvZbvZbvZbvZbvZbsKrvZbsKrpGspGsubpubpubpcTyfAhofPwigbuObsSaaUrVYfjocTvhrzetSrVYgSUaxtulQwlQmhxbCUqGAoahgxngXflOnxTshsTfbbslSslSqTMbrUtmaslSvMxsxJxIIslSibWuhkiasegiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmsKrfIwfIwvhHvhHvhHvhHvhHeokefZpEpeokqYtqYtqYtqYtqYtpGspGssKrrsqvZbsyPwJNwJNwJNwJNwJNwJNwJNuIYvZbsKrubpubpubprFVfDoanDanDgFsiButwzrVYedIbxyqodcXBpdLgpSssvvBHcdQjLmnjYjeslEYvQlgXfcKJcKJcuPjzmslSslSslSslSslSslSslSslSslSslSpMxbgxkKLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNlJmrsqfpgsKrsKrsKrsKrsKreokcBkgWLeoksKrsKrsKrsKrsKrfpgvZbsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYsKrubpubpubpeIDcXjhOXsILkVGuLYrVYtDImfvyaAfQUvnabztgitgcNprYfYOrNRqDDtGQrfNmaQmaQwhegXfjzmbNCtnZlIYnfekFVbKtnOZsllvMSppbjMYvxZsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNqLnwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNjXieoTtRfdgHwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYsKrubpubpubpgkGedKhPyslfnxsrVYppMtzJsSyuLppdLsyOnqphWRrxRpeDnjYerZuzRwpVvfnbbDxQgiCgiCghZnduDhZnhZnmAwdqhhZnknQppbppbsKrsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNycxwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYsKruYwvXCxdNiAWnOzoDIvharVYtlBetLgsMoDJrVYbCUbCUbCUbCUbCUbCUqyvqyvqyvqyvqyviWfgiCfsRfwSwqmcRefMIwwHsAXxNbwKqppbsKrsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNbCVuYwvXCxdNbjJvhavhavharVYrVYrVYrVYrVYmripynpynpynpynpynpynfAqfAqfAqfAqfAqfAqjfRovzeWCkyIdlNbPbppbppbppbppbppbaeOwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNtRDubpubpjqXqicrVKwrCqZkclgclgclgclgclgclgpynpynpynpynpynpynfAqfAqfAqfAqfAqfAqppbeqmppbppbppbppbppbsKrvZbvZbrsqsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNpJpubpubpubpubpubpubpubpclgclgclgclgclgclgsKrvZbrsqvZbvZbvZbvZbvZbvZbvZbvZbrsqvZbvZbvZbvZbvZbvZbvZbsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYsKrubpubpubpubpubpubpclgclgsKrvZbqKzvZbsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNuIYvZbvZbvZbvZbvZbrsqvZbvZbsyPwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNfECwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwlJwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN "} +(2,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wlJ +wJN +"} +(3,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(4,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(5,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(6,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(7,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(8,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(9,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(10,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(11,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(12,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(13,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(14,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(15,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(16,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(17,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(18,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(19,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(20,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(21,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(22,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(23,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(24,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(25,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(26,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(27,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(28,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(29,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(30,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(31,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +iCj +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(32,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(33,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(34,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(35,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(36,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +kfS +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +nYR +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fEC +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(37,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(38,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(39,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +eOA +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(40,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(41,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(42,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(43,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +tRD +sKr +nLj +nLj +nLj +wTG +niv +nMa +niv +gPP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(44,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +oGh +xJo +nLj +nLj +nLj +nLj +nLj +cVd +pHh +twE +niv +vCS +vCS +niv +niv +reQ +sKr +tRD +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(45,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +xJo +xJo +nLj +xZu +vVR +qwe +nLj +fNt +hHI +aDI +niv +haq +haq +niv +niv +reQ +reQ +oGh +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(46,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +xJo +xJo +xJo +nLj +nGm +dzd +ygD +nLj +wrf +tBD +aDI +tvj +ibJ +szs +tDs +niv +reQ +reQ +reQ +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(47,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +xJo +xJo +xJo +sqg +nLj +nGm +dzd +beQ +nLj +fNt +hHI +aDI +aiu +xNM +kBw +jWW +byK +reQ +reQ +reQ +reQ +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(48,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +oGh +xJo +xJo +xJo +sqg +sqg +nLj +wdV +ubP +dxC +nLj +acE +hHI +jZq +stR +psp +bdv +kvN +awD +eMa +eMa +eMa +reQ +reQ +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(49,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +xJo +xJo +dOr +ojk +ojk +ojk +lXN +lXN +lXN +lzH +psN +wgk +cBt +wgk +wgk +vkB +ipZ +vkB +kch +eMa +kSw +fFx +eMa +reQ +reQ +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(50,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +eCv +rIo +lpT +wJr +igx +kdk +tCR +oGN +ryC +qvF +lkA +qtF +jQY +eFr +evz +qlk +sOi +kQN +rvD +rIM +mYo +eMa +reQ +reQ +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(51,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +dOr +iWK +hFS +avg +aFa +ojk +vsE +vry +jTo +baE +gIf +eJn +gIf +vIG +hQt +ewQ +sst +kch +lLc +lLc +meN +eMa +eMa +eMa +reQ +reQ +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(52,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +dOr +mDF +uZt +gdH +tsN +fyJ +rSz +ojk +ikx +rVe +ixM +wew +wew +hKg +wew +wew +vqq +rVe +qfI +sOi +qBR +qBR +aRD +tmY +xMc +viM +eMa +reQ +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(53,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +ddj +kWC +tsN +tsN +coc +gWu +ojk +prK +rVe +tIz +tTp +ecg +qpp +ecg +tTp +axy +mmQ +tpJ +kyp +ecC +xjw +dzh +iBa +koI +ygV +eMa +reQ +reQ +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(54,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +ngL +aFs +kmH +ihU +rpD +wNH +npb +nyL +fQo +ttA +rxd +hfF +lXY +kyT +lXx +jKV +xbC +hAA +kch +cRY +kSr +veg +iRD +kOJ +wik +eMa +reQ +reQ +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(55,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +fiQ +wzU +ezl +dvG +xUf +dYr +ojk +iMY +nys +rCB +bPp +pkZ +oej +fMD +slW +ece +xbC +kIl +rOc +kch +kch +kch +jAU +kch +kch +eMa +xwJ +reQ +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(56,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xJo +xJo +dOr +ojk +ojk +kIp +mwQ +kIp +kIp +ojk +okA +aDL +gYM +auU +hSw +cFg +crJ +auU +oQb +vpQ +qfI +fMQ +fRI +ljm +qRZ +hAc +abt +dux +niv +niv +niv +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(57,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vxd +niv +niv +hNk +hVi +szX +fdA +hAc +oSi +dIi +fMQ +usc +otx +ttA +qpp +okZ +cFg +oxV +qpp +jKV +ams +dVr +prk +phb +pGE +fOU +pGE +pGE +iLO +hdi +niv +niv +bZL +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(58,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +osJ +cUP +geq +iew +wed +mQI +wkt +hwP +wKb +uOX +uZU +fMQ +tOK +nLi +gSJ +uNI +xMy +vDS +rWL +xsF +akz +oBK +aTd +fMQ +cwr +hQt +baE +hfm +hfm +qyT +aBk +bJA +yfy +gQz +qLn +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(59,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xpy +niv +niv +rRL +pqS +eQp +eQp +eQp +bAm +rCL +pNx +lqE +ojN +koZ +tTp +bel +dqB +ehU +qpp +oxW +bhO +ofK +eBs +iCa +rbm +rbm +rbm +fpX +joa +ujk +niv +niv +bNj +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(60,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +uyP +fxt +wag +okm +itm +cRP +bgK +bAm +irZ +pNx +kGG +pjG +lfW +qpp +xYz +mRs +wHf +qpp +kdO +hBL +iQd +eBs +iyF +dkd +sgN +hHp +wag +mTB +irZ +voi +haq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(61,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +uyP +bVv +wag +qbA +uwR +mfF +sxV +bAm +hpL +pNx +adh +fES +obP +aju +gvi +wRc +oTC +bEG +sQJ +lCN +nKD +cJv +cJv +cJv +cJv +cJv +yiV +lGd +irZ +bVv +haq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(62,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vxd +niv +niv +vgk +pqS +eQp +gRs +eQp +bAm +uDZ +xpX +tTa +uGw +aXc +dMC +xlz +oju +xuN +vJj +rBO +lCN +lLh +cJv +jIA +flJ +cjc +cJv +nwl +vlK +szK +niv +niv +bZL +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(63,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +lfD +gmn +jmc +buq +vbg +tGv +rhc +gYx +mgc +xyt +xli +pZw +eRu +bRN +uOR +hRW +nBI +era +gFa +pgU +sQJ +fzu +iWp +rRW +fqF +ona +bUe +jKa +xEe +jzL +gSx +uqr +spk +lur +wbv +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(64,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xpy +niv +niv +rRL +eQp +eQp +eNt +eQp +eQp +sht +xpX +bDA +wsQ +aBK +qpp +kRl +ioU +uNF +qpp +iGp +apf +qpY +wHU +eKS +wTr +jVO +cJv +lsd +lwJ +ujk +niv +niv +bNj +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(65,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +uyP +bVv +wag +eQp +eQp +eQp +eQp +eQp +irZ +pNx +xYT +vGY +mjK +qpp +xUo +qpp +hCY +qpp +qUR +mrS +qpY +wHU +bSU +oqp +myB +cJv +ttd +voy +irZ +bVv +haq +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(66,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +bne +tRD +tRD +tRD +tRD +pJp +tRD +ddZ +uyP +bVv +ukA +oMI +mPv +lBS +pLF +rKZ +fmy +pNx +eUL +lWR +uOR +lWE +txb +gZD +dXI +txb +qUR +mrS +bjB +cJv +fZP +tCE +nSB +cJv +hkx +pAj +mwF +bVv +haq +sKr +tRD +pJp +tRD +dDb +tRD +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(67,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +bne +sKr +taa +taa +taa +taa +taa +taa +taa +taa +xlq +xlq +xlq +xlq +xlq +xlq +xlq +xlq +xlq +vzx +tqj +eIL +xCa +pGw +hse +mTl +hse +uTz +enS +vfy +cJv +cJv +cJv +nfo +cJv +dEv +dEv +kQP +dEv +fIw +fIw +fIw +fIw +fIw +fIw +fIw +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(68,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +taa +taa +taa +nAF +nAF +kks +bhT +xXt +xqd +hUZ +uJr +uJr +uJr +uem +crU +azi +xbL +sHm +iFH +eRP +xnB +lGh +gAv +fvn +wly +fby +fby +jLV +hpm +ped +ckA +bQc +bOf +uSB +llw +xwC +xEd +qaC +fev +xHK +dDU +dDU +dDU +fIw +fIw +fIw +sKr +lJm +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(69,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +taa +taa +evG +kks +kKF +cKK +afz +cCk +ajY +qOn +psl +psl +otJ +dGe +uke +bxP +gdZ +xlq +xAm +iTD +ipg +wtc +bNE +eAH +nzu +eRn +wtc +rdI +ktQ +jvv +dDU +eSg +kyh +bAC +aIq +apl +apl +jvv +uHQ +xiJ +dYS +dZg +dZg +fev +fIw +fIw +fIw +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(70,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +dac +taa +taa +fQF +xlq +xlq +xlq +xlq +xlq +xlq +xlq +xlq +xlq +xlq +fiX +fiX +fiX +fiX +fiX +fiX +fiX +fiX +hKK +yah +bqr +bFA +iVN +ouc +iVN +iVN +iVN +iVN +jee +dEv +dEv +dEv +dEv +dEv +dEv +dEv +dEv +dEv +dEv +uxQ +fIw +fIw +fIw +fpg +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(71,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +kkJ +gho +htl +hQy +fSa +fSa +fSa +fSa +fSa +fSa +fSa +fSa +bmK +bmK +fiX +fiX +hWB +hWB +hWB +hWB +mJi +fiX +hGr +gWW +oVB +iVN +hko +mRU +hRh +aDp +vcZ +iVN +jee +lkQ +lkQ +tFA +tFA +tFA +tFA +tFA +tFA +tFA +tFA +cFA +ueY +vPH +vhH +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(72,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +kkJ +pkw +pkw +hQy +fSa +jAW +bUR +eyr +inU +mfI +eyl +iWe +bmK +dSZ +fiX +fiX +hWB +hWB +hWB +hWB +hWB +pmO +jJh +pcB +cPc +qFZ +jFv +knD +cGp +hOq +qUW +iVN +jee +lnd +lkQ +fHV +nVG +prF +cGN +bdA +lZm +dxk +tFA +cFA +ogN +ogN +vhH +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(73,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +kkJ +pkw +pkw +hQy +uPf +dpV +jQG +oQc +aaJ +aLa +gHj +kDM +bmK +dSZ +fiX +fiX +hWB +hWB +hWB +hWB +hWB +pmO +oGx +oWo +oQh +iVN +ixk +ych +nVj +oLd +aUP +iVN +jee +lnd +lkQ +oMJ +lZe +pIL +cDm +xgp +bIg +wDm +heL +cFA +ogN +ogN +vhH +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(74,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +kkJ +pkw +pkw +hQy +sNZ +wxQ +mcp +lgZ +eja +vjK +qYD +wFx +bmK +dSZ +fiX +fiX +hWB +hWB +hWB +hWB +hWB +pmO +jJh +oPv +iOE +iVN +pYx +vYl +rRF +gDq +pYx +iVN +jee +lnd +lkQ +vCI +njV +pdd +pbx +lWs +xeN +nHx +tFA +cFA +ogN +ogN +vhH +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(75,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +kkJ +pkw +igB +qnJ +fSa +fSa +fSa +fSa +fSa +sqj +mGx +fSa +bmK +bmK +fiX +fiX +hWB +hWB +hWB +hWB +hWB +fiX +vyd +aFT +nRm +iVN +gXj +gXj +iVN +gXj +gXj +iVN +jee +lkQ +lkQ +tFA +nNS +dSt +tFA +tFA +tFA +tFA +tFA +cFA +fWs +ogN +vhH +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(76,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +iFg +wJN +wJN +wJN +wJN +wJN +qWf +eok +eok +eok +eok +shP +fiX +fiX +fiX +fiX +fiX +bxa +fiX +fiX +fiX +fiX +kTD +fiX +fiX +fiX +fiX +fiX +fiX +fiX +wTF +iGS +uXO +pTy +pTy +pTy +pTy +pTy +pTy +pTy +kTD +fiX +fiX +fiX +fiX +aEe +fiX +fiX +fiX +fiX +fiX +shP +eok +eok +eok +eok +jXi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(77,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +eoT +dJq +fMx +eoT +ggj +uiJ +odq +sEe +qSX +qSX +pps +gQd +cUD +qSX +qSX +wcF +qSX +qSX +dMS +awJ +oWk +rmQ +gqe +eBq +tWW +xip +ivW +fSs +xoT +qSX +oWk +uel +dMS +qSX +qSX +wcF +qSX +qSX +feE +cYC +nxU +qSX +qSX +ftL +dRn +nMh +nrC +eoT +efZ +cBk +eoT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(78,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +ccL +xIk +eVJ +cvZ +eTv +cul +aGI +wUr +dbH +ily +dVN +sMY +ePm +fKd +hZR +pQZ +kWq +pQZ +hHC +pQZ +ohj +nnP +lIc +mDy +dRs +nic +nkL +voS +vln +vNm +pQZ +aRe +tUJ +pQZ +qVH +pQZ +kWq +pQZ +hZR +nkr +eAu +oeI +dVN +mhn +gtO +kvk +aGI +qDx +cRI +pEp +gWL +tRf +ycx +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(79,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +uRw +eok +eok +eok +eok +lkl +fiX +fiX +fiX +fiX +fiX +ohb +fiX +fiX +fiX +fiX +fTr +goT +goT +goT +goT +goT +goT +maw +cgK +fcf +qVi +pTy +pTy +pTy +pTy +pTy +pTy +pTy +vLh +fiX +fiX +fiX +fiX +rmW +fiX +fiX +fiX +fiX +fiX +shP +eok +eok +eok +eok +dgH +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(80,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +ePX +fux +bdw +qQa +rMZ +rMZ +rMZ +rMZ +rMZ +jOT +rbu +rMZ +uOv +uOv +goT +goT +bva +aKQ +oOu +dkf +liK +maw +aCG +jOU +lKz +mPx +reW +nxX +oig +uiA +jWM +mPx +fvR +fIA +fIA +sXZ +hIE +eUd +sXZ +sXZ +sXZ +sXZ +sXZ +wyg +tZF +gSw +qYt +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(81,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +ePX +fux +fux +qQa +rMZ +qGX +eOj +mIX +ecl +brF +uVV +pPl +uOv +cxp +goT +goT +qfX +coG +coG +qcw +ppV +cJI +gDZ +jQx +rTa +uGD +xSt +nvk +kgc +cuX +niF +mPx +fvR +gAa +fIA +gll +cwE +tTw +akm +toO +lJp +bwx +sXZ +wyg +gSw +gSw +qYt +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(82,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +ePX +fux +fux +qQa +oLo +wPe +xUe +oif +sVI +qNA +mtj +srL +uOv +cxp +goT +goT +hjf +ofR +jOZ +mSX +lfB +pfr +kJC +jlt +vQu +mPx +izk +pij +fnb +nSr +oEN +mPx +fvR +gAa +fIA +neE +otO +nWt +tzt +jfA +bWa +vIX +epb +wyg +gSw +gSw +qYt +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(83,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +ePX +fux +fux +qQa +rMZ +wHn +miC +vik +inO +vig +cav +chU +uOv +cxp +goT +goT +oEn +jhN +dRq +quz +vmL +tez +pCO +pej +cBg +mPx +gpU +nMQ +pWK +wlZ +nyu +mPx +fvR +gAa +fIA +uhv +eeL +dFK +mvi +aQw +dAH +eUx +sXZ +wyg +gSw +gSw +qYt +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(84,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +ePX +gMZ +gOY +qQa +rMZ +rMZ +rMZ +rMZ +rMZ +rMZ +rMZ +rMZ +uOv +uOv +goT +goT +xGM +tUS +wpa +lLu +ylh +voC +mXd +fpD +dnG +mPx +wDQ +wRH +uMG +tqd +jNm +mPx +fvR +fIA +fIA +sXZ +sXZ +sXZ +sXZ +sXZ +sXZ +sXZ +sXZ +wyg +jTL +plu +qYt +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(85,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wua +nNF +nNF +nNF +bmk +xeA +xeA +xeA +xeA +xeA +icv +icv +icv +icv +icv +goT +goT +maw +maw +maw +maw +maw +maw +qoP +nnQ +xFd +mPx +mPx +mPx +kNi +mPx +tKP +tKP +rkp +rkp +rkp +rkp +rkp +rkp +rkp +rkp +rQm +rQm +rQm +pxR +pGs +pGs +pGs +fpg +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(86,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +nNF +nNF +miw +npY +cFR +cFR +hMA +ndt +xqJ +syU +lSc +rLY +sBA +dyC +dyC +dyC +bIO +jol +tcn +jol +dnL +jhr +dOK +qrn +cxs +keN +iBl +wRA +pgn +vPL +tKP +ijo +cWh +gsz +qsI +gEV +kTd +wkE +vlh +tKP +pQI +oYr +iGY +gxS +pGs +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(87,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +nNF +nNF +qPe +rxq +fsK +fsK +fsK +lea +xqJ +usb +nkC +vFJ +oWC +tmM +tmM +tmM +gUl +mMA +mMA +mMA +eIe +okj +lHM +fyb +oZi +vkD +tSM +msj +qvm +gZU +gJd +qNe +bGt +wrG +pss +qau +gbg +mtP +pmp +tKP +tCB +pJV +siV +rYZ +pGs +pGs +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(88,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +nNF +nNF +ntB +lKo +xsW +ilV +jVy +rFm +pUw +qmS +iKK +sLh +sLh +sLh +sLh +sLh +phV +phV +phV +phV +phV +phV +drA +vJC +waJ +gRi +awH +gwF +jOi +ggZ +tKP +eDx +oDs +fVR +lCJ +lpY +viS +kvm +ktq +tKP +vbl +wyg +tMz +tMz +pGs +pGs +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(89,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +sKr +nNF +xeA +xqJ +rMY +xqJ +xqJ +xqJ +xqJ +xru +vbe +sLh +eiT +cwf +eiT +nwk +phV +oed +wzi +afD +szP +phV +eXn +aBN +cBg +gRi +ivP +pen +tgt +jNE +tKP +tKP +tKP +djp +lyE +ezI +hxb +muI +tdl +tKP +hkg +qIB +hkg +hkg +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(90,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +xei +uRL +aRf +npu +ocW +eSi +kRK +gUl +nor +bJw +sLh +ePv +ncG +xWS +kAa +phV +hou +jkc +fpB +skE +sDH +oJN +fNz +liR +gRi +pdF +pen +qrk +rEv +qYL +lSi +tKP +dFZ +hOp +cym +ePe +uoi +eqA +tKP +ivz +gxS +rxa +pGs +pGs +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(91,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +xei +uRL +cTe +fVc +wMG +hwk +gRw +gUl +cAf +byf +tEq +crG +oVE +sMH +lpZ +phV +uju +wdK +hlz +npl +hJi +rXW +bGu +liR +gRi +cAg +pen +aDg +myC +kZG +xPe +tKP +oaj +gQr +gLc +eJk +oFS +wQM +tKP +uFw +siV +lgm +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(92,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +xei +uRL +jQU +niA +hwk +hwk +nPf +gUl +jss +skl +sLh +twT +cxG +qvi +eyn +phV +nWl +laz +laz +nqx +phV +kTG +tSN +bGP +keN +iDr +rQw +ouf +pIG +msj +dry +tKP +bVR +mdM +tET +iqA +rAj +aXM +tKP +qVw +vDr +mOR +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(93,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +xei +uRL +qDT +uaP +cYn +iGb +nyw +gUl +mMA +ygS +sLh +ewe +jsW +hpa +vdr +phV +qDB +qDB +tjQ +mAf +phV +qoP +bXI +xFd +keN +dIj +bal +oMX +vxN +hjI +aGJ +tKP +agL +mdM +kGM +pBU +ouV +hFo +tKP +nim +vDr +wid +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(94,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +xei +xei +uRL +uRL +qDT +qDT +qDT +gUl +gUl +gUl +sLh +sLh +oen +sLh +sLh +phV +phV +phV +phV +phV +phV +kly +nlC +gqM +keN +keN +ruE +swV +rUf +swV +keN +tKP +dro +gpW +dNX +dNX +ouV +iGv +tKP +spm +nFm +pGs +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(95,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +eIh +eIh +eIh +oYP +gDD +wYV +lou +iyZ +kwc +oAH +jkH +pzD +avj +bxd +hAe +epp +jUc +hgX +unp +gvz +eLV +umw +dJg +gxN +qzf +geT +ctg +iEm +mJW +wIU +hwU +tKP +lUd +tSd +bwp +bBf +rAj +ihy +tKP +spm +mfJ +pGs +pGs +sKr +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(96,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +sKr +eIh +eIh +oYP +ctu +xOM +rRm +neA +iEl +oAH +pva +oUq +rKP +lBc +sVc +kAJ +lCK +jsn +jfu +sgf +czY +qDo +sBZ +wkC +bQM +dgP +oti +bny +kpP +cDr +msw +tKP +rnO +urs +bKc +fZn +oFS +lwu +tKP +spm +frc +pGs +pGs +gpx +sKr +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(97,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sKr +sKr +sKr +wRe +dNb +gtI +vmN +edr +rep +fyE +ksv +qIw +wjt +uwA +rxU +rxU +rxU +qOU +bdQ +bdQ +gGX +xQF +cla +utF +seu +msi +aoB +wHk +vnc +cDX +bny +fPK +uNq +dqP +dtV +eNs +ciL +rAj +iNv +tKP +spm +oJd +pGs +pGs +sKr +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(98,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +sKr +eIh +eIh +oYP +pnv +kAy +snB +wdj +pBk +kHT +ooG +sRC +ccc +qWo +hgJ +vQd +gxK +mgN +mgN +oMg +iTR +sCh +adK +mVC +gVE +tIp +hIP +iHF +pxm +cDr +dxg +rwJ +htI +tHG +iHg +fZl +meU +gQB +grE +fkW +hAP +pGs +pGs +pGs +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(99,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +eIh +eIh +eIh +oYP +oqk +qSl +aFz +brx +hxy +ybu +jhQ +izf +gPL +dUH +nmW +dUH +gPL +gPL +kVg +uND +eLV +lJv +kyB +lMB +qzf +rqp +sHs +gxk +sae +wUM +hVh +tKP +pjN +mpY +dNX +rBf +ryY +woN +tKP +wyg +sIR +pGs +pGs +pGs +pGs +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(100,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +eIh +oYP +oYP +oYP +oAH +oAH +oAH +ybu +oAH +oAH +eLV +eLV +iTR +iTR +eLV +iTR +iTR +eLV +eLV +eLV +eLV +hXe +iTM +hXe +qzf +qzf +sHd +qzf +qzf +qzf +sHd +tKP +tKP +cXI +cXI +tKP +tKP +tKP +tKP +vwP +hkg +rQm +rQm +rQm +pGs +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(101,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +wBb +wBb +xYO +gTP +rdv +kFJ +rdv +rdv +rdv +rdv +ybf +rdv +pCR +rdv +rdv +fHs +rdv +rdv +ybf +rdv +rdv +kFJ +rdv +xtN +lFZ +aCf +wUu +pgO +eYz +vQO +fMz +guo +guo +dkJ +aUh +aUh +qRq +bRc +guo +olg +uPQ +ucu +rMr +mal +vEq +oMW +oMW +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(102,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +wBb +wBb +wBb +xYO +rru +sJJ +hcz +hcz +hcz +lWu +fPZ +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +pEW +rot +reM +mEk +qQL +qQL +qQL +kmV +sJJ +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +hIr +vfC +opm +pep +vEq +oMW +oMW +oMW +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(103,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wfu +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +tRD +tRD +tRD +sKr +wBb +wBb +wBb +wBb +xYO +rru +kBm +aNt +ufy +aNt +msN +fDE +kap +aNt +dQB +uvl +lWe +mDe +iKi +dMb +hNE +iKw +jxz +ajp +uAb +bXB +goN +mzU +sJJ +lWu +lWu +iMx +iNj +kBm +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +goN +guo +lFk +vEq +oMW +oMW +oMW +oMW +sKr +bCV +tRD +pJp +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(104,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +vNF +sKr +wBb +wBb +wBb +wBb +wBb +wBb +wBb +wBb +gSO +soQ +nvR +aNt +pmj +xDs +sEG +rlJ +rLn +rZt +ftM +hbM +hNE +lEP +hNE +fVt +hNE +cjb +rTE +hhZ +djQ +dhj +goN +mzU +ofg +bbh +tIX +xxB +iNj +kBm +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +goN +guo +lFk +uQO +cTy +rFV +oMW +oMW +kBS +kBS +oMW +oMW +sKr +uIY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(105,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +wBb +wBb +xYO +xYO +xYO +xYO +xYO +gSO +gSO +gSO +gYC +kBm +ocQ +dsY +ipp +hBu +gTx +cYN +qKb +aNt +deO +vWX +eJA +kes +otN +tOi +imA +sxB +dnQ +gUF +rkX +goN +vkF +qga +bbh +tIX +tam +npy +kBm +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +goN +guo +lFk +fOl +fAh +btn +eID +oMW +vXC +vXC +oMW +oMW +oMW +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(106,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +wBb +xYO +xyI +oWS +sgt +szw +wiB +gos +pnG +gSO +pbE +kBm +uLm +sEG +nei +sjc +qBN +rLL +cmA +dew +fIX +gwp +mCS +aUU +uRj +jrw +apE +qee +uwl +lmQ +rkX +goN +mzU +yeS +bbh +tIX +wqu +fzK +kBm +mdD +mdD +mdD +mdD +iNG +mdD +mdD +mdD +mdD +goN +olX +mbT +fOl +ofP +anD +cXj +gkG +xdN +xdN +jqX +oMW +oMW +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(107,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +wBb +xYO +lvm +isN +tnF +isN +mnv +isN +isN +pnI +pHs +kBm +phN +rAf +nei +muq +aNt +aNt +rhl +aNt +csP +voO +eWf +ich +vjF +tOi +fkY +fLm +cvk +wOa +dhj +goN +mzU +aPW +bbh +tIX +rgy +fzK +kBm +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +goN +guo +pYa +uQO +dvF +anD +hOX +edK +iAW +bjJ +qic +oMW +oMW +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(108,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +wBb +xYO +kQU +eiV +vCd +kqh +vZF +kzJ +kzJ +cmr +pHs +kBm +pad +dxl +vrE +vir +ndK +fQd +sZd +wxx +dlH +hVy +dlH +dlH +vgU +dlH +dvy +dvy +dvy +lvv +rkX +goN +mzU +cno +aUh +aUh +kim +fzK +kBm +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +mdD +goN +guo +amK +fOl +buO +gFs +sIL +hPy +nOz +vha +rVK +oMW +oMW +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(109,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +wBb +xYO +kLV +oWS +wBZ +fiD +dWM +lJL +muo +gSO +vJu +kBm +aNt +aNt +aNt +jSm +ndK +kLQ +pip +nfK +dlH +bli +kph +tzi +xOK +dlH +opr +wmo +put +lmQ +rkX +goN +mzU +guo +oDP +grZ +guo +fzK +cno +aUh +aUh +aUh +aUh +aUh +aUh +aUh +aUh +aUh +kim +guo +kCI +fjT +bsS +iBu +kVG +slf +oDI +vha +wrC +oMW +oMW +vZb +wJN +wJN +wJN +wJN +wJN +ofN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(110,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +xaC +cfx +cfx +cfx +cfx +uwf +cfx +cfx +cfx +iui +kBm +mdD +mdD +jkC +lIQ +vcJ +scx +vkW +iwf +elF +tVD +pdK +aQS +eJG +gzR +kxy +wQg +fvA +lmQ +rkX +goN +xqa +sYL +cfl +grZ +ilt +yeT +rwc +rwc +rwc +ybM +ybM +ybM +ybM +ybM +ybM +ybM +ybM +ybM +tAO +uQO +aaU +twz +uLY +nxs +vha +vha +qZk +oMW +oMW +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(111,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +xaC +fFU +fFU +ozv +sPw +jPk +joA +cPA +cfx +gJv +kBm +uZT +uZT +uZT +ket +ndK +kLQ +pip +nfK +dlH +kvv +jPB +mde +gpi +dlH +frJ +vSQ +sLe +lmQ +rkX +goN +mzU +guo +slE +grZ +wvZ +wRk +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +lWu +iMx +rWZ +rVY +rVY +rVY +rVY +rVY +rVY +rVY +clg +clg +clg +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(112,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +xaC +fFU +fFU +gvf +gvf +jPk +gvf +gvf +vDW +pHs +kBm +uZT +iRB +iRB +iRB +ndK +wqC +fUd +luY +dlH +jHB +dlH +dlH +qXP +dlH +tLA +hRz +vfI +lvv +rkX +goN +mzU +sJJ +lWu +lWu +iMx +uMs +fqq +xJP +qkU +qkU +ipR +rhB +rhB +caC +rhB +rhB +gLS +goN +eiQ +pdL +fjo +edI +tDI +ppM +tlB +rVY +clg +clg +clg +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(113,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +xaC +xaC +iOl +gvf +uzM +jPk +gvf +gvf +vDW +pHs +kBm +dBO +iRB +iRB +xor +uZT +uZT +tgJ +uZT +nhU +xyk +suB +vNz +ick +nhU +vFk +muX +gcg +maC +dhj +goN +mzU +frX +bbh +dmM +mQt +uMs +mbl +nlI +gwL +pST +lwj +cYd +vVx +fVp +acO +lac +rhB +goN +vYX +rVY +cTv +bxy +mfv +tzJ +etL +rVY +clg +clg +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(114,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +gRR +xaC +dMH +vZT +vZT +rPy +scE +bDH +cfx +vJu +kBm +xKP +iRB +iRB +iRB +ldI +sxf +qrp +rqD +jhB +cDD +xaJ +fub +jSE +dDx +ryZ +lvf +efu +lmQ +rkX +goN +mzU +anX +bbh +dmM +hvk +uMs +htn +rhQ +ctF +jrK +fDJ +aYA +apD +qGQ +jVn +kNS +rhB +mVF +aMG +bRI +hrz +qod +yaA +sSy +gsM +rVY +clg +clg +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(115,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +shy +sKr +gRR +xaC +xaC +xiS +pVO +xLl +lmj +qOa +cfx +dyx +uOm +sDE +kfs +kfs +kfs +uGz +gPw +wpZ +uZT +eav +cJH +hcd +pIW +dan +nhU +bZW +bxO +qCt +euR +rkX +goN +irD +fCM +bbh +dmM +hvk +mpV +ivv +tWV +vrg +qIK +uCg +tHT +qKK +qfc +xnl +ksM +xzL +goN +meb +pdL +etS +cXB +fQU +uLp +oDJ +rVY +clg +clg +qKz +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(116,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +gRR +gRR +xaC +cfx +cfx +qwS +cfx +cfx +cfx +jqk +kBm +uZT +hrY +iRB +iRB +wZr +wpo +vFf +uZT +nhU +nhU +nhU +whL +cOj +nhU +sWn +yeP +khc +djQ +hqa +goN +tCa +axe +bbh +dmM +hvk +kBm +sKy +cOL +llP +gMR +rhB +usp +bqL +yel +cCC +eAG +rhB +goN +tqx +rVY +rVY +pdL +vna +pdL +rVY +mri +clg +clg +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(117,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +shy +sKr +qoL +qoL +sqm +sru +svN +jYQ +uYt +lQb +jqk +kBm +uZT +tqV +uZT +uZT +aAE +uoD +uZT +ghk +rDr +rDr +rDr +rDr +rDr +nhU +dvy +kPq +uKL +nRA +tvk +goN +mzU +cno +aUh +aUh +ltl +kBm +btX +cOL +uIF +aMS +rhB +rhB +rhB +rhB +rhB +caC +rhB +goN +meb +njY +gSU +gpS +bzt +syO +bCU +pyn +pyn +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(118,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +oWj +fRj +mqO +jjn +glW +lQb +sew +sDJ +nIN +nIN +nIN +vAP +vAP +vAP +vAP +vAP +vAP +vAP +vAP +vAP +vAP +vAP +vAP +sSq +qjD +aUh +aUh +kim +mzU +guo +guo +guo +qvW +cno +aUh +aUh +aUh +aUh +aUh +aUh +aUh +aUh +omZ +eoG +uDO +kim +meb +njY +axt +ssv +git +nqp +bCU +pyn +pyn +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(119,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +qoL +qoL +sAc +xUQ +fSA +xjq +tun +jgb +vWG +vsI +xmK +dFF +myu +dFF +dRi +rdv +fXF +ayY +uZC +rdv +rdv +alN +xLO +sbF +ibS +qQX +ejQ +whQ +tYV +vBm +mVh +fHg +hFe +fHg +qRU +fHg +hFe +fHg +fHg +oDV +aLw +jZa +dzx +jZa +pSy +bqS +bfI +uqm +ebM +bCU +ulQ +vBH +gcN +hWR +bCU +pyn +pyn +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(120,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +lQb +gaQ +lQb +xsu +lQb +lQb +lQb +uKz +lQb +kCm +kCm +mpx +ldP +akf +kCm +kCm +kIk +kIk +hfv +kJg +kIk +bDn +bDn +vRU +bDn +xmN +lKQ +xmN +grZ +piy +grZ +kYN +ttF +ttF +grZ +xVe +seP +seP +rcx +seP +seP +seP +sTi +lQb +nai +rXf +vqR +bCU +wlQ +cdQ +prY +rxR +bCU +pyn +pyn +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(121,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +uPo +kKl +cZU +sFs +pRb +lQb +aBR +eAj +elu +kCm +uVt +twj +mue +rBD +wmn +mhK +kIk +eDC +feR +pTH +heQ +bDn +lqA +lqA +bDn +lQb +ceT +lQb +grZ +iJi +iul +wlV +isv +wlV +iul +hiM +seP +mjM +sad +ope +wLT +seP +aUN +lQb +cwe +ikr +wWd +bCU +mhx +jLm +fYO +peD +bCU +pyn +pyn +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(122,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +ajS +kKl +xrV +sFs +pRb +lQb +aBR +eAj +qfV +kCm +ika +gmQ +mRo +wng +bxS +iBJ +kIk +nFl +aDN +eNl +jKE +bHq +wtu +lqA +bDn +nQi +sbP +sLu +grZ +iJi +iul +oLr +iAv +sbG +iul +hiM +seP +xwc +bvA +oMM +oMM +seP +aUN +lQb +uPn +ghO +hXT +bCU +bCU +njY +rNR +njY +bCU +pyn +pyn +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(123,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +qLW +kKl +xrV +sFs +lQb +lQb +ofO +eAj +taA +kCm +qpE +mCo +bcP +dpY +nKQ +mgg +kIk +pQe +oGL +gew +pOK +bDn +lqA +lqA +bDn +dFA +uGY +cZj +grZ +uFR +blD +cpR +blD +rFP +uSA +hcT +seP +chs +fsX +bZH +adx +seP +iKC +lQb +xuO +aUd +nPW +vIL +qGA +jes +qDD +erZ +qyv +fAq +fAq +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(124,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +mxj +kvH +pOn +jav +lQb +rhx +sFm +eAj +xcF +kCm +kCm +kCm +kCm +qtN +kCm +kCm +kIk +kIk +kIk +kIk +iDl +bDn +bDn +bDn +bDn +kbn +lMY +ubr +grZ +grZ +grZ +grZ +grZ +grZ +grZ +grZ +seP +seP +hWh +seP +seP +seP +fiA +fDC +xuO +gQl +iOc +qyv +oah +lEY +tGQ +uzR +qyv +fAq +fAq +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(125,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +xzu +pFP +bYy +vvz +sts +hKH +hKH +adC +hKH +tiE +wbt +nNq +pui +pRa +wOs +bWn +dRw +llr +bUh +bGx +itj +dKE +yhh +dKE +qVU +lyU +lPI +rZM +cPD +gPp +gPp +bnf +gPp +dPP +gPp +gPp +gPp +xJU +cfp +ceU +klM +iEJ +gEf +gWh +xuO +xuO +xuO +qyv +gxn +vQl +rfN +wpV +qyv +fAq +fAq +vZb +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(126,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +rBx +oet +cqW +gmz +lQb +oao +sFm +sFm +cBq +lQb +lQb +cwJ +qeq +gVn +jBz +jBz +jBz +jBz +rTz +jBz +hIf +lQb +lQb +lQb +lQb +cKt +dDf +lQb +uCB +uCB +uCB +uCB +uuL +ygz +uCB +uCB +uCB +lQb +lQb +llx +lQb +lQb +lBJ +bgh +lQb +qyv +eAk +gXf +gXf +gXf +maQ +vfn +qyv +fAq +fAq +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(127,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +iTy +oet +aqH +gmz +lQb +lQb +uYq +lZZ +lZZ +lZZ +ukd +uCk +epj +wHD +eai +buQ +cCy +gUS +mEl +jBz +fca +wIq +wIq +lQb +lQb +lzO +gNl +tMV +uCB +pke +mkS +dZU +mkS +vnW +eha +cPK +uCB +kGk +hnN +mwN +tgQ +lQb +sVN +aWX +lQb +qyv +xTs +gXf +lOn +cKJ +maQ +bbD +qyv +fAq +fAq +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(128,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +lQb +uPD +lQb +lQb +lQb +hYz +qsE +xzN +xWu +ekr +sbe +bDc +jGz +bes +emU +hoa +dfP +uAv +rvp +jBz +elC +ovq +peU +lQb +lQb +gSV +okE +tBq +gHu +lxz +hSU +lGq +ius +wTI +mkS +wTI +uCB +aHK +uGT +qjM +nIa +lZZ +beC +lZZ +lZZ +jzm +hsT +gXf +xTs +cKJ +whe +xQg +iWf +fAq +fAq +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(129,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fLf +qoL +qoL +omi +jtg +vok +qsE +qsE +qsE +qsE +xzN +vYz +lZZ +elu +cdg +jmb +fCl +jBz +jBz +jBz +jBz +rac +jBz +fca +hoN +obf +lQb +lZZ +lZZ +kuQ +lZZ +ceZ +ivw +mkS +mkS +sfW +sSz +wTI +ift +uCB +qsE +eZr +peU +eQY +slS +ful +awQ +eDL +jzm +fbb +gXf +hsT +cuP +gXf +iCg +giC +jfR +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(130,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +sAK +cis +lQb +clM +ttq +gIy +vDV +xzN +ghU +lZZ +ciB +tof +fxZ +bed +obI +eZa +eZa +lEQ +hfK +exM +xam +sru +sru +htd +lZZ +ogq +mXm +rAl +ceZ +wzG +hYy +sCP +iOJ +sqD +yiT +mpE +uCB +rhx +dwD +bRg +lZZ +slS +slS +slS +raU +jzm +hhO +gXf +fbb +jzm +jzm +iCg +fsR +ovz +eqm +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(131,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +mUJ +pXI +xzN +xzN +xzN +xzN +xzN +xzN +ozf +xzN +xzN +xzN +xzN +xzN +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +sPH +lgH +kjC +faA +faA +faA +faA +faA +faA +faA +faA +faA +qoL +qoL +slS +slS +slS +slS +slS +kbW +slS +slS +slS +slS +slS +bNC +hZn +fwS +eWC +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(132,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +jyp +edj +xzN +xzN +xzN +xzN +xzN +fvL +cUz +lfs +xzN +xzN +xzN +rUB +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +qoL +oZN +qoL +faA +uTg +faA +faA +faA +faA +faA +faA +faA +qoL +qoL +slS +slS +slS +slS +wRs +dvv +oDY +slS +slS +slS +slS +tnZ +duD +wqm +kyI +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(133,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +xPO +smh +xzN +xzN +wsk +qpe +ukj +vSl +lNm +aTq +bjG +dQa +mxC +xzN +ubp +ubp +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +lva +lva +wnT +lva +lva +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +qoL +qoL +slS +qFF +vWu +lMF +jHH +fIK +oGg +kAg +ukl +qTM +slS +lIY +hZn +cRe +dlN +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(134,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +qoL +izv +xzN +xzN +fRP +aqF +rHt +hBx +bGZ +hPn +mgy +ofY +pnT +xzN +ubp +wJN +wJN +wJN +wJN +sJY +sJY +sJY +sJY +wJN +lva +ueK +fkR +bFf +lva +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +qoL +slS +pQs +hXt +eEb +mep +dvK +vIP +giR +vOF +brU +slS +nfe +hZn +fMI +bPb +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(135,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +plv +qoL +qoL +qoL +taB +xzN +xzN +nAL +tZE +qOK +uJu +vGn +tDh +bjG +qQO +oVJ +xzN +ubp +wJN +wJN +wJN +sJY +sJY +sJY +sJY +sJY +wJN +lva +wfa +vlT +dJp +lva +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +qoL +slS +eUo +szZ +lMF +iEt +fdz +cGE +rAd +plt +tma +slS +kFV +mAw +wwH +ppb +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(136,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +shy +xHR +qoL +qoL +vmx +xzN +xzN +xzN +xzN +xzN +gPA +gSQ +ghC +tMa +tMa +tMa +tMa +wJN +wJN +wJN +wJN +sJY +sJY +xCc +icT +sJY +gaP +lva +fwR +alY +lva +lva +cOt +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +sAu +sAu +sAu +pfh +dul +tGC +lfG +slS +slS +slS +slS +bKt +dqh +sAX +ppb +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(137,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +obS +xHR +qoL +qoL +uSa +xzN +xzN +bPt +jNv +jQS +pGu +lpQ +rub +pwN +ebf +rVf +nYh +wJN +wJN +wJN +wJN +uoB +cFe +oPr +sgF +sJY +tni +lva +uIr +lok +noV +omc +cOt +rfU +rfU +cOt +wJN +wJN +wJN +wJN +wJN +dHB +sAu +cZP +qZE +iKU +uhC +oQw +ktt +rjA +ggp +vMx +slS +nOZ +hZn +xNb +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(138,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +obS +afU +qoL +qoL +qoL +xzN +xzN +fdB +mDx +sMy +mMK +eNi +crZ +pwN +upK +lny +xXX +wJN +wJN +wJN +wJN +uoB +cFe +drx +hHF +rAu +eAi +exm +syr +ncm +nOM +xhX +dQp +hlo +upO +cOt +cOt +wJN +wJN +wJN +wJN +wJN +gko +enq +dmN +iKU +apU +sbp +ulv +dUD +wCl +sxJ +slS +sll +knQ +wKq +ppb +vZb +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(139,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +obS +xHR +qoL +qoL +qoL +xzN +xzN +ljR +qwK +ukj +oSU +bJI +lGr +ldg +tbI +lvB +ewq +wJN +wJN +wJN +sJY +sJY +sJY +iqM +wzp +dyz +baK +sHw +spe +mVr +pTN +iti +dQp +kMf +cbu +cFG +dQp +wJN +wJN +wJN +wJN +pKq +sAu +hos +qHE +jbw +kLS +kwZ +mNf +kAg +eqF +xII +slS +vMS +ppb +ppb +ppb +rsq +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(140,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +obS +iZg +xHR +xHR +qoL +ceA +xzN +xzN +xzN +xzN +ucW +feM +mSU +eiD +cVE +rQo +tMa +wJN +wJN +wJN +uoB +cFe +jmt +mEE +wzp +luU +mGY +gzc +sGG +utb +kFT +kFT +cWb +aim +juH +rkR +dQp +wJN +wJN +wJN +wJN +wJN +sAu +eyY +dPv +vru +cTo +hCF +tUi +slS +slS +slS +slS +ppb +ppb +sKr +aeO +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(141,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +jiV +aBe +xHR +xHR +avJ +iBd +mQJ +mSW +vXi +niz +vXi +gTL +mPs +jnG +rrY +ceA +wJN +wJN +wJN +uoB +cFe +gGZ +duy +odC +aWD +xgH +trS +hOR +wjO +jDO +xWZ +jDO +mWA +wNr +cWb +cOt +wJN +wJN +wJN +wJN +wJN +ias +dsj +sQG +tcb +onp +uPl +ucE +uPl +mVw +ibW +pMx +jMY +sKr +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +svy +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(142,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +aBe +xHR +cVl +dbD +hCG +svE +tnx +svE +fpW +svE +tnx +meY +nCA +ceA +wJN +wJN +wJN +fgD +fgD +lkP +lkP +lkP +lkP +lkP +lkP +bgl +dAn +cWb +cWb +cWb +cWb +cWb +cWb +cOt +heP +heP +heP +wJN +wJN +ias +ieR +gFv +nQL +bMH +qMm +bMH +nQL +bMH +uhk +bgx +vxZ +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(143,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +aBe +xHR +hpV +ceA +soE +soE +soE +ceA +soE +soE +soE +ceA +wJN +wJN +wJN +fgD +fgD +atF +hAZ +gih +nVW +uqZ +jDJ +lkP +aKm +pjX +eYR +jws +sVs +dCn +eSI +eYR +eYR +eYR +eYR +eYR +heP +wJN +wJN +ias +nCK +nCK +nCK +ias +nCK +nCK +nCK +ias +kKL +syP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(144,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +jiV +jiV +egi +wJN +wJN +wJN +egi +wJN +wJN +wJN +egi +wJN +wJN +wJN +fgD +fgD +oJT +vFu +vFu +oZg +vFu +wUV +lkP +mvA +iHT +eYR +mSv +mWa +rEn +dnh +eYR +wJl +eQV +rbR +eYR +heP +wJN +wJN +egi +wJN +wJN +wJN +egi +wJN +wJN +wJN +egi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(145,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +skb +xct +cLq +fcy +aQF +mSZ +ouU +ouU +siy +aBD +pUq +xaj +wvv +gPM +mcr +abK +eYR +ctW +jxi +axq +eYR +heP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(146,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +skb +xct +czd +xab +cUh +ijN +vXp +alS +lkP +bxn +mYA +ksw +jcJ +cLH +aQn +jsg +vrF +rxK +ouD +ciu +eYR +heP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(147,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +skb +xct +lQj +xwP +aFg +jPr +vbV +xuz +bXZ +uPM +xZU +vjs +mHf +lbZ +nLL +oZK +eYR +cxi +uvj +vgx +eYR +heP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(148,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xaE +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fgD +fgD +uUN +tqw +nKk +rpR +uKY +mwS +bXZ +ogG +hzN +eYR +eYR +eYR +eYR +eYR +eYR +eYR +eYR +eYR +eYR +heP +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(149,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fgD +lkP +lkP +bXZ +bXZ +bXZ +lkP +lkP +lkP +cYT +mvq +fvF +lkG +tbD +sjf +gns +eaT +gPU +eDt +stn +tyd +uSS +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(150,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wQE +wQE +tXc +vTg +jey +xAM +qQu +iwh +pXh +pqT +mFL +fvF +uYM +lrf +rxZ +aRH +kqn +kwt +jbH +eSp +tyd +uSS +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(151,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +nGx +qui +dPB +dPB +dPB +bij +dPB +vkf +pXh +suZ +mvq +pZt +fPC +xEE +pTM +rMh +eaT +eoX +eaD +rpA +tyd +uSS +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(152,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +nGx +qui +dPB +lgE +pcP +tBK +dPB +hxu +owS +qez +sQZ +itG +cxW +woz +iqa +vmp +slF +slF +slF +slF +slF +aCu +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(153,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wQE +wQE +xPo +ekZ +pHA +jac +uYT +yag +iqc +agA +mZa +lDZ +nEt +nBS +jxw +lDU +ani +jXA +nbB +nvV +sxT +uKe +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(154,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +pco +aPJ +kVY +aPJ +aPJ +xKS +qLA +dPB +owS +vLM +iIK +itG +ulT +jIF +fXP +yid +qLh +xfw +tMh +sdb +sxT +uKe +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(155,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +pco +pco +olO +xYV +aPJ +emx +kpk +pAP +owS +eeE +jrL +itG +fzo +tnB +nHX +prl +aag +jzJ +tKX +wwr +sxT +uKe +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(156,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +uYs +vDj +ffU +rhs +aPJ +nGe +nGe +nGe +nGe +jjB +nGe +nGe +nGe +uJt +iDj +iMo +fqc +fqc +fqc +fqc +fqc +mGG +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(157,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +uYs +vDj +vyf +fxn +aPJ +loC +kuY +pPw +mMW +nZH +noS +xch +nGe +lOA +vmf +dzY +lhF +qQA +eRV +dwh +atH +ilB +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(158,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +uYs +vDj +ilz +tVL +aPJ +dFV +ght +wrv +kTn +gMI +fHz +uCq +nGe +niO +wjs +giZ +trg +fih +uCw +sFg +tXS +ilB +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(159,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +pco +pco +ilz +swe +aPJ +gZz +osy +iEY +wrv +qaU +xmU +dVJ +nGe +gqO +xya +vmf +lMl +pAB +hQZ +vuC +tXS +ilB +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(160,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +pco +aPJ +xdB +aPJ +aPJ +xJc +wrv +dbQ +qtJ +wdN +giT +nsS +nGe +roq +ekw +gSc +cBI +ajd +ajd +ajd +ajd +ajd +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(161,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +hLO +hLO +hEJ +sUO +aPJ +nGe +ixb +oWd +qLF +dMl +nTC +dMl +oLl +itG +itG +rvT +uda +rvT +lYA +fdI +uMi +uMi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(162,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +hLO +lQX +mjk +aPJ +nGe +sUt +leb +jzv +jCr +xiA +wMx +oLl +rvT +rvT +rvT +sQs +sQs +hIq +sQs +uMi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(163,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +hLO +hLO +hLO +hLO +ndR +nkh +edR +nfn +pJe +sSb +cQT +kPn +uMi +uMi +uMi +uMi +uMi +uMi +uMi +uMi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(164,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +hLO +fUi +fUi +fUi +ndR +pLR +kMd +xfz +tNg +tNg +tNg +xfz +uMi +oca +oca +uMi +oca +oca +oca +uMi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(165,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(166,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(167,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(168,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(169,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(170,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(171,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(172,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(173,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(174,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(175,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(176,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(177,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(178,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(179,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(180,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(181,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(182,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(183,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(184,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(185,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(186,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(187,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(188,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(189,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(190,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(191,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(192,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(193,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(194,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(195,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(196,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(197,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(198,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(199,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(200,1,1) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} + (1,1,2) = {" -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNcZwwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUllUllUllUllUlrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlkkrkkrkkrlUlrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUllUllUllUllUllUllUllUllUllUllUllUllUllUllUllUllUlkkrhzhkkrlUllUllUllUllUllUllUllUllUllUllUllUlmXkrtTrtTrtTrtTrpEtXetXesoStXetXetXetXetXetXetXesoStXetXetXetXetXetXetXesoStXetXetXetXecBUidAidAidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrxNykkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrlUlidArtTidAlKqaThtXeubpubpubpubpubpubpubpubpubpubpsbrsbrsbrsbrsbrsbrsbrsbrsbrsbrsbrtXetXetXetXesoStXetXetXetXetXetXesoStXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlrtTqfidbVddXrtTqfidbVddXrtTqfidbVddXrtTqfidbVddXrtTxNyrtTqfidbVddXrtTqfidbVddXrtTqfidbVddXrtTlUlwReckUeoOyiZeoOeoOubpxZNxZNxZNxZNxZNxZNxZNxZNxZNttLttLttLttLttLttLttLsbrsbrsbrsbrsbrsbrfKIfKIcJcfKIfKIfKIfKIfKIfKIfKItXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrxNykkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrmXkuYwubpubpsLIubpubpubpxZNkJWdxXsgzvUsdxXfGAevvxRamfZuJVkkgxcqmfZmfZttLttLttLttLsbrsbrsbralZalZalZalZalZalZalZalZalZfKItXetXeiQnidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTxNyrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTmXkubpubpxZNgTAmJVmJVmJVmJVsvvdgTjSimycxCBxVpunsiyByeXaKqxgjrfarfarfarfarfarfattLsbrsbrsbralZwoEpIlimriJhdgOwlmyfxalZfKIfKItXetXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrxNykkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrmXkubpubpxZNbOdmvnfhwkTixRaqJJsRNkUyanFkUyvczanFxRarfatPSuzUrfarfarfarfarfarfattLttLttLttLalZxvOmCapPdjEEjunmJMcTsalZalZfKIfKIfKItXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTxNyrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTmXkubpubpxZNxMCxvlxbpwJHuLHajwejRyhRxZNgjEgjEukVgjExZNxZNxZNxZNxZNxZNxZNvmRkECttLwYNmNFdydalZaiBrridUdrkWrIZrIZrIZupralZfKIfKIfKIfKItXeiQnidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrxNykkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrmXkubpubpxZNncRjRhiSnmszncRkUyucRyhRxZNuIkkRSdVLgjExZNxZNaxmoPieVexZNxZNhLexLVlLHfRzbBrsRwfTYvKDgExjEotLzrrirrirrikvLalZalZalZalZfKItXesoStXetXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlUlrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTxNyrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTmXkubpxZNxZNncRnPCnPCnPCncRqwudCefcxxZNplElCSwaqolyxZNvXPxdiulidoftRVxZNsPXwjgqpnhjxxOYvrXalZekvrIZrIZmxPsrVtjjeEwffdaCooLNoLNalZfKIfKIfKIfKIeLHtXebADrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpFzkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrxNykkrqfijqfddXkkrqfijqfddXkkrqfijqfddXkkrmXkubpxZNsRurCNeujazdeujvvjcRnfmoqKdxZNmiSqzskxQtOkeXVsiwirGvWKirGkgaxZNjnJvYVgsgqsgptTfqUoYBtsGrIZrIZftDqcHqcHtNnmumnLqdKdhhDalZalZalZalZfKIfKItXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpFzrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTxNyrtTqfijqfddXrtTqfijqfddXrtTqfijqfddXrtTmXkubpxZNsHvbqneujeujeujbqnhHdxpOrmfxZNjjHiOwxScdSXxZNjdgnyQrSltKQowjxZNqXQqMEfzAcTVqEQpKvoYBkNLgabpIbiMSpIbrRlrIZvAJkaUkNUkNUfPElASjWealZalZfKIfKItXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpFzxBivsFiifxMkybaybabRkybaybayhdeLCdGxybaybabRkybaybacOCxMkybacOCybaybaybacOCybaxMkybaiidnggcbFunNubpxZNsHvbqnbqnbqnbqnbqnkUylsVnjExZNfGHwoDnlvgjExZNxZNjdglNglmExZNxZNqXQqMEyenblMbLZvJDoYBdMQaqWlJqfUhiOurIZrIZqkqeQkgnEwuOdKddKddKduJlalZfKIfKIfKItXetXelPfrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpdHKdHKdHKdHKdHKdHKdHKiQBiQBiQBiQBiQBiQBiQBubpubpubpubpubpubpubpubptONxHRlPglPglPglPglPglPglPglPglPglPglPglPglPglPglPglPglPglPglPgubpxZNpmKxRaxRaxRaxRaxRaxRabODxRaxZNgjEokDgjEgjExZNxZNpLsaOnuCKxZNxZNvHmmbuyenpVFwjgiVRalZbmlkNLpNefUhpNeoABrIZoxialZcDyavhcDycDycDycDyalZfKIfKIfKIfKIqaMrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTubpubpubpxZNtKrtKrtKrtKrtKrtKrtKraRoaRoaRoaRoaRoaRoaRokMTqjPxzDxovkZwtchnsbbwbnaplPglPgbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVbRVtuEoTooTooTokadoTooTovXUoTooxnryktaCrykrykmDSrykrykbiarykjmzjqGxcXcagkIRbbykXujAJoYBxtSujyrIZcmbrIZwVDtCcrjNhUQfEjigHfEjfEjkImpSdcdwkZnsClfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpxZNhmEdySmzCiKQjKgcWnoLpaRovgWhvTxOdmUisdSaRoesxbsOtrxubpsKaubpsKaubplPglPglPgbRVyfcmgKaAwebhyhWtUciRAmgKeffazjpAWpTSpUYnZkpUYnNLpUYpUYnZkpxDpvbnMkldzohNohNohNmdrvdWgFgmYWmkhmGdmGdmGdmGdmGdsNSmGdozAmOapDjanflAvaZCgZKgWioYBfAErsSwUnfUhyhvfUhiMSoABoScoAcneKoAcoAcegzndyarMoNpsClfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpxZNxZNxZNxZNsfMqoWopbopbopbinQerraRoxKBbVghvdpCcoiCaRotlmfVgoiztcurJXwWIfyBazHbRVbRVbRVbRVuuSvOyupNfxmkSWiIEfxmfxmfxmxOHpAWswNpvbxRaxRaxRauLvxRaxRaxRaxRaokXsgLxRaxRasIhsIhsIhxRasIhsIhsIhxRajXFxRasIhsIhsIhxRasIhsIhsIhxRaxRaurzwwfalZfoMpihwUniMSkovmxPmPpsPnorfoAcneKoAcjCdapiwJjbEfnmSsClfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpJOubpxZNvZzrqdkJPxZNfQWtNoliynGcvLTfEwhmZaRocwTxuDntXkrZoXIaRoxRacuWxRaxRaxRaxRakemxRapAWeURoTooxnoTooTooTooTooTooTooTooTooTooTooxnicGpvbuQttTFcyraoCaoCjDsgtPxRaunxxCzxRatXetXetXetXepSAtXetXetXetXetXetXetXetXetXepSAtXetXetXetXexRavGIjYuoYBijEpihwUnfUhkovxigxFoaqWtDWrIZqjiwnKwVJvyhwinalZfKIfKIfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpJOpJOubpxZNfTekUyhTuxZNisAtNolDQpzwezAnHIuEbaRodeDuIXmgekVZaVSaRofJCbHtpvbejnpfopvblgSpvbpAWlgSrPcrZZqpNokpqpNxsQqpNqpNcSdqpNqpNqpNuKynyZtxqqEmuRYhyjcbwiJLpUhgzexRaunxxCzbJMtXegYEgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdatxtXebJMvGIjYuoYBpRKpihwUnfUhgUpscYscYpKVbuMsZzgDLqSDxnrnVrhalcdwnmjnmjfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTidArtTrtTpJOpJOpJOubpxZNeZKhTZiKfxZNwEfxfuiUmtZswElazArCZaRobhbwPQkmIfcCgFSaRotwHbHtpvbpvbpvbeURtjbnmupAWiEvvgHxRaxRaoeMxRaxRaxRaxRaxRaxRaxRaxRaxRakqEjEcuQthyggvLcFiuTdxGrskJxRaunxxCzbJMtXerZLwJNwJNwJNwJNwJNwJNwJNrtTwJNwJNwJNwJNwJNwJNwJNrpEmsvxRavGIjYualZvfjkeUgablSZjFLjFLjFLlxKtbvfIWhTNwphtDWprrxckcdwpCPnmjfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUtXetXepJOpJOpFdpFdxZNxZNxZNgDTxZNxZNtKrtKrtKrhOitKrtKrtKraRoaRoaRoskOaRoaRoaRopvbbHtpvbeURoTodCcpAWsmtpAWlgSjEcxRavvMqNljryxRaqselrusSdkvzifLqOCdRlkqEjEcuQtdgEmDNuRYpzpfVAcnpqWFgyPiGAbJMtXerZLwJNwJNwJNwJNwJNwJNwJNrtTwJNwJNwJNwJNwJNwJNwJNrpEtXeogTpIAmfPrPqskPdNDoYipYeybzjFGjFGjFGohWgmKxAwwphivbxpqjyUarMrKpnmjfKIfKItXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXepJOpJOpJOpFdkLBkHmeskeGSbdzxwYeskeskesksQVhTPeskeskeskqcQeskcZYfMGaUpqrwqcQdNgiHhcYeaBypAWpAWpAWfogdcbdnYdMExRakfctIueTKiQSaSfdkSnkBwhxsBQshLeNGkqEjEcuQtnGOdBnbFXspWspWizpxRaunxxCzxRafdarZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXexRavGIaTnalZfztvBiiIrtlwxeXaiQaiQllqaiQjeVaiQmikxPHaIpoJpbEfsDInmjfKIfKIqaMrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEbAwpJOpJOpFdpFdpFdpFddVslGmfDdrvxkKPwAwiKsgekxRaeSJxRaxRaxRaxRagekjZljZlrARjZlfENpvbpvbpvbwiUdLupPqpAWeQQfaGvvVjkrxRaoKAlOpwpTxRaqVFjONwVjuMejBTsPRxRakqEjEcxRaxRaxRauQtuQtuQtxRaxRaokXsgLxRatXerZLwJNwJNwJNwJNobSobSobSobSobSobSobSwJNwJNwJNwJNrpEtXebJMvGIaTnalZbyLexGwNqnkvqjWhzWhzWnkvkHZyazlwUlwUgQAjBXalZwmakqYoeUoeUoeUqQRrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXepJOpFdrNbfPphuOpFddVsjaZxRaxRaeSJxRaxRaxRaxyofhPlwgxRUhUBrzqgekcNvjZlrARfawfENmMJdnRpvbgsfqpNcSdsjQtPhsVAaBcmFGxRaxRaqFVxRaxRavuulfhvuuvuuvuufarxRaejcjEcpvbscjbZfvjMovljqIbjdpvbjEcxCzbJMtXerZLwJNwJNwJNexIsKrwUasKrsKrsKrwUasKrjiVwJNwJNwJNrpEtXebJMvGIaTnalZgHgaEfkBewIWkFCdQUdobaaqnUIhIuqEpizsauZeephvpulgdBdaAOgLguYwuYwrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUtXepJOpFdkCzcaflwmpFddVsjaZxRabQHfhPvfDnHDxRajVhlNSjmWjmWjmWvvBgekbgPjZlrARqVvfENigEdcDpvbwiUpvbxRaxRaxRanlJxRaxRaxRaxWrkiSdIRfAjxhdtFGtFGtFGtFGupExRawfcjEcpvbweJiLhpWcqJKgBFpfopvbjEcxCzxHttXerZLwJNwJNwJNexIsKrxRaxRasIhxRaxRasKrjiVwJNwJNwJNrpEtXebJMvGIaTnalZcroxCAsNtcrohXjoroalZcroxCAoroalZcfihBqcficfiwyZtBxkaPgLgkkrrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXepJOpFdcpkxVQwWFpFddVsjaZxRauPcffpjmWjmWkXAjmWckmiTXmMgqKkeYfslnslnslnadOslnslnslnslnpvbkMYpvbxRafEAkOylrRwOdpXxxRaoZVeZVedtmdnmdnmdnmdncdPwYphhqxRarAXjEcpvbpvbpvbpvbpvbpvbpvbpvbjEcxCzrpltXeiQnobSobSwJNhGKsKrxRagmsfPlknoxRasKrjiVwJNwJNwJNrpEtXebJMvGIaTnalZwZolDlsNtauHmqPupIalZaTapzWszealZaeUpsHsBOcfigaGdusqjZgLgkkrrtTrtTidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidArtTrtTrtTrtTrtTrtTrtTidArlUtXesoSbADpJOpFdfHIudJkycmbkujvvMXxRadBbnfqsHDlfOxRarBTmZAeEZdmGqKkkZqslnlDSouBssxgrsrfpoLhslnpvbkMYpvbviLxFGxFGjTyjSIebtfDLqgCatWuQppAJvULvULqfCudrtdVtdVflQvGliMOvGlvGlvGlvGlvGlvGlvGlvGlmUqnjJbJMtXetXesKrsKrsKrsKrsKrkQawgDesynrWkQasKrjiVwJNwJNwJNrpEtXexRavGIaTnalZfBjpnVsNtojaojaojaalZrSArSArSAalZcOXgAisBOcfiqYNruPiaXubpubpubptXerHOtXesoStXetXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThnXqcBUrtTrtTrtTrtTidAidAtXetXetXefDTfDTpJOpFdtLYrcSnZfpFdjYxjaZxRatlxmZAwHkejhxRajZRmZAeEZdLKqKkuANslnwkluPjdMcjmIdrPhaVslnfiOhEEkQqxRavGXvGXvGXvGXlquxRasxglvIviJudnlzDylFukTacexByycbxRaxRaxRaxRaxRaxRaogCqtLqtLqtLogCqohogCxRafdagYElCTlCTlCTrbFsKrbJMaYWwBVcMYbJMsKrjiVwJNwJNwJNrpEmsvxRaurznoYvPjdyAgGdavovPjvPjvPjvPjalZalZalZalZcfigzOcficfipaZwRDtGSubpubpubpubpubpubpubpubpubpsKrsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAaThtXetXetXecBUidAidArlUtXetXetXefDTqwOfDTfDTpJOpFdrXhcafopdpFddVsfLxxRacONdaljsRqdnxRajjhnQzlubvaIqKkunFvybvOCdkCsxKuYXsxKgYrslnipjvVYxzJxRagvIgvIgvIgvIgvIxRawsHcFobTHudnylFylFukTacesCVwWYxRamopybRoeotThxRaleDekSuqJeMtfyggCGcdexRatXerZLwJNwJNwJNwJNlCTbJMnAgrrRoiibJMlCTwJNwJNwJNwJNrpEtXexRavGIaTnvPjmfKcEyjyWqBHfoSkVJvPjvxauGNmfriVJcBmofQcCxvDTvYYpWoiOjelLubpubpubpubpubpubpubpubpubpkDCjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXesoStXetXetXetXetXetXetXesoStXefDTfDTfDTanFfDTfDTpJOpFdujtcafiPkpFddVsjaZxRawSZxYWwPVwPVdHNwPVnCxjmWvbjwPVmPZurwqGwsHUfGKwLgsbJhGhslnipjcnregoftwftwftwftwftwftwftwoEDmPueMFamyaiAaiAxXOnulifytYFrRwpEvbqjjTnhHmxRaphionNwuimpUibiwCArLPbJMtXerZLwJNwJNwJNwJNwJNxRasIhsIhsIhxRawJNwJNwJNwJNwJNrpEtXebJMvGIsNNiVscGsrSjfXBamtfqywhdcQPtnXgFlgFlgFlfEYhjLdjFwZgwZggqVtbYjAdjAdjAdjAdjAdjAdjAdjAdjAdhwXsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXfENfENrqlfENfENpFdpFdpFdpFdpFdpFddVsjaZxRakyHedcoMGmEexRaqRVgkXlVrabjaIMecFslngINjsGcLIdgjuiQjnyslnipjcnrdWBftwjBbjBbjBbjBbjBbftwabsxgkeJSuaOoOiulXvRavDmdetyddjhmuLRnADmBApWbxRaeafcznkwfqdKcYpdollWrbJMtXerZLwJNwJNwJNwJNwJNvzJwJNwJNwJNvzJwJNwJNwJNwJNwJNrpEtXebJMvGIaTnvPjdHueVFcHgpYdeecdugtUFhhGtTUqsluTYwZgwSmdAEvxanhqrYzgzujAdjAdjAdjAdjAdjAdjAdjAdjAdhwXsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXaSXltrltrltrltrltrltrltrltrltrltrltrfENpMIhRSrFMfENolwdgCutvsiDhWmgekrJxlBqxRaxRapBQxRaxRaxRaaCEcDJaCEfUPaCExRaslnslnhWerlevySslnslnslnjConMjbwvftwjBbjBbjBbjBbjBbftwxgTgaYyjRxBynMIvcBidclzLjKUkhmxRahnTozjapugjQxRaxZXdArinbrEyrVMkibsVHbJMtXerZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXebJMvGIbuZcficficficfidmlcficficfigttxEIbRmcoEmegdRPeeeabBteQueacwpaIYaIYaIYjpFubpubpubpubpubpubpkDCjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXltrhWZkrIkrIesDrZlcGeqPLjShiyGiwifENvEOtrMcJbfaBliWliWcQasNVlGmvduhBZboSfDdfDdwEbfDdphafOGgHseHPeHPexYeHPtvrplzeHPbAxeHPbuChkqfsupSHxNkonCjDfftwjBbjBbjBbjBbjBbftwxmqncxmXachutVbvcBchulncmzNlykxRaxsrxWxfzCcqDxRaiaQxDCusQgynuVbkUjvgwxRatXerZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXebJMvGIaTngtziNpdIbsEjtApcFTbpRusSyihnEycURrWVeYUxuUgRnabBteQvGUrbgrbgrbgvxcnqquYwuYwuYwuYwubpubpsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXltraMpoRsoRsogHlrVqwAahfahfjGAxhrfENbsVkBurFMfENjZljZljZloDEskymnbtTSeskeskeskeskeskdkVkSSxcBrFvxgtaklcpOuYYqmssDzgHXxgtaPYxgtuYYxgthfuayjpZGftwjBbjBbjBbjBbjBbftwxRaxRaxRaxRauHGvcBxRaxRaxRaxRaxRajYhpttwukphsxRatFutFutFutFutFutFutFuxRafdarZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXexRavGIaTncfipCVwWtxoBdbycfiatwkptofykFQkiZcoEgGOnrmgRnabBteQiXArfIlekbRhfGLnqquYwcyUuYwuYwubpubptLmjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXbXNbXNvDvvDvbXNbXNbXNuoMjDWiGffIbkfAkfAkfAkfAkfAkfAkfAhwevLjtMBxZNxZNxZNxZNxZNxZNxZNbwvcdHriqcdHxZNxZNxZNxZNxZNxZNxZNomahTAnqEbwvbwvcdHcaeczbftwjBbjBbjBbjBbjBbftwsGCvcStJxxRadwGdPExRaakpgIZsuHxRaxZNxZNxZNxZNxZNfiWcQqmNiilsdBvvSpsqQxRatXerZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEmsvxRaabMnoYwFywFybjIwFyrkZwFybzHlmMhGtxEIbRmcoEmegnZbelNabBteQaREosmrhbrhbvbRnqquYwuYwuYwuYwubpubpsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXbXNdRDfUJoRlwNVroCkoglVeawcrdMvCBhjAguVybDqNxxZbqdckfAfPLjZkpZLxZNfKOeUcaBLwVOkIyivMkVfklBcaJgHpxZNmGLxTqqoRxTqnqHxZNxZNmbaxZNxZNkJIgjdcIzdtEftwftwuBYuBYuBYftwftwkRJsYUbUYsrYntWjbrhkwjvAiTakxCxRaxZNvdvczNoJHxZNqlrtEGvfbnIkvfbgoDoqCbJMtXerZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXexRauOVmHetEXbqNpiMcKylZVaBPeTgucypGjnEycURempeYUxuUgRntnXfEYuOwsKxepfepfepfeATuYwuYwuYwuYwubpubpjZIjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkdQlQMlxqvWRsGFcNOxvTddKvDvlkMogHkiHmfMrLsiYZsxInrtihhsxHkfAdGzjZkpZLxHtovIwPVwPVwPVtcEkxZlzzeXeciinltxZNpALwoSowIxgDlqXxZNivucBzaukxZNmRPlzzpvHmkQcRqcQhmqjumTdDNgQncRqxRaxRaxRaxRagDffjVxRaxRaxRaxRaxRaxZNkBrfNXhMCxZNwdhesgvCRuQXfocekVhZNbJMtXerZLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrpEtXebJMuOVmEttEXkMnjFovsJcNpaBPbwepXjdVnkFQkiZnEygGOnrmdJZiQeoElmNGjYshXPraPraPeATjdWjdWjdWjdWuaWubpyiXuYwehWehWuTfwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfucdDalxqlCHlCHcfUgADfEQvDvkUsobNnzUdGdrLsjHerfsbebbvnbfSlZJeskxhzpZvoRXhyaiTqiYIwVfnIowxdlzzeXeciipRMxZNrDfrKimTIsaToDUocuraprbUpgKxZNpKylzzkEBdQYaYRlfFnucxXdnucqzQaYRafqrFGuPXtVxkBkanunnRfROljVeYXfBuxZNkWIvRliRIxZNpfnnkWlOOiSYcioqMHgiLxRatXerZLrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrpEtXebJMoCWfINdiifejoREvWxjvKcNgwjiwhvvAMnlAvohvohnYOnrNvNqndqqeKdUWoKqtacqnxjjjdBVmcPmcPmcPmcPmcPmcPmcPmcPmcPmcPqQGwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlLZpJvlxqdETkrnqvXiYTqqjvDvlkMogHkiHqNZoUlpsyiBBxGgwNXbUckfAghsjZkpZLxZNvDaiPjwPVgDwkTWivMkVfeXeciiszfxZNamfacRshnuGFggHxZNlMXbmrdsExZNizjlzzaxCcqTrVOokYskWskWkMJwuniaTfGvwszfhVfPNiKyfcdfPNfPNqKUrJDhyCxZNxZNnvZxZNxZNoOnqyDoOntFuoOnjbeoOnxRawRecBUidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAaThwRexRauOVmHetEXvBBhSfvsJcNpaBPgfSgfSbUOvBemPAmPAnBHbxDuOSwgHrhZqNifNJxIYuCWuCWeATokfokfokfokfkjpubpyiXuYwjevjevtkTwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXbXNpFgqQYcowqqjfbNbCujrXnxukiHeiWrLseZIdEstWglMGkXKkfAfPLjZkpZLxZNxZNxZNxxvxZNxZNxZNbwvwbZkYzwvAxZNteegRzadBgRzihlxZNttDjcAroSxZNcUdmdZnbJidQxRaxRauQtuQtuQtbqoxRacRqwbkxCQkebiJUlJFngGxPbwVdhRcurdmazlGZdWJfyckxZkwmuKonwecZExyhagKkwmjTcwRetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXewReogTuOVmHetEXbZTxsSwKKvJAaBPgfSrfZpmopmovxanhqbBvtXmkMPgfoarewBRsKxepfepfepfeATuYwuYwuYwuYwubpubpjZIjiVwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXbXNbXNvDvvDvbXNbXNbXNnwHdYigUfgVskfAkfAcEtkfAkfAkfAkfAnCIvQJlEzghJnoarIDstaaMLvTQwDCbwvcdHriqcdHxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNbwvcdHcaeczbxRartTrpEmMxqiKiOPrRfxRaxRaxRaxRasjuxRaxRahcFxKjnGonJJnJJkTbtRgsZmvTyqDrklZfnZsrfukqglVwMTxRavawgYEgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdlCZwRexRacgeoypwFywFywFywFywFywFycficfispghInabBteQbBvvKUfmPjllnEyooucOZlXplXpquPdgKuYwuYwuYwuYwubpubpsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXltraMprRVrRVogHlrVhWZkrIjfmiIJdLMltraAJlXkjfHltreaOuSbnCIkPVjAmdmWdmWdmWdmWdmWccQdmWkuJfFOxbZcijfFOpPLpyqnZdwoRwkNqmswoRfFOpyqnZdfFOarqsmLsWjxRartTrtTrtTrtTadZfwuxRasEfaUXhUXoHNleLxRatinimnkebgBNgBNbiKmkupIKxRarcOfAhkmnqAfrwoleErtTbJMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXebJMuOVmHexZNjYcwBPkidcpQcpQcpQcfikGCkGCabBteQbBvtMrfDtpjtrdKrXurfIlekbRhfGLdgKuYwuYwuYwuYwubpubptLmjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXltrqwAahfahfnxuwvebrhfeJrWnvdLfkNpSqhrToZzroNltriJQrdjlZQfPTnZabzbbzbbzbuTRoDOtXYoBhchckqyxDKpnEpnEiImpnEqTLbtspnEgZZfcNprPpnEeObezLshGpZHdSUxRartTrtTrtTdYlrSWwvpxRaxRaxRaxRaqXBtwZxRanZAstBfNrkaevWZxRakQExRaxRaxICfAhtRGqAfrwoleErtTbJMtXerZLrtTrtTrtTrtTrtTtyDxRatXexRatdqrtTrtTrtTrtTrtTrpEtXebJMeonkGHpKKiYEpwzkidcpQcpQcpQcfidVRdVRabBteQeRElXplXpkZCbUOjEhnwBnwBnwBpcGdgKuYwcyUuYwuYwubpubpsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXaSXltrltrltrltrltrltrltrltrltrltrltrltrltrltrltrltrhlabvwnCIpkhuoIrgSsQxstabgGghJeqtunmghJghJloOloOloOnVuloOloOloOloOxZNxZNbjqxZNezPvDCxZNxZNvFqxRaxRaxRaxRaxRagqKxRaxRasEfvyyuBDnGImBjxRaaWraWrbcuxOgxOgeAIpgblnjxRahpXfDooRuvWInTEkLDoUibJMtXerZLrtTrtTrtTrtTrtTrtTrtTtXertTrtTrtTrtTrtTrtTrtTrpEtXebJMatpmHexZNpgbuHikidcpQcpQcpQcfidVRdVRabBteQfXmxEIxEIkiZbbXxBhjEIaIYaIYaIYbHsubpubpubpubpubpubpkDCjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXaSXfvbltroRwhdJnCIaBChMpohuhkatUHdnzghJpwHtTXjanaBCloOoNQoFqdgRdCrckWiellvuxZNuhEcIefoqgSfazkxpJxZNbxbgPEuAChEQjcEgPEeKigPExRaxRaxRaxRariPxRaxRagxilKylTjfRQpevhGfwzHrstcKLcKLcKLcKLcKLsCTcKLcKLxRafdarZLrtTrtTrtTrtTrtTrtTrpEtXerZLrtTrtTrtTrtTrtTrtTrpEtXexRauOVmEtxZNvTJjDjkidcpQcpQcpQcficficfitnXsQYbuVjfikYgjwhesdoHtrnxjAdjAdjAdjAdjAdjAdjAdjAdjAdhwXsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXexsftXetXetXetXetXetXetXexsftXeaSXaSXaSXaSXaSXltrdLedLedLedLedLedLedLedLeeWudLepwHtTXjannaGloOkHdqDiwEykRbtmAoVVsNWxZNcRBepTgJmssJuoLaJLxZNpsWuyfuyfuyftNAgPEeKigPEvFRgPEgPEgPEsThgPEweMflGvyamcNbzPoGSijhhXpouZcKLfCJtodhZQdLksFSocYipabJMtXerZLrtTrtTrtTrtTrtTrtTrpErtTrZLwJNwJNwJNwJNwJNwJNrpEmsvxRanaJoypjLtjLtjLtjLtjLtjLtjLtjLtjLtjLtjLtjLtewwhkZxEIgIzxEIxQLgzujAdjAdjAdjAdjAdjAdjAdjAdjAdhwXsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNnopwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdatxtXetXetXevlWgSdgSdgSdgSdrtTrtTaSXaSXaSXaSXmpedLeaQpaQpaQpaQpaQpdLepCqdLepwHtTXrHYuHwloOnwmrCsmynoaYlHfycYcbOxZNbwnpzrqzwfbCxFnbNuvGkuKkqNrqNrqNrqmBqNrbYCmtRcTjmtRcGHmtRxfdgPEweMxRaxRaxRaowluAgxRamsExRacKLugWixQixQbDXmgErIxtfUbJMtXerZLrtTrtTrtTrtTrtTrtTrpEtXerZLwJNwJNwJNwJNwJNwJNrpEtXexRauOVmHejLtsPosiFbIyhXZbkjbkjbkjbkjbkjbkjjLtsdtnEynEypjgtlMcKbiOjkutubpubpubpubpubpubpubpubpubpkDCjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxnXqvlWrtTrtTrtTrtTrtTrtTrtTrtTrtTaSXaSXmpedLeoQgvjPjxYjxYjYBdLegrkdLepwHtTXaTmrbfloOmYaquvjszbIPmqdpHtifHxZNjcykDjrbEsyQdgrrCXxZNgUMweMxRaxRaxIVxRaxRaxRaweMgPEeKiptMpSFobBweMllsiimahxvwEsmHkoeoAMpzCcKLixQtdIbjebDXtJvsAfejpbJMtXerZLrtTrtTrtTrtTrtTrtTrtTcxXrtTwJNwJNwJNwJNwJNwJNrpEtXebJMovBxDTdWgsElvSniDosjMtFfbkjbkjbkjbkjbkjjLtsdtffvwQhkeQxoyseZtGSubpubpubpubpxNeubpubpubpubpsKrsKrjiVwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmpedLeygPvjPpdZygPtTDqcmqNVdLepwHtTXmezweXloOmJyovTxeQaHLreshwVdzOxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxOgrJCwnhupMxTDxRacxtgPEeKiwtMhaPujEweMrlygoAtDJqKxwPtuGMxOgxOgcKLkressqbDXbDXtJvcLfuRoxRafdarZLrtTrtTrtTrtTrtTrtTrtTxRartTwJNwJNwJNwJNwJNwJNrpEtXebJMuOVvsLjLtrKDmzkvUhsjMtqvbkjbkjbkjbkjbkjjLtihxgCMgCMtYEsJQxpPniNubpubpubpsKrsKrsKrgpxsKrsKrsKrmFwwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmpedLegalvjPgbkgaltTDrJLpQYdLegxmqyKnCIaHMaHMkKthQXpdDtqrnRydmaaHMdPlrGSnaTfMKdPlaLAdgxcLvpwhxZNcpSyewhlCqVcxTDxRacxtgPEeKiwtMegrxZcweMgcFgoAdrhpVEwtUxLzkWdbXCcKLlLWvnttdIbDXtJvixQjkUbJMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEtXexRaatphGNjLtahypKamxohXZbkjbkjbkjbkjbkjbkjjLtcficficfiihxeCPnOCaAOgLgkkrrtTrtTgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmpedLegalvjPgbkgalbjoehspzedLepwHoDhnCIaHMcCTmJtoeQnRkoKtlyrllXxvVdPlvoAsLLvyrdPlvWrbVwszkszktkgktraKyxCGhYfnKdxRacaslwDeKigDoyeijAYweMxRaiNdxRaxRaxRaxRaxRaxRacKLcKLcKLcKLouehaAsvlqyPbJMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEmsvxRacgeucojLtjLtjLtjLtjLtjLtjLtjLtjLtjLtwcbwcbwcbwcbwcbcfifwgnXakaPgLgkkrrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAmpedLedLeoQggbkgaliibkdgrcjdLepwHtTXagGaHMvnKuRRddWvnKwDGwBgvoTmYTrjzuGubldrrxdPlbJBwVeqEofKTxZNtFCufmoIvsfrcYVxRauGJgPEeKigPEgPEgPEgPEgPEjIlweMxcbcKLlexdKcnRVmAAksEpwtsobnKBwyVixQtRrbJMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEtXexRauOVegbtgqydgnvyrXKfYSrXKrltcuDrWikBDhOvjArvFtrUEwcbcfimGPdBduYlgLguYwrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXempempedLedLedLegalatqbGSwfVdLecghtTXagGaHMhGjoZYmyrdmefYExZOllXdBPdPlsUIfHiqbZdPlxZNxZNxZNxZNxZNvWnfEGgqLivCcspxRabtPcxydqzmtRdpRmtRmtRjjJxbYcKLcKLcKLuAZrmorpxbDXbDXbDXbDXbDXtJvkdhnbgxRafdarZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEtXebJMisxkhAkhAhVosgwpbpsgwsUbbUbsgwoqvtwljwNjiIlOTdUFwcbwcbiHnepikIqkIqqQRtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXebADmpempedLedLegalpPxpeLfUOdLepwHtTXagGaHMvSOpWlnROvSOehIuwCllXjBQdPlbckgsXnDldPlcyPvONqHzoTtghJwUSjXsoTIsbTcspxRauHZuZuqbEnyYmIOnyYnyYrrsuHZcKLyfwbDXoTmnKBgGykCykCykCykCykCyfTtxAqoCqbJMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEtXebJMqOyvTsvTslBysDGxtUaoHoyRrSnaoHuOVmHehOvxUCxMpnZLnSznSznSznSznSzeybgYUtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXebAwmpempedLedLevALlXQbAsdLepwHtTXagGaHManglmTofbxiYfdVyfSqUeyiqdPldPlmDEdPldPllxbpODstastaghJxRampBxRaxRaxRaxRafOtlmgsqVsqVuQEsqVweMpVvkNvcKLcKLcKLxNInIfwdpuDcpDyaEaeNOiiXaIecjkmWvwlRtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNrpEmsvxRaxRaaoHaoHlcFiMgfVktaooearIweSquOVmHehOvfLbaywjlKaNMaVnugKikNghvuYwfucrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdatxtXetXempempedLedLetihdLedLepwHtTXtMLaHMjHuhbDnhtutCaHMaHMaHMaHMnCIfEEoHuxiDxiDxiDxiDxiDxiDxiDkcpjOqxiDjhdqNrqNrvLtxZvsqVdtvhfBkyCweMxZvtyXqhFnWUcKLcKLcKLcKLcKLcKLcKLcKLacNbdavufsnHbJMtXeiQnidAidAidAidAidAidAidAidAidAobSobSobSobSobSobSrlUtXetXebJMaoHaoHxZNxZNxZNxZNxZNxZNmlHatpmHehOvrNXxMpsbVjCAvFrvKIlpktCDuYwfucrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXempempedLedLedLedLepwHtTXghJaHMaHMaHMaHMaHMaHMlNZuHBxjQghJtTXwebkjckjccoBkjckjckjckjcwOIaeckjconXmOqmOqmOqdZusqVrUWwoCxYFweMxZvuHZaQtcSsweMiDBpfZfZimgWnxMvhjcKLcKLmahcKLcKLxRatXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXeogTaoHaoHxZNaDMwgmwgmiXzxZNlaVatpmHehOvneCiVQaGcaNMszNugKlgWghvuYwfucrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXempempedLedLepqQpwHwwGjhdxiDxiDxiDxiDxiDxiDxiDxiDxiDjhdhGDstNxZNviimcwexsxRaxRaxRapgIxRasqVsqVsqVsqVsqVsqVsqVgnrsVtqrUweMxZvuHZfeixJlweMtiZjAYjAYhCSgPEgPEweMvwaeKigPEemExRatXetXetXeprXtXehFNtXetXetXeprXtXetXetXetXetXeprXtXetXetXetXebJMvemvemxZNiKbwgmritvwixZNrqWldnoypngangangangaqakxWTxWTxWTxWTeFOxVJtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXempempempedLeckLaLQffNaLQaLQaLQaLQaLQaLQaLQaLQaLQffNaLQnpfxZNcJpfVgdNatcurWOjulkzgcXkkBckBckBciCSrCyatJtEFatJdAYwQaweMjSMsgGnyYnyYisinyYnyYnyYnyYnyYnyYrNHnyYaVIruIgeFxRaxRajXFxRaxRaowlowlxRaowlxZtxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNwgmpJmwgmcDBxZNaoHslHxslcACbMCqBVtuRngahEeiIpdPqdeBeFOeFOqaMrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXempempedLenCInCInCIxogcsXfFnuMulqBnPirgSwWouApghJpjLdbjxZNvdSwLubgDubpsKaubpsASubpkBckBckBcbqJfmDwhjdmQxIMdUQfrhweMiGVmfsmtRmtRcTjmtRmtRmtRmtRmtRmtRmzVmtRbwgfbaqNrqNrqNrqNrvVbxRafkfrtTrtTqAflrLmFRxZNtaqtyIoFsxZNszWuZhxZNszWuZhxZNszWuZhxZNiKbdVGykIpJmxZNctBiSKrDHnarhDNpXelAZngawsyaHgkQdeFOeFOeFOtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXexsfmpempetQAtQAnCInCInCInCInCInCInCInCInCInCInCInCInCIxZNqDaxlbbKydVTtUmftSatRqWnxZCkBckBcuHXbhAeqsehBcBGsdduHXwmywmywmywmywmywmywmywmywmywmywmywmywmygPEvyKcSjmOqmOqmOqtduwEuxlHteAqaevTBmtIazUrsGxZNeXywigxooxZNtUCdojxZNtUCdojxZNtUCdojxZNrNGsIhsIhxZNxZNaoHatpmHengangangangangagyYrqWeFOeFOeFOtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXebADtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAtQAubpubpubpubpubpubpubpubpdOBoFIkBckBctottottotkBctottottotlAElAElAElAElAElAElAElAElAElAElAElAEwmyweMweMkChweMweMweMpVvkNvrqWrqWxZNxZNrGIwYFxZNxZNkiwbrqeSsxZNmbhxFKxZNvlbrSpxZNuzIlHjxZNeoibJJladxZNbHJaoHuOVmHerqWvgmoXLrByitAihceFOeFOeFOtXetXevlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkfTveAShkvaVLaVLaVLfMtaVLaVLxXffMtqSmaVLaVLdehaVLaVLqUAaVLaVLdehaVLaVLaVLdehaVLaVLaVLaVfuYwuYwhwElAEwmyaaGupqfdsdYdsuOweMinliBNsHGeCXxZNgOxsydtHZcLlvxqgLIjWodcUizikYoiwkbDUkYoiwkrpvkYoqHqeblqFDwPVwPVxZNbHJaoHuOVmHegyYthlxyOfLWthleFOeFOeFOtXetXevlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkkkrpfcldardYhRQvvwldarjFhRQvvwldarjFhRQvvwldarjFhRQoFIhRQvvwldarjFhRQvvwldarjFhRQvvwldarjFhRQhwElAEwmyffulQPtkwyeLlAUweMinliBNpOJexjxZNdiPjfFtlWcJajdYdaKfBTaJdtoCkHFhgzkHFkHFhgzkHFkHFhgzurRiBThLMxZNxZNwXKaoHuOVmHerqWdPqeFOeFOeFOeFOeFOtXetXevlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtToFIrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTmXklAEwmyswBhwSjrQrsbaqzweMinliBNlgNfBlxZNxZNuTwbfphaJxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNwXKdDAqRNmNrsTskKReFOeFOeFOtXexsftXetXevlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkroFIkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkrmXklAEwmyswBtpfguNkmEbVPweMinliBNjmmtODtODxZNxZNxZNxZNxZNcxrcxrcxraSuxORqRNqRNqRNulMqRNqRNqRNqRNqahvSJvSJqRNsTskYhvyFkKRkKReFOeFOtXetXevlWrtTgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtToFIrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTmXklAEwmywmywmymxAwmywmyweMinlvTZcmhcmhcmhcmhcmhrwbcmhcmhcmhcmhcmhcmhxslbWfsgwsgwgkisgwsgwsgwsgwkhAkhAkhAsgwsgwvyFkKRkKReFOeFOeFOtXegSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkroFIkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkrmXklAElAElAEojhkMbkJXlAEweMoMidfldfldfldfldfldfldfldfldfldfldfldfldfljhhgxMaoHkKRkKRkKRiLJuibfvMiRuiRuiRuuibbDKpstkKReFOeFOtXetXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNaYewJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtToFIrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTmXklAElAElAEcXEkMbxPmlAEweMnxqscBnxqiRupstbDKscBiRuiRuuibuxgfvMiRuuxguxguibkKRkKReFOkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKReFOtXetXegYEgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkkkrvvwwiOrjFkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkroFIkkrvvwldarjFkkrvvwldarjFkkrvvwldarjFkkrmXklAElAElAEvudyjKsZZlAEwmykKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKRkKReFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOtXegSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtToFIrtTvvwldarjFrtTvvwldarjFrtTvvwldarjFrtTmXkrtTlAElAElAEbualAElAElAEeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOeFOmzptXetXexsftXetXetXetXetXetXetXexsftXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkkkrvvwrtYrjFkkrvvwrtYrjFkkrvvwrtYrjFkkrvvwrtYrjFkkroFIkkrvvwrtYrjFkkrvvwrtYrjFkkrvvwrtYrjFkkrmXkrtTrpEtXetXevDNtXexsftXetXetXetXetXetXetXexsftXetXetXetXetXetXetXexsftXetXetXetXetXevlWgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTbCkrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTkkrrtTmXkrtTrtTatxtXetXetXevlWgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkkkrgpdkkrmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkmXkrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpFzkkrkkrkkrpFzrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpFzpFzpFzpFzpFzrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgClwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNruBwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNqEjwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(2,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(3,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(4,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(5,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(6,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(7,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(8,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(9,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(10,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(11,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(12,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(13,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(14,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(15,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(16,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(17,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(18,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(19,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(20,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wOv +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(21,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +aSX +aSX +aSX +aSX +aSX +aSX +kdQ +fuc +lLZ +aSX +aSX +aSX +aSX +aSX +aSX +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(22,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aSX +aSX +aSX +aSX +aSX +aSX +lQM +dDa +pJv +aSX +aSX +aSX +aSX +aSX +aSX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(23,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +aSX +ltr +ltr +ltr +bXN +bXN +lxq +lxq +lxq +bXN +bXN +ltr +ltr +ltr +aSX +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(24,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +aSX +ltr +hWZ +aMp +bXN +dRD +vWR +lCH +dET +pFg +bXN +aMp +qwA +ltr +aSX +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(25,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +tXe +aSX +ltr +krI +oRs +vDv +fUJ +sGF +lCH +krn +qQY +vDv +rRV +mDb +ltr +aSX +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(26,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +nXq +tXe +tXe +aSX +ltr +krI +oRs +vDv +oRl +cNO +cfU +qvX +cow +vDv +rRV +ahf +ltr +aSX +tXe +tXe +nXq +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(27,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +tXe +aSX +ltr +esD +ogH +bXN +wNV +xvT +gAD +iYT +qqj +bXN +ogH +nxu +ltr +aSX +tXe +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(28,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +aSX +ltr +rZl +lrV +bXN +roC +ddK +fEQ +qqj +fbN +bXN +lrV +wve +ltr +aSX +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(29,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aSX +ltr +cGe +qwA +bXN +kog +vDv +vDv +vDv +bCu +bXN +hWZ +brh +ltr +aSX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(30,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aSX +ltr +qPL +ahf +uoM +lVe +lkM +kUs +lkM +jrX +nwH +krI +feJ +ltr +aSX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(31,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +soS +aSX +ltr +jSh +ahf +jDW +awc +ogH +obN +ogH +nxu +dYi +jfm +rWn +ltr +aSX +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(32,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +aSX +ltr +iyG +jGA +iGf +rdM +kiH +nzU +kiH +kiH +gUf +iIJ +vdL +ltr +aSX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(33,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fDT +aSX +ltr +iwi +xhr +fIb +vCB +mfM +dGd +qNZ +eiW +gVs +dLM +fkN +ltr +aSX +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(34,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +fDT +fEN +fEN +fEN +fEN +kfA +hjA +rLs +rLs +oUl +rLs +kfA +ltr +pSq +ltr +aSX +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(35,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +tXe +fDT +fDT +fEN +pMI +vEO +bsV +kfA +guV +iYZ +jHe +psy +eZI +kfA +aAJ +hrT +ltr +aSX +aSX +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(36,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +tXe +tXe +qwO +anF +rql +hRS +trM +kBu +kfA +ybD +sxI +rfs +iBB +dEs +cEt +lXk +oZz +ltr +aSX +aSX +aSX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(37,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +rpE +rlU +tXe +soS +fDT +fDT +fDT +fEN +rFM +cJb +rFM +kfA +qNx +nrt +beb +xGg +tWg +kfA +jfH +roN +ltr +fvb +aSX +aSX +aSX +rtT +rtT +rtT +rtT +rpE +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(38,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +tXe +bAw +tXe +tXe +tXe +bAD +fDT +fDT +fDT +fEN +fEN +faB +fEN +kfA +xZb +ihh +bvn +wNX +lMG +kfA +ltr +ltr +ltr +ltr +ltr +aSX +aSX +rtT +rtT +rtT +idA +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(39,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +pJO +pJO +pJO +pJO +pJO +pJO +pJO +pJO +pFd +olw +liW +jZl +kfA +qdc +sxH +bfS +bUc +kXK +kfA +eaO +iJQ +hla +oRw +dLe +mpe +mpe +mpe +mpe +mpe +mpe +mpe +bAD +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(40,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +tXe +pJO +pJO +pFd +pFd +pFd +pFd +pFd +pFd +pFd +pFd +dgC +liW +jZl +kfA +kfA +kfA +lZJ +kfA +kfA +kfA +uSb +rdj +bvw +hdJ +dLe +dLe +dLe +dLe +dLe +dLe +dLe +mpe +mpe +bAw +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(41,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pJO +pJO +pFd +rNb +kCz +cpk +fHI +tLY +rXh +ujt +pFd +utv +cQa +jZl +hwe +fPL +dGz +esk +ghs +fPL +nCI +nCI +lZQ +nCI +nCI +dLe +aQp +oQg +ygP +gal +gal +dLe +dLe +mpe +mpe +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(42,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pJO +pJO +pJO +pFd +fPp +caf +xVQ +udJ +rcS +caf +caf +pFd +siD +sNV +oDE +vLj +jZk +jZk +xhz +jZk +jZk +vQJ +kPV +fPT +pkh +aBC +dLe +aQp +vjP +vjP +vjP +vjP +oQg +dLe +dLe +mpe +mpe +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(43,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pJO +pJO +pFd +pFd +pFd +huO +lwm +wWF +kyc +nZf +opd +iPk +pFd +hWm +lGm +sky +tMB +pZL +pZL +pZv +pZL +pZL +lEz +jAm +nZa +uoI +hMp +dLe +aQp +jxY +pdZ +gbk +gbk +gbk +dLe +dLe +dLe +mpe +mpe +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(44,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pJO +pJO +pJO +pFd +kLB +pFd +pFd +pFd +pFd +mbk +pFd +pFd +pFd +pFd +gek +vdu +mnb +ezw +ezw +qcZ +oRX +ezw +ezw +ghJ +dmW +bzb +rgS +ohu +dLe +aQp +jxY +ygP +gal +gal +gal +gal +gal +dLe +dLe +mpe +mpe +tXe +tXe +atx +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(45,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aOq +aOq +aOq +aOq +uDW +kHm +dVs +dVs +dVs +dVs +ujv +jYx +dVs +dVs +dVs +rJx +hBZ +tTS +ezw +fKO +ovI +hya +vDa +ezw +noa +dmW +bzb +sQx +hka +dLe +aQp +jYB +tTD +tTD +bjo +iib +atq +pPx +vAL +dLe +dLe +mpe +mpe +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(46,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +aOq +aOq +uDW +uDW +uDW +uDW +esk +lGm +jaZ +jaZ +jaZ +vMX +jaZ +fLx +jaZ +jaZ +lBq +boS +esk +ezw +eUc +gNA +iTq +iPj +ezw +rID +dmW +bzb +sta +tUH +dLe +dLe +dLe +qcm +rJL +ehs +kdg +bGS +peL +lXQ +tih +dLe +dLe +mpe +mpe +xsf +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(47,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aOq +aOq +uDW +vZz +fTe +eZK +uDW +eGS +fDd +nsv +nsv +nsv +nsv +nsv +nsv +nsv +nsv +nsv +fDd +esk +ezw +aBL +gNA +iYI +gNA +xxv +sta +dmW +uTR +bgG +dnz +eWu +pCq +grk +qNV +pQY +pze +rcj +wfV +fUO +bAs +dLe +dLe +dLe +mpe +mpe +mpe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(48,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aOq +aOq +uDW +rqd +kUy +hTZ +gDT +bdz +rvx +nsv +bQH +uPc +dBb +tlx +cON +wSZ +kyH +nsv +fDd +esk +ezw +wVO +gNA +wVf +gDw +ezw +aML +dmW +oDO +ghJ +ghJ +dLe +dLe +dLe +dLe +dLe +dLe +dLe +dLe +dLe +dLe +dLe +dLe +pqQ +dLe +dLe +mpe +bAD +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(49,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aOq +aOq +aOq +uDW +kJP +hTu +iKf +uDW +xwY +kKP +exi +fhP +ffp +nfq +mZA +dal +wUi +edc +pBQ +wEb +esk +ezw +kIy +tcE +nIo +kTW +ezw +vTQ +ccQ +tXY +eqt +pwH +pwH +pwH +pwH +pwH +gxm +pwH +pwH +cgh +pwH +pwH +pwH +pwH +pwH +ckL +nCI +tQA +tQA +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(50,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aOq +uDW +uDW +uDW +uDW +uDW +uDW +uDW +esk +wAw +nsv +vfD +cKS +sHD +rNm +jsR +rLt +oMG +nsv +fDd +esk +ezw +ivM +iZP +wxd +ivM +ezw +wDC +dmW +oBh +unm +tTX +tTX +tTX +tTX +tTX +qyK +oDh +tTX +tTX +tTX +tTX +tTX +tTX +wwG +aLQ +nCI +tQA +tQA +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(51,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +hmE +sfM +fQW +isA +wEf +tKr +esk +iKs +nsv +nHD +cKS +lfO +ejh +qdn +rLt +mEe +nsv +pha +dkV +bwv +kVf +lzz +lzz +kVf +bwv +bwv +kuJ +chc +ghJ +jan +jan +rHY +aTm +mez +nCI +nCI +agG +agG +agG +agG +tML +ghJ +jhd +ffN +nCI +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(52,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +dyS +qoW +tNo +tNo +xfu +tKr +esk +gek +nsv +nsv +kXA +nsv +nsv +nsv +dHN +nsv +nsv +fOG +kSS +cdH +klB +eXe +eXe +eXe +wbZ +cdH +fFO +kqy +ghJ +aBC +naG +uHw +rbf +weX +aHM +aHM +aHM +aHM +aHM +aHM +aHM +aHM +xiD +aLQ +xog +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(53,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +mzC +opb +liy +lDQ +iUm +tKr +sQV +kJa +xyo +jVh +jmW +rBT +jZR +jjh +sSB +qRV +aCE +gHs +xcB +riq +caJ +cii +cii +cii +kYz +riq +xbZ +xDK +loO +loO +loO +loO +loO +loO +aHM +cCT +vnK +hGj +vSO +ang +jHu +aHM +xiD +aLQ +csX +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(54,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +iKQ +opb +nGc +pzw +tZs +hOi +hTP +eSJ +eeW +lNS +ckm +ktg +ktg +nQz +hmD +gkX +cDJ +eHP +rFv +cdH +gHp +nlt +pRM +szf +wvA +cdH +cij +pnE +loO +oNQ +kHd +nwm +mYa +mJy +kKt +mJt +uRR +oZY +pWl +lmT +hbD +aHM +xiD +aLQ +fFn +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(55,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +jKg +opb +vLT +ezA +wEl +tKr +esk +kJa +lwg +jmW +iTX +eEZ +eEZ +lub +jmW +lVr +aCE +eHP +xgt +kXN +kXN +kXN +kXN +kXN +kXN +kXN +fFO +pnE +loO +oFq +qDi +rCs +quv +ovT +hQX +oeQ +ddW +myr +nRO +ofb +nht +aHM +xiD +aLQ +uMu +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +ruB +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(56,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +cWn +inQ +fEw +nHI +azA +tKr +esk +kJa +xRU +jmW +mMg +dmG +dLK +vaI +dnf +abj +fUP +exY +akl +kXN +mGL +pAL +rDf +amf +tee +kXN +pPL +iIm +nVu +dgR +wEy +myn +jsz +xeQ +pdD +nRk +vnK +dme +vSO +xiY +utC +aHM +xiD +aLQ +lqB +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(57,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +dHK +tKr +oLp +err +hmZ +uEb +rCZ +tKr +esk +kJa +hUB +jmW +qKk +qKk +qKk +qKk +sSB +aIM +aCE +eHP +cpO +kXN +xTq +woS +rKi +acR +gRz +kXN +pyq +pnE +loO +dCr +kRb +oaY +bIP +aHL +tqr +oKt +wDG +fYE +ehI +fdV +aHM +aHM +xiD +aLQ +nPi +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(58,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQB +aRo +aRo +aRo +aRo +aRo +aRo +aRo +qcQ +kJa +rzq +vvB +eYf +kZq +uAN +unF +mPZ +ecF +kJa +tvr +uYY +kXN +qoR +owI +mTI +shn +adB +kXN +nZd +qTL +loO +ckW +tmA +lHf +mqd +res +nRy +lyr +wBg +xZO +uwC +yfS +aHM +lNZ +xiD +aLQ +rgS +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(59,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQB +aRo +vgW +xKB +cwT +deD +bhb +aRo +esk +gek +gek +gek +sln +sln +sln +vyb +urw +sln +sln +plz +qms +kXN +xTq +xgD +saT +uGF +gRz +kXN +woR +bts +loO +iel +oVV +ycY +pHt +hwV +dma +llX +voT +llX +llX +qUe +aHM +uHB +xiD +aLQ +wWo +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(60,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQB +aRo +hvT +bVg +xuD +uIX +wPQ +aRo +cZY +jZl +cNv +bgP +sln +lDS +wkl +vOC +qGw +gIN +sln +eHP +sDz +kXN +nqH +lqX +oDU +ggH +ihl +kXN +wkN +pnE +loO +lvu +sNW +cbO +ifH +dzO +aHM +xvV +mYT +dBP +jBQ +yiq +aHM +xjQ +xiD +aLQ +uAp +nCI +tQA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(61,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +lUl +lUl +lUl +lUl +lUl +lUl +lUl +lUl +pFz +pFz +pFz +iQB +aRo +xOd +hvd +ntX +mge +kmI +skO +fMG +jZl +jZl +jZl +sln +ouB +uPj +dkC +sHU +jsG +hWe +bAx +gHX +kXN +kXN +kXN +ocu +kXN +kXN +kXN +qms +gZZ +evm +evm +evm +evm +evm +evm +dPl +dPl +rjz +dPl +dPl +dPl +nCI +ghJ +jhd +ffN +ghJ +nCI +tQA +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(62,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +xBi +iQB +aRo +mUi +pCc +krZ +kVZ +fcC +aRo +aUp +rAR +rAR +rAR +adO +ssx +dMc +sxK +fGK +cLI +rle +eHP +xgt +oma +kXN +ivu +rap +lMX +ttD +kXN +woR +fcN +evm +uhE +cRB +bwn +jcy +evm +rGS +voA +uGu +sUI +bck +dPl +fEE +tTX +hGD +aLQ +pjL +nCI +tQA +fTv +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +eML +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(63,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +vsF +iQB +aRo +sdS +oiC +oXI +aVS +gFS +aRo +qrw +jZl +faw +qVv +sln +grs +jmI +uYX +wLg +dgj +vyS +buC +aPY +hTA +mba +cBz +rbU +bmr +jcA +kXN +fFO +prP +bjq +cIe +epT +pzr +kDj +evm +naT +sLL +bld +fHi +gsX +mDE +oHu +web +stN +npf +dbj +nCI +tQA +eAS +pfc +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(64,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +cZw +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +iif +iQB +aRo +aRo +aRo +aRo +aRo +aRo +aRo +qcQ +fEN +fEN +fEN +sln +rfp +drP +sxK +sbJ +uiQ +sln +hkq +xgt +nqE +kXN +auk +pgK +dsE +roS +kXN +pyq +pnE +evm +foq +gJm +qzw +rbE +evm +fMK +vyr +rrx +qbZ +nDl +dPl +xiD +kjc +vXO +vXO +vXO +vXO +dMW +hkv +lda +lda +lda +lda +lda +lda +wiO +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(65,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +xMk +xjZ +kMT +esx +tlm +mmo +fJC +twH +pvb +dNg +pvb +mMJ +igE +sln +oLh +haV +gYr +hGh +jny +sln +fsu +uYY +bwv +kXN +kXN +kXN +kXN +kXN +kXN +nZd +eOb +ezP +gSf +ssJ +fbC +syQ +evm +dPl +dPl +dPl +dPl +dPl +dPl +xiD +kjc +vii +cJp +vdS +qDa +dMW +aVL +rdY +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(66,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +yba +xjZ +qjP +bsO +fVg +cuW +bHt +bHt +bHt +iHh +pvb +dnR +dcD +sln +sln +sln +sln +sln +sln +sln +pSH +xgt +bwv +kJI +mRP +pKy +izj +cUd +bwv +fFO +ezL +vDC +azk +uoL +xFn +dgr +evm +aLA +vWr +bJB +tdN +cyP +lxb +xiD +coB +mcw +aJA +wLu +xlb +dMW +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(67,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yba +xjZ +xzD +trx +oiz +mmo +pvb +pvb +pvb +cYe +pvb +pvb +pvb +pvb +pvb +fiO +ipj +ipj +ipj +jCo +xNk +hfu +cdH +gjd +lzz +lzz +lzz +mdZ +cdH +arq +shG +evm +xpJ +aJL +bNu +rCX +evm +dgx +bVw +wVe +tdN +vON +pOD +xiD +kjc +exs +dNa +bgD +bKy +dMW +aVL +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(68,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +bRk +xjZ +xov +xjZ +tcu +mmo +ejn +pvb +eUR +aBy +wiU +gsf +wiU +kMY +kMY +hEE +vVY +cnr +cnr +nMj +onC +ayj +cae +cIz +pvH +kEB +axC +nbJ +cae +smL +pZH +evm +evm +evm +vGk +evm +evm +cLv +szk +qEo +tdN +qHz +sta +xiD +kjc +jQd +fTw +dMW +dVT +dMW +fMt +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(69,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +yba +xjZ +kZw +sKa +rJX +mmo +pfo +pvb +oTo +pAW +dLu +qpN +pvb +pvb +pvb +kQq +xzJ +ego +dWB +bwv +jDf +pZG +czb +dtE +mkQ +dQY +cqT +idQ +czb +sWj +dSU +vFq +bxb +psW +uKk +gUM +tdN +pwh +szk +fKT +tdN +oTt +sta +xiD +kjc +jQd +rWO +gbT +tUm +dMW +aVL +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(70,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +yba +xjZ +tch +xjZ +wWI +mmo +pvb +eUR +dCc +pAW +pPq +cSd +sMQ +sMQ +viL +sMQ +sMQ +ftw +ftw +ftw +ftw +ftw +ftw +ftw +cRq +aYR +rVO +dtd +dtd +dtd +dtd +dtd +gPE +uyf +qNr +weM +tdN +tdN +tkg +tdN +tdN +ghJ +ghJ +xiD +kjc +jQd +jul +dMW +ftS +dMW +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(71,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yhd +xjZ +nsb +sKa +fyB +kem +lgS +tjb +pAW +pAW +pAW +sjQ +sMQ +fEA +xFG +vGX +gaF +ftw +jBb +jBb +jBb +jBb +jBb +ftw +cQh +lfF +okY +dtd +vIw +vIw +vIw +dtd +uAC +uyf +qNr +khO +rnL +cpS +ktr +tFC +vWn +wUS +khO +kcp +wOI +pgI +kzg +sAS +atR +dMW +xXf +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(72,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +eLC +xjZ +bwb +xjZ +azH +mmo +pvb +nmu +smt +fog +eQQ +tPh +sMQ +kOy +xFG +vGX +gaF +ftw +jBb +jBb +jBb +jBb +jBb +uBY +mqj +nuc +skW +osP +oBW +vIw +vIw +dtd +hEQ +uyf +qNr +khO +dSg +cJs +aKy +ufm +fEG +jXs +mpB +jOq +aec +jQd +cXk +dMW +qWn +dOB +fMt +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(73,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +dGx +tON +nap +lPg +bRV +pAW +pAW +pAW +pAW +dcb +faG +sVA +nlJ +lrR +jTy +vGX +gaF +ftw +jBb +jBb +jBb +jBb +jBb +uBY +umT +xXd +skW +osP +mMx +pFm +vIw +dtd +jcE +tNA +qmB +xIV +wnh +hlC +xCG +oIv +gqL +oTI +khO +xiD +kjc +sqV +kBc +kBc +xZC +oFI +qSm +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(74,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +yba +ahe +lPg +lPg +bRV +eUR +lgS +iEv +lgS +dnY +vvV +aBc +sMQ +wOd +jSI +vGX +gaF +ftw +jBb +jBb +jBb +jBb +jBb +uBY +dDN +nuc +kMJ +osP +qiK +uvx +dYl +dtd +gPE +gPE +qNr +khO +upM +qVc +hYf +sfr +ivC +sbT +khO +jhd +onX +sqV +kBc +kBc +kBc +kBc +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(75,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yba +lPg +lPg +lPg +bRV +oTo +rPc +vgH +jEc +dME +jkr +mFG +sMQ +pXx +ebt +lqu +gaF +ftw +jBb +jBb +jBb +jBb +jBb +ftw +gQn +qzQ +wun +bqo +iOP +adZ +rSW +gqK +eKi +eKi +bYC +khO +xTD +xTD +nKd +cYV +csp +csp +khO +qNr +mOq +sqV +kBc +kBc +kBc +kBc +aVL +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(76,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +bRk +lPg +bRV +bRV +bRV +oxn +rZZ +nFj +nFj +nFj +nFj +nFj +sMQ +sMQ +fDL +sMQ +sMQ +ftw +ftw +ftw +ftw +ftw +ftw +ftw +cRq +aYR +iaT +dtd +rRf +fwu +wvp +dtd +gPE +gPE +mtR +khO +khO +khO +khO +khO +khO +khO +khO +qNr +mOq +sqV +iCS +bqJ +uHX +tot +deh +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(77,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +lUl +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +yba +lPg +bRV +yfc +uuS +oTo +qpN +nFj +vvM +kfc +oKA +nFj +xWr +oZV +pYP +sxg +wsH +oED +abs +xgT +xmq +idG +sGC +kRJ +idG +afq +fGv +cRq +mgx +mgx +mgx +mgx +mgx +vFR +cTj +weM +cxt +cxt +cas +uGJ +btP +uHZ +fOt +vLt +mOq +sqV +rCy +fmD +bhA +tot +aVL +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +pFz +pFz +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(78,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +kkr +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +yba +lPg +bRV +mgK +vOy +oTo +okp +oeM +qNl +tIu +lOp +qFV +kiS +eZV +atW +lvI +cFo +mPu +xgk +gaY +ncx +idG +vcS +sYU +idG +rFG +wsz +wbk +mgx +sEf +mgx +sEf +mgx +gPE +mtR +gPE +gPE +gPE +lwD +gPE +cxy +uZu +lmg +xZv +dZu +sqV +atJ +whj +eqs +tot +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +kkr +pFz +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(79,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +hzh +xNy +xNy +xNy +xNy +xNy +xNy +xNy +xNy +xNy +xNy +cOC +lPg +bRV +aAw +upN +oTo +qpN +nFj +jry +eTK +wpT +nFj +dIR +edt +uQp +viJ +bTH +eMF +eJS +yjR +mXa +idG +tJx +bUY +idG +uPX +fhV +xCQ +mgx +aUX +mgx +vyy +mgx +gPE +cGH +eKi +eKi +eKi +eKi +eKi +dqz +qbE +sqV +sqV +sqV +sqV +tEF +dmQ +ehB +kBc +qUA +oFI +oFI +oFI +oFI +oFI +oFI +oFI +oFI +oFI +bCk +gpd +kkr +pFz +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(80,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +kkr +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +xMk +lPg +bRV +ebh +fxm +oTo +xsQ +rPv +rPv +iQS +rPv +rPv +fAj +mdn +bSd +udn +udn +amy +uaO +xBy +chu +idG +idG +srY +idG +tVx +fPN +keb +mgx +hUX +mgx +uBD +mgx +gPE +mtR +ptM +wtM +wtM +gDo +gPE +mtR +nyY +sqV +dtv +rUW +gnr +atJ +xIM +cBG +tot +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +kkr +pFz +rtT +rtT +rtT +rtT +rtT +gCl +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(81,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +lUl +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yba +lPg +bRV +yhW +kSW +oTo +qpN +rPv +qse +aSf +qVF +vuu +xhd +mdn +sXC +lzD +wpX +aiA +oOi +nMI +tVb +uHG +dwG +ntW +gDf +kBk +iKy +iJU +sju +oHN +qXB +nGI +riP +sTh +xfd +pSF +haP +egr +yei +gPE +dpR +mIO +uQE +hfB +woC +sVt +dAY +dUQ +sdd +tot +aVL +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +pFz +pFz +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(82,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +cOC +lPg +bRV +tUc +iIE +oTo +qpN +rPv +lru +dkS +jON +lfh +tFG +mdn +sXC +wpX +wpX +aiA +ulX +vcB +vcB +vcB +dPE +jbr +fjV +anu +fcd +lJF +mgx +leL +twZ +mBj +mgx +gPE +gPE +obB +ujE +xZc +jAY +gPE +mtR +nyY +sqV +kyC +xYF +qrU +wQa +frh +uHX +tot +deh +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(83,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +yba +lPg +bRV +iRA +fxm +oTo +cSd +rPv +sSd +nkB +wVj +mbf +tFG +mdn +lBp +ukT +ukT +xXO +sDf +idc +chu +idG +idG +hkw +idG +nnR +fPN +ngG +mgx +mgx +mgx +mgx +mgx +weM +weM +weM +weM +weM +weM +gPE +mtR +nyY +weM +weM +weM +weM +weM +weM +wmy +lAE +aVL +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(84,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +yba +lPg +bRV +mgK +fxm +oTo +qpN +rPv +kvz +whx +uMe +mbf +tFG +cdP +udr +ace +ace +nul +vDm +lzL +lnc +idG +akp +jvA +idG +fRO +fPN +xPb +hcF +tin +nZA +aWr +gxi +flG +kdd +lls +rly +gcF +kdd +gPE +jjJ +rrs +pVv +xZv +xZv +xZv +jSM +iGV +wmy +lAE +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(85,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yba +lPg +bRV +eff +fxm +oTo +qpN +rPv +ifL +rAi +jBT +mbf +tFG +wYp +tdV +xBy +sCV +ify +det +jKU +mzN +idG +gIZ +iTa +idG +ljV +qKU +wVd +xKj +imn +stB +aWr +lKy +vya +kdd +iim +goA +goA +iNd +jIl +xbY +uHZ +kNv +tyX +uHZ +uHZ +sgG +mfs +wmy +lAE +aVL +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(86,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +cOC +lPg +bRV +azj +xOH +oTo +qpN +rPv +qOC +shL +sPR +far +upE +hhq +tdV +ycb +wWY +tYF +ydd +khm +lyk +idG +suH +kxC +idG +eYX +rJD +hRc +nGo +keb +fNr +bcu +lTj +mcN +kdd +ahx +tDJ +drh +kdd +weM +cKL +cKL +cKL +qhF +aQt +fei +nyY +mtR +wmy +lAE +deh +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(87,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +yba +lPg +bRV +pAW +pAW +oxn +uKy +rPv +dRl +eNG +rPv +rPv +idG +idG +flQ +pTa +pTa +rRw +jhm +pTa +pTa +pTa +idG +idG +idG +fBu +hyC +urd +nJJ +gBN +kae +bLy +fRQ +bzP +owl +vwE +bPa +pVE +kdd +xcb +cKL +yfw +cKL +nWU +cSs +xJl +nyY +mtR +wmy +lAE +aVL +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(88,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +xMk +lPg +bRV +pTS +swN +icG +nyZ +kqE +kqE +kqE +kqE +ejc +wfc +rAX +vGl +pTa +mop +pEv +uLR +hnT +xsr +jYh +wms +wms +wms +wms +wms +maz +nJJ +gBN +vWZ +bLy +pev +oGS +uAg +smH +wPt +wtU +kdd +cKL +cKL +bDX +cKL +cKL +weM +weM +isi +cTj +wmy +lAE +aVL +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(89,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +gCl +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +qfi +yba +lPg +bRV +pUY +pvb +pvb +txq +jEc +jEc +jEc +jEc +jEc +jEc +jEc +iMO +pTa +ybR +bqj +nAD +ozj +xWx +ptt +wms +vdv +kBr +kWI +wms +lGZ +kTb +biK +kdd +eAI +hGf +ijh +kdd +koe +uGM +xLz +kdd +lex +uAZ +oTm +xNI +cKL +iDB +tiZ +nyY +mtR +wmy +lAE +aVL +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(90,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +dbV +jqf +jqf +jqf +jqf +jqf +jqf +jqf +jqf +iid +lPg +bRV +nZk +lRq +uPV +qEm +uPV +uPV +uPV +lRq +pvb +pvb +pvb +vGl +pTa +oeo +jTn +mBA +apu +fzC +wuk +wms +czN +fNX +vRl +nvZ +dWJ +tRg +mku +kQE +iaM +wzH +hXp +msE +oAM +bLy +kWd +kdd +dKc +rmo +nKB +nIf +cKL +pfZ +jAY +nyY +mtR +wmy +lAE +aVf +lda +lda +lda +lda +lda +lda +lda +lda +rtY +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(91,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +rtT +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ddX +ngg +lPg +bRV +pUY +lRq +tTF +uRY +hyg +dgE +nGO +lRq +scj +weJ +pvb +vGl +pTa +tTh +hHm +pWb +gjQ +cqD +phs +wms +oJH +hMC +iRI +wms +fyc +sZm +pIK +kdd +lnj +rst +ouZ +kdd +pzC +bLy +bXC +kdd +nRV +rpx +gGy +wdp +cKL +fZi +jAY +nyY +mtR +wmy +lAE +uYw +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +rjF +kkr +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(92,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lUl +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +cbF +lPg +bRV +nNL +lRq +cyr +hyj +gvL +mDN +dBn +lRq +bZf +iLh +pvb +vGl +pTa +pTa +pTa +pTa +pTa +pTa +pTa +wms +wms +wms +wms +wms +kxZ +vTy +uYP +uYP +uYP +cKL +cKL +cKL +cKL +cKL +cKL +cKL +mAA +bDX +kCy +uDc +cKL +mgW +hCS +nyY +mtR +wmy +lAE +uYw +hRQ +rtT +kkr +rtT +kkr +rtT +kkr +rtT +kkr +rtT +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(93,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +mXk +lUl +lUl +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +unN +lPg +bRV +pUY +uLv +aoC +cbw +cFi +uRY +bFX +uPV +vjM +pWc +pvb +vGl +ogC +leD +phi +eaf +xZX +iaQ +tFu +fiW +qlr +wdh +pfn +oOn +kwm +qDr +rcO +xIC +hpX +cKL +fCJ +ugW +ixQ +kre +lLW +cKL +ksE +bDX +kCy +pDy +cKL +nxM +gPE +nyY +mtR +wmy +lAE +hwE +hwE +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +mXk +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(94,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +wRe +uYw +egk +egk +egk +egk +egk +egk +egk +egk +egk +bRV +pUY +lRq +aoC +iJL +uTd +pzp +spW +uPV +ovl +qJK +pvb +vGl +qtL +ekS +onN +czn +dAr +xDC +tFu +cQq +tEG +esg +nkW +qyD +uKo +klZ +exx +exx +fDo +cKL +tod +ixQ +tdI +ssq +vnt +cKL +pwt +bDX +kCy +aEa +cKL +vhj +gPE +nyY +mtR +wmy +lAE +lAE +lAE +lAE +lAE +lAE +lAE +lAE +lAE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +pRd +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(95,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ckU +egk +egk +egk +egk +egk +opM +opM +opM +opM +opM +bRV +nZk +lRq +jDs +pUh +xGr +fVA +spW +uPV +jqI +gBF +pvb +vGl +qtL +uqJ +wui +kwf +inb +usQ +tFu +mNi +vfb +vCR +lOO +oOn +nwe +fnZ +kmn +tRG +oRu +cKL +hZQ +ixQ +bje +oOk +tdI +cKL +sob +bDX +kCy +eNO +cKL +cKL +weM +rNH +mzV +wmy +wmy +wmy +wmy +wmy +wmy +wmy +lAE +lAE +lAE +lAE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(96,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +eoO +egk +opM +opM +opM +opM +opM +sRu +sHv +sHv +pmK +tuE +pxD +lRq +gtP +gze +skJ +cnp +izp +lRq +bjd +pfo +pvb +vGl +qtL +eMt +mpU +qdK +rEy +gyn +tFu +ils +nIk +uQX +iSY +tFu +cZE +srf +qAf +qAf +vWI +cKL +dLk +bDX +bDX +bDX +bDX +oue +nKB +bDX +kCy +iiX +acN +cKL +vwa +nyY +mtR +gPE +weM +aaG +ffu +swB +swB +wmy +lAE +lAE +lAE +lAE +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(97,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lKq +yiZ +bKF +gTA +bOd +xMC +ncR +ncR +rCN +bqn +bqn +fJr +oTo +pvb +lRq +lRq +lRq +lRq +qWF +lRq +lRq +pvb +pvb +pvb +vGl +ogC +fyg +ibi +cYp +rVM +uVb +tFu +dBv +vfb +foc +cio +oOn +xyh +ukq +rwo +rwo +nTE +sCT +sFS +mgE +tJv +tJv +tJv +haA +wyV +tJv +fTt +aIe +bda +mah +eKi +aVI +bwg +vyK +weM +upq +lQP +hwS +tpf +wmy +ojh +cXE +vud +lAE +tXe +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(98,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +aTh +eoO +egk +ljT +mvn +xvl +jRh +nPC +euj +euj +bqn +fJr +oTo +nMk +okX +unx +unx +unx +gyP +unx +okX +jEc +jEc +jEc +mUq +qoh +gCG +wCA +dol +kib +kUj +tFu +vSp +goD +ekV +qMH +jbe +agK +glV +dmJ +dmJ +kLD +cKL +ocY +rIx +sAf +cLf +ixQ +svl +ixQ +kdh +xAq +cjk +vuf +cKL +gPE +ruI +fba +cSj +kCh +fds +tkw +jrQ +guN +mxA +kMb +kMb +yjK +bua +vDN +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(99,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +eoO +egk +ljT +fhw +xbp +iSn +nPC +azd +euj +bqn +fJr +oTo +ldz +sgL +xCz +xCz +xCz +iGA +xCz +sgL +xCz +xCz +xCz +njJ +ogC +cde +rLP +lWr +sVH +vgw +tFu +sqQ +oqC +hZN +giL +oOn +kwm +wMT +cur +cur +oUi +cKL +ipa +tfU +ejp +uRo +jkU +qyP +tRr +nbg +oCq +mWv +snH +cKL +emE +geF +qNr +mOq +weM +dYd +yeL +rsb +kmE +wmy +kJX +xPm +sZZ +lAE +tXe +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(100,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +egk +egk +ljT +kTi +wJH +msz +nPC +euj +euj +bqn +fJr +kad +ohN +nvT +nvT +bJM +bJM +bJM +nvT +nvT +bJM +xHt +rpl +bJM +nvT +nvT +bJM +bJM +bJM +nvT +nvT +nvT +bJM +bJM +nvT +nvT +jTc +nvT +bJM +bJM +bJM +nvT +bJM +bJM +bJM +nvT +bJM +bJM +bJM +nvT +bJM +wlR +bJM +nvT +nvT +nvT +qNr +mOq +weM +suO +lAU +aqz +bVP +wmy +lAE +lAE +lAE +lAE +xsf +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(101,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +egk +opM +opM +ljT +fJr +uLH +ncR +ncR +vvj +bqn +bqn +fJr +oTo +ohN +nvT +fHq +fHq +fHq +fHq +fda +fHq +fHq +fHq +fHq +fHq +fda +fHq +fHq +fHq +fHq +fHq +fda +fHq +fHq +fHq +fHq +obE +obE +vaw +fHq +fHq +fHq +fda +fHq +fHq +fHq +fda +fHq +fHq +fHq +fda +fHq +fHq +fHq +fHq +fHq +nvT +qNr +mOq +weM +weM +weM +weM +weM +weM +weM +weM +wmy +lAE +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(102,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +kJW +svv +qJJ +ajw +hLq +qwu +cRn +hHd +hLq +fJr +oTo +ohN +iIc +fHq +vif +sLM +sLM +sLM +sLM +sLM +sLM +hcW +fHq +vif +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +gbH +fHq +vif +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +sLM +hcW +fHq +fHq +jXF +qNr +tdu +pVv +inl +inl +inl +inl +inl +oMi +nxq +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(103,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +dxX +dgT +sRN +ejR +ucR +dCe +fmo +xpO +lsV +bOD +vXU +mdr +iIc +fHq +whO +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +drb +aOu +lCT +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +ceN +cqk +lvz +fHq +whO +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +nvT +vVb +wEu +kNv +iBN +iBN +iBN +iBN +vTZ +dfl +scB +kKR +eFO +tXe +gSd +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(104,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +sgz +jSi +hLq +yhR +ouA +fcx +qKd +rmf +njE +fJr +oTo +vdW +iIc +fHq +whO +mGJ +uoA +uoA +uoA +uoA +uoA +dII +wxL +kzO +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +ceN +lvz +fHq +whO +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +prX +nvT +cTL +xlH +rqW +sHG +pOJ +lgN +jmm +cmh +dfl +nxq +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(105,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +vUs +myc +wke +opM +opM +opM +opM +opM +opM +opM +oxn +gFg +nvT +pSA +whO +mGJ +uoA +uoA +uoA +uoA +uoA +uoA +wxL +kzO +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +bCq +fkf +teA +rqW +eCX +exj +fBl +tOD +cmh +dfl +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(106,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +dxX +xCB +hLq +gjE +uIk +plE +miS +jjH +fGH +gjE +ryk +mYW +iIc +fHq +whO +mGJ +uoA +uoA +uoA +exI +exI +hGK +wxL +rbF +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +hFN +bCq +eHM +qae +tvK +tvK +tvK +tvK +tOD +cmh +dfl +pst +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(107,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +fGA +xVp +vcz +gjE +kRS +lCS +qzs +iOw +woD +okD +taC +mkh +iIc +fHq +whO +mGJ +uoA +uoA +dII +wxL +wxL +wxL +wxL +wxL +kzO +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +ceN +lvz +fHq +whO +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +nvT +eHM +vTB +tvK +gOx +diP +tvK +tvK +cmh +dfl +bDK +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(108,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +egk +opM +evv +uns +wke +ukV +dVL +waq +kxQ +xSc +nlv +gjE +ryk +mGd +iIc +fHq +whO +mGJ +uoA +uoA +dII +wUa +nvT +nvT +kQa +bJM +bJM +nvT +vzJ +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +tyD +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +bCq +jxj +mtI +rGI +syd +jfF +uTw +tvK +cmh +dfl +scB +kKR +eFO +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(109,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +egk +opM +fJr +iyB +fJr +gjE +gjE +oly +tOk +dSX +gjE +gjE +ryk +mGd +nvT +fHq +whO +mGJ +mGJ +mGJ +dII +wxL +nvT +gms +wgD +aYW +nAg +iIc +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +nvT +cqk +pKd +pKd +pKd +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +xZt +lrL +azU +wYF +tHZ +tlW +bfp +tvK +rwb +dfl +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(110,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +mfZ +yeX +rfa +vdh +vdh +vdh +eXV +vdh +vdh +vdh +mDS +mGd +jXF +fHq +whO +cqk +cqk +mGJ +dII +wxL +iIc +fPl +esy +wBV +rrR +iIc +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +fHq +fHq +fHq +cqk +fHq +cxX +nvT +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +prX +xvP +mFR +rsG +tvK +cLl +cJa +haJ +tvK +cmh +dfl +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(111,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +uJV +aKq +tPS +vdh +vdh +vXP +siw +jdg +vdh +vdh +ryk +mGd +nvT +fHq +whO +mGJ +mGJ +mGJ +dII +wxL +nvT +kno +nrW +cMY +oii +iIc +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +nvT +cqk +sLM +sLM +sLM +cqk +cqk +cqk +cqk +cqk +cqk +cqk +cqk +lvz +fHq +fHq +ppE +ppE +ppE +tvK +vxq +jdY +tvK +tvK +cmh +dfl +uib +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(112,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +kkg +xgj +uzU +vdh +axm +xdi +irG +nyQ +jdg +pLs +ryk +mGd +iIc +fHq +whO +mGJ +uoA +uoA +dII +wUa +nvT +nvT +kQa +bJM +bJM +nvT +vzJ +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +tdq +cqk +cqk +ceN +ceN +daw +daw +daw +daw +daw +daw +daw +daw +lFN +fHq +fHq +ppE +taq +eXy +kiw +gLI +daK +ppE +cxr +cmh +dfl +uxg +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(113,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +xcq +rfa +rfa +vdh +oPi +uli +vWK +lYy +lNg +aOn +bia +sNS +iIc +fHq +whO +mGJ +uoA +uoA +dII +wxL +wxL +wxL +wxL +wxL +kzO +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +ceN +lvz +fHq +whO +cqk +cqk +cqk +cqk +ceN +ceN +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +lFN +fHq +fHq +ppE +tyI +pOB +brq +jWo +fBT +ppE +cxr +cmh +dfl +fvM +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(114,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +mfZ +rfa +rfa +vdh +eVe +dof +irG +tKQ +lmE +uCK +ryk +mGd +iIc +fHq +whO +mGJ +uoA +uoA +uoA +opD +opD +opD +opD +opD +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +cqk +cqk +cqk +tNj +ceN +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +lFN +fHq +fHq +ppE +duQ +xoo +eSs +dcU +aJd +ppE +cxr +cmh +dfl +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(115,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +mfZ +rfa +rfa +vdh +vdh +tRV +kga +owj +vdh +vdh +jmz +ozA +nvT +pSA +whO +mGJ +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +tNj +lvz +fHq +whO +cqk +cqk +cqk +cqk +tNj +ceN +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +lFN +fHq +fHq +ppE +ppE +ppE +ppE +izi +toC +ppE +aSu +cmh +dfl +uxg +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(116,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +ttL +ttL +rfa +rfa +vdh +vdh +vdh +vdh +vdh +vdh +vdh +jqG +mOa +iIc +fHq +whO +mGJ +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +ceN +ceN +lvz +fHq +whO +cqk +cqk +cqk +cqk +tNj +ceN +uoA +uoA +uoA +uoA +uoA +uoA +uoA +uoA +lFN +fHq +prX +ppE +lzi +tUC +mbh +kYo +kHF +ppE +xOR +xsl +jhh +uxg +kKR +eFO +xsf +gSd +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(117,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +sbr +sbr +ttL +rfa +rfa +vmR +hLe +sPX +jnJ +qXQ +qXQ +vHm +xcX +pDj +iIc +fHq +whO +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +mGJ +ceN +cqk +lvz +fHq +whO +cqk +cqk +cqk +cqk +ceN +ceN +daw +daw +daw +daw +daw +daw +daw +daw +lFN +fHq +fHq +ppE +uZh +doj +xFK +iwk +hgz +ppE +qRN +bWf +gxM +uib +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(118,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +sbr +ttL +rfa +rfa +kEC +xLV +wjg +vYV +qME +qME +mbu +cag +anf +iIc +fHq +wSp +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +tlF +fHq +jVp +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +pKd +eIY +fHq +fHq +ppE +ppE +ppE +ppE +bDU +kHF +ppE +qRN +sgw +aoH +kKR +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(119,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +sbr +ttL +ttL +ttL +ttL +lLH +qpn +gsg +fzA +yen +yen +kIR +lAv +nvT +fHq +fHq +msv +fHq +fHq +fHq +fHq +fHq +fHq +fHq +msv +fHq +fHq +fHq +fHq +fHq +fHq +msv +fHq +fHq +fHq +obE +obE +obE +fHq +fHq +fHq +fHq +msv +fHq +fHq +fHq +fHq +msv +fHq +fHq +fHq +msv +fHq +fHq +fHq +ppE +lzi +tUC +vlb +kYo +kHF +ppE +qRN +sgw +kKR +kKR +eFO +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(120,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +sbr +sbr +sbr +sbr +ttL +wYN +fRz +hjx +qsg +cTV +blM +pVF +bby +aZC +nvT +nvT +bJM +nvT +ogT +nvT +bJM +bJM +bJM +bJM +nvT +nvT +nvT +bJM +bJM +bJM +bJM +nvT +nvT +nvT +bJM +bJM +nvT +ogT +nvT +bJM +bJM +bJM +nvT +nvT +nvT +bJM +bJM +nvT +nvT +nvT +bJM +bJM +nvT +fHq +fHq +fHq +ppE +uZh +doj +rSp +iwk +hgz +ppE +ulM +gki +kKR +eFO +eFO +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(121,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +sbr +sbr +sbr +ttL +mNF +bBr +xOY +ptT +qEQ +bLZ +wjg +kXu +gZK +urz +vGI +vGI +vGI +pIA +vGI +vGI +vGI +vGI +vGI +vGI +urz +vGI +vGI +vGI +vGI +vGI +vGI +abM +uOV +uOV +oCW +uOV +uOV +cge +uOV +eon +atp +uOV +naJ +uOV +ovB +uOV +atp +cge +uOV +isx +qOy +nvT +bJM +ogT +bJM +ppE +ppE +ppE +ppE +rpv +kHF +ppE +qRN +sgw +kKR +kKR +eFO +mzp +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(122,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +sbr +sbr +sbr +ttL +dyd +sRw +vrX +fqU +pKv +vJD +iVR +jAJ +gWi +wwf +jYu +jYu +jYu +mfP +aTn +aTn +aTn +aTn +aTn +aTn +noY +aTn +sNN +aTn +buZ +aTn +aTn +noY +mHe +mEt +fIN +mHe +mHe +oyp +mHe +kGH +mHe +mEt +oyp +mHe +xDT +vsL +hGN +uco +egb +khA +vTs +aoH +aoH +aoH +vem +ppE +szW +tUC +uzI +kYo +kHF +ppE +qRN +sgw +iLJ +kKR +eFO +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(123,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +alZ +alZ +alZ +fTY +alZ +oYB +oYB +oYB +alZ +oYB +oYB +alZ +oYB +oYB +alZ +rPq +alZ +alZ +alZ +alZ +alZ +alZ +vPj +vPj +iVs +vPj +cfi +gtz +cfi +wFy +tEX +tEX +dii +tEX +tEX +wFy +wyH +pKK +wyH +wyH +jLt +jLt +dWg +jLt +jLt +jLt +tgq +khA +vTs +aoH +aoH +aoH +vem +ppE +uZh +doj +lHj +qHq +hgz +ppE +qRN +sgw +uib +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(124,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +woE +xvO +aiB +vKD +ekv +tsG +kNL +dMQ +bml +xtS +fAE +foM +ijE +pRK +vfj +skP +fzt +byL +gHg +cro +wZo +fBj +dyA +mfK +cGs +dHu +cfi +iNp +pCV +wFy +bqN +kMn +fej +vBB +bZT +wFy +jYc +iYE +pgb +vTJ +jLt +sPo +sEl +rKD +ahy +jLt +ydg +hVo +lBy +lcF +ppE +ppE +ppE +ppE +ppE +ppE +ppE +ebl +urR +ppE +qRN +sgw +fvM +kKR +eFO +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(125,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +cJc +alZ +pIl +mCa +rri +gEx +rIZ +rIZ +gab +aqW +kNL +ujy +rsS +pih +pih +pih +keU +dND +vBi +exG +aEf +xCA +lDl +pnV +gGd +cEy +rSj +eVF +cfi +dIb +wWt +bjI +piM +jFo +oRE +hSf +xsS +wFy +wBP +pwz +uHi +jDj +jLt +siF +vSn +mzk +pKa +jLt +nvy +sgw +sDG +iMg +ppE +aDM +iKb +wgm +iKb +rNG +eoi +oSw +iBT +ppE +qah +khA +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(126,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +imr +pPd +dUd +jEo +rIZ +rIZ +pIb +lJq +pNe +rIZ +wUn +wUn +wUn +wUn +gab +oYi +iIr +wNq +kBe +sNt +sNt +sNt +avo +jyW +fXB +cHg +cfi +sEj +xoB +wFy +cKy +vsJ +vWx +vsJ +wKK +wFy +kid +kid +kid +kid +jLt +bIy +iDo +vUh +mxo +jLt +rXK +pbp +xtU +fVk +ppE +wgm +wgm +pJm +dVG +sIh +bJJ +oys +hLM +ppE +vSJ +khA +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(127,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +iJh +jEE +rkW +tLz +mxP +ftD +iMS +fUh +fUh +cmb +fUh +iMS +fUh +fUh +lSZ +pYe +tlw +nkv +wIW +cro +auH +oja +vPj +qBH +amt +pYd +dml +tAp +dby +rkZ +lZV +cNp +jvK +cNp +vJA +wFy +cpQ +cpQ +cpQ +cpQ +jLt +hXZ +sjM +sjM +hXZ +jLt +fYS +sgw +aoH +tao +ppE +wgm +rit +wgm +ykI +sIh +lad +oys +ppE +ppE +vSJ +khA +iRu +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(128,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +dgO +jun +rIZ +rri +srV +qcH +pIb +iOu +pNe +rIZ +yhv +kov +kov +gUp +jFL +ybz +xeX +qjW +kFC +hXj +mqP +oja +vPj +foS +fqy +eec +cfi +cFT +cfi +wFy +aBP +aBP +cNg +aBP +aBP +wFy +cpQ +cpQ +cpQ +cpQ +jLt +bkj +tFf +tqv +bkj +jLt +vBn +sUb +oyR +oea +ppE +iXz +vwi +cDB +pJm +ppE +ppE +ppE +ppE +wXK +qRN +sgw +uib +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(129,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +wlm +mJM +rIZ +rri +tjj +qcH +rRl +rIZ +oAB +wVD +fUh +mxP +xig +scY +jFL +jFG +aiQ +hzW +dQU +oro +upI +oja +vPj +kVJ +whd +dug +cfi +bpR +atw +bzH +eTg +bwe +wji +gfS +gfS +cfi +cpQ +cpQ +cpQ +cpQ +jLt +bkj +bkj +bkj +bkj +jLt +rlt +bUb +rSn +rIw +ppE +ppE +ppE +ppE +ppE +ppE +bHJ +bHJ +wXK +dDA +sTs +sgw +bDK +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(130,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +yfx +cTs +rIZ +rri +eEw +tNn +rIZ +rIZ +rIZ +tCc +iMS +mPp +xFo +scY +jFL +jFG +aiQ +hzW +dob +alZ +alZ +alZ +vPj +vPj +cQP +tUF +cfi +usS +kpt +lmM +ucy +pXj +whv +gfS +rfZ +cfi +cfi +cfi +cfi +cfi +jLt +bkj +bkj +bkj +bkj +jLt +cuD +sgw +aoH +eSq +mlH +laV +rqW +aoH +ctB +aoH +aoH +aoH +aoH +qRN +kYh +vyF +pst +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(131,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +alZ +alZ +alZ +upr +kvL +ffd +mum +vAJ +qkq +oxi +rjN +oAB +sPn +aqW +pKV +lxK +jFG +llq +nkv +aaq +cro +aTa +rSA +alZ +vxa +tnX +hhG +gtt +yih +ofy +hGt +pGj +dVn +vAM +bUO +pmo +spg +kGC +dVR +dVR +cfi +jLt +bkj +bkj +bkj +bkj +jLt +rWi +oqv +uOV +uOV +atp +atp +ldn +slH +iSK +atp +uOV +uOV +uOV +mNr +vyF +kKR +kKR +kKR +eFO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(132,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +fKI +fKI +fKI +alZ +alZ +alZ +aCo +nLq +kaU +eQk +alZ +hUQ +oSc +orf +tDW +buM +tbv +ohW +aiQ +kHZ +nUI +xCA +pzW +rSA +alZ +uGN +gFl +tTU +xEI +nEy +kFQ +xEI +nEy +kFQ +nlA +vBe +pmo +hIn +kGC +dVR +dVR +cfi +jLt +bkj +bkj +bkj +bkj +jLt +kBD +twl +mHe +mHe +mHe +mHe +oyp +xsl +rDH +mHe +mHe +mHe +mHe +sTs +kKR +kKR +eFO +eFO +eFO +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +viv +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(133,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +tXe +fKI +fKI +fKI +alZ +oLN +dKd +kNU +gnE +cDy +fEj +oAc +oAc +rIZ +sZz +fIW +gmK +jeV +yaz +hIu +oro +sze +rSA +alZ +mfr +gFl +qsl +bRm +cUR +kiZ +bRm +cUR +kiZ +voh +mPA +vxa +abB +abB +abB +abB +dnU +jLt +bkj +bkj +bkj +bkj +wcb +hOv +jwN +hOv +hOv +hOv +hOv +nga +cAC +nar +nga +rqW +gyY +rqW +kKR +kKR +eFO +eFO +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(134,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +iQn +tXe +tXe +fKI +fKI +alZ +oLN +hhD +kNU +wuO +avh +igH +neK +neK +qji +gDL +hTN +xAw +aiQ +lwU +qEp +alZ +alZ +alZ +alZ +iVJ +gFl +uTY +coE +rWV +coE +coE +emp +nEy +voh +mPA +nhq +teQ +teQ +teQ +teQ +sQY +jLt +jLt +jLt +jLt +jLt +wcb +jAr +jiI +xUC +fLb +rNX +neC +nga +bMC +hDN +nga +vgm +thl +dPq +eFO +eFO +eFO +tXe +tXe +gSd +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(135,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +iQn +tXe +fKI +fKI +alZ +alZ +alZ +fPE +dKd +cDy +fEj +oAc +oAc +wnK +qSD +wph +wph +mik +lwU +izs +cfi +aeU +cOX +cfi +cBm +fEY +wZg +meg +eYU +gGO +meg +eYU +gGO +nYO +nBH +bBv +bBv +bBv +eRE +fXm +buV +eww +sdt +sdt +ihx +cfi +wcb +vFt +lOT +xMp +ayw +xMp +iVQ +nga +qBV +pXe +nga +oXL +xyO +eFO +eFO +eFO +eFO +tXe +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(136,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +fKI +fKI +fKI +alZ +lAS +dKd +cDy +fEj +oAc +jCd +wVJ +xnr +tDW +ivb +xPH +gQA +auZ +hBq +psH +gAi +gzO +ofQ +hjL +wSm +dRP +xuU +nrm +nZb +xuU +nrm +nrN +bxD +tXm +vKU +tMr +lXp +xEI +jfi +hkZ +nEy +ffv +gCM +cfi +wcb +rUE +dUF +nZL +jlK +sbV +aGc +nga +tuR +lAZ +nga +rBy +fLW +eFO +eFO +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(137,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +tXe +tXe +tXe +fKI +alZ +jWe +dKd +cDy +kIm +egz +api +vyh +nVr +prr +xpq +aIp +jBX +eep +cfi +sBO +sBO +cfi +cCx +djF +dAE +eee +gRn +gRn +elN +gRn +dJZ +vNq +uOS +kMP +fmP +fDt +lXp +xEI +kYg +xEI +nEy +wQh +gCM +cfi +wcb +wcb +wcb +nSz +aNM +jCA +aNM +qak +nga +nga +nga +itA +thl +eFO +tXe +tXe +gSd +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(138,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +iQn +soS +fKI +alZ +alZ +uJl +cDy +pSd +ndy +wJj +win +hal +xck +jyU +oJp +alZ +hvp +cfi +cfi +cfi +cfi +vDT +wZg +vxa +abB +abB +abB +abB +tnX +iQe +ndq +wgH +gfo +jll +pjt +kZC +kiZ +jwh +gIz +pjg +keQ +tYE +ihx +cfi +cfi +wcb +nSz +aVn +vFr +szN +xWT +hEe +wsy +gyY +ihc +eFO +eFO +xsf +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(139,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fKI +fKI +alZ +alZ +alZ +cdw +arM +bEf +alZ +cdw +cdw +arM +bEf +wma +ulg +wyZ +gaG +qYN +paZ +vYY +wZg +nhq +teQ +teQ +teQ +teQ +fEY +oEl +qeK +rhZ +are +nEy +rdK +bUO +bbX +esd +xEI +tlM +xoy +sJQ +eCP +fwg +mGP +iHn +nSz +ugK +vKI +ugK +xWT +iIp +aHg +rqW +eFO +eFO +eFO +tXe +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(140,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +eLH +fKI +fKI +fKI +fKI +kZn +oNp +nmS +fKI +nmj +pCP +rKp +sDI +kqY +dBd +tBx +dus +ruP +wRD +pWo +gqV +rYz +uea +vGU +iXA +aRE +uOw +mNG +dUW +qNi +wBR +oou +rXu +jEh +xBh +oHt +xQL +cKb +seZ +xpP +nOC +nXa +dBd +epi +nSz +ikN +lpk +lgW +xWT +dPq +kQd +eFO +eFO +eFO +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(141,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +tXe +fKI +fKI +fKI +sCl +sCl +sCl +fKI +nmj +nmj +nmj +nmj +oeU +aAO +kaP +qjZ +iaX +tGS +iOj +tbY +gzu +cwp +rbg +rfI +osm +sKx +jYs +oKq +fNJ +sKx +cOZ +rfI +nwB +jEI +rnx +gzu +iOj +tGS +niN +aAO +kaP +uYl +kIq +nSz +ghv +tCD +ghv +xWT +deB +eFO +eFO +eFO +tXe +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(142,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +bAD +tXe +tXe +fKI +fKI +fKI +fKI +fKI +fKI +fKI +fKI +fKI +fKI +oeU +gLg +gLg +gLg +ubp +ubp +elL +jAd +jAd +aIY +tId +lek +rhb +epf +hXP +tac +xIY +epf +lXp +lek +lQF +aIY +jAd +jAd +kut +ubp +ubp +gLg +gLg +gLg +kIq +eyb +uYw +uYw +uYw +eFO +eFO +eFO +eFO +tXe +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(143,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +iQn +tXe +tXe +fKI +fKI +fKI +fKI +fKI +fKI +fKI +fKI +fKI +oeU +uYw +kkr +kkr +ubp +ubp +ubp +jAd +jAd +aIY +rbg +bRh +rhb +epf +raP +qnx +uCW +epf +lXp +bRh +nwB +aIY +jAd +jAd +ubp +ubp +ubp +kkr +kkr +uYw +qQR +gYU +fuc +fuc +fuc +xVJ +eFO +eFO +tXe +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(144,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +tXe +qaM +tXe +tXe +tXe +tXe +tXe +tXe +tXe +qaM +qQR +uYw +rtT +rtT +ubp +ubp +ubp +jAd +jAd +aIY +vxc +fGL +vbR +epf +raP +jjj +gec +epf +quP +fGL +pcG +aIY +jAd +jAd +ubp +ubp +ubp +rtT +rtT +rtT +tXe +tXe +rtT +rtT +rtT +tXe +qaM +tXe +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(145,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lPf +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rtT +rtT +rtT +tXe +ubp +ubp +jAd +jAd +jpF +nqq +nqq +nqq +eAT +eAT +dBV +eAT +eAT +dgK +dgK +dgK +bHs +jAd +jAd +ubp +ubp +toF +rtT +rtT +rtT +rZL +rZL +rtT +rtT +rtT +rZL +rZL +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(146,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rHO +ubp +ubp +jAd +jAd +ubp +uYw +uYw +uYw +uYw +jdW +mcP +okf +uYw +uYw +uYw +uYw +ubp +jAd +jAd +ubp +xNe +toF +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(147,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +ubp +ubp +jAd +jAd +ubp +uYw +cyU +uYw +uYw +jdW +mcP +okf +uYw +uYw +uYw +cyU +ubp +jAd +jAd +ubp +ubp +toF +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +qEj +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(148,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +idA +soS +ubp +ubp +jAd +jAd +ubp +uYw +uYw +uYw +uYw +jdW +mcP +okf +uYw +uYw +uYw +uYw +ubp +jAd +jAd +ubp +ubp +hyk +gSd +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(149,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +ubp +ubp +jAd +jAd +ubp +uYw +uYw +uYw +uYw +jdW +mcP +okf +uYw +uYw +uYw +uYw +ubp +jAd +jAd +ubp +ubp +toF +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(150,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +ubp +ubp +jAd +jAd +ubp +ubp +ubp +ubp +ubp +uaW +mcP +kjp +ubp +ubp +ubp +ubp +ubp +jAd +jAd +ubp +ubp +toF +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(151,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +toF +ubp +hwX +hwX +ubp +ubp +ubp +ubp +ubp +ubp +mcP +ubp +ubp +ubp +ubp +ubp +ubp +hwX +hwX +ubp +toF +toF +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(152,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +toF +kDC +toF +toF +kDC +toF +tLm +toF +jZI +yiX +mcP +yiX +jZI +toF +tLm +toF +kDC +toF +toF +kDC +toF +mFw +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(153,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ftk +ftk +ftk +ftk +ftk +ftk +ftk +ftk +ftk +vjt +mcP +vjt +ftk +ftk +ftk +ftk +ftk +ftk +ftk +ftk +ftk +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(154,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +vSZ +mcP +pDa +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(155,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +vSZ +mcP +pDa +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(156,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +uTf +qQG +tkT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(157,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(158,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +dOV +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(159,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(160,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(161,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +aYe +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(162,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(163,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(164,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +pTo +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(165,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(166,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(167,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(168,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(169,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(170,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(171,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(172,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(173,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(174,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(175,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(176,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(177,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(178,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +nop +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(179,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(180,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(181,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(182,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(183,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(184,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(185,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(186,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(187,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(188,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(189,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(190,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(191,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(192,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(193,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(194,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(195,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(196,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(197,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(198,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(199,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(200,1,2) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} + +(1,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(2,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(3,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(4,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(5,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(6,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(7,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(8,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(9,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(10,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(11,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(12,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(13,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(14,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(15,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(16,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(17,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +aCF +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(18,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(19,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +rtT +kkr +rtT +kkr +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(20,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +stw +stw +rtT +rtT +kkr +stw +mnx +myS +mnx +stw +kkr +rtT +rtT +stw +stw +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(21,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +stw +stw +stw +bTs +eui +bTs +stw +jGD +jGD +jGD +stw +bTs +eui +bTs +stw +stw +stw +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(22,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rpE +rtT +stw +stw +stw +jGD +jGD +jGD +stw +duA +sve +bca +stw +jGD +jGD +jGD +stw +stw +stw +rtT +rpE +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(23,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ibG +uLo +gFU +stw +stw +sGe +eJf +jKs +qGO +sXu +iKj +iKj +iKj +sXu +vCC +qGO +qGO +hpS +stw +stw +xng +uLo +lZa +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(24,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +iij +fUR +wff +ktE +gst +rWX +cmm +cvM +dpu +siB +rGn +cmm +cmm +iQF +bLU +dGG +wXr +hAu +sZi +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(25,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +jCZ +iMi +kNR +gLu +cxT +dGG +wEw +fga +aKX +dSz +rMB +ydX +uSJ +wqy +iKj +qvJ +kNR +ucV +kPK +fdX +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(26,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +eLH +xxf +dJe +wff +pHQ +iKj +boo +tpL +iBZ +vUO +sTq +aYw +pLr +jtu +rBS +sUQ +tcJ +wXr +lNv +ciz +eLH +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(27,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +rzP +stw +stw +xGT +oaX +yfd +pQv +uBX +aJG +pqM +uRf +mnH +cwA +wue +yic +tJj +stw +stw +eCO +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(28,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ibG +bYQ +stw +stw +dCa +uVa +vdx +tfi +cXp +uDL +stC +jKh +ddl +wIr +txc +iKj +qsX +stw +stw +kjX +lZa +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(29,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +dFT +dJe +wff +dZF +tvN +nlQ +mKh +htU +pWe +ccI +mnk +gVz +ahQ +iKj +iKj +dGG +wff +lNv +vOQ +cQb +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(30,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +okh +xtW +wff +sUW +lLf +saJ +gqT +rsF +cMe +oXJ +lFn +cYb +txc +iKj +wiF +pma +wff +tOO +bzN +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(31,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +fdX +rLI +wff +wqy +kSu +mib +kSu +omE +sGg +puE +tnY +bbZ +iKj +iKj +qaj +vZW +wff +wdk +fdX +fdX +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +kzF +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(32,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +stw +stw +vZL +lnO +xLM +vfK +fQy +sGg +pAr +aYv +foZ +cmm +cmm +lnO +sSF +stw +stw +pjb +eJO +gSd +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(33,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +stw +stw +uPp +uPp +uPp +uPp +uPp +sMd +uPp +mHL +uPp +uPp +uPp +uPp +uPp +stw +stw +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(34,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +fMJ +fMJ +ofk +mXx +aTv +oCK +ofk +cqt +coY +jIR +flr +gBT +dCG +eUz +gXD +mhi +mhi +tXe +tXe +gSd +rtT +rtT +rtT +rpE +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(35,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +fMJ +fMJ +fMJ +ofk +xwp +iFP +clH +fru +jSZ +gyH +csZ +flr +eMP +uWj +kLM +awl +mhi +mhi +mhi +tXe +atx +rtT +rtT +idA +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(36,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +tXe +tXe +fMJ +fMJ +fMJ +ofk +xyV +ksr +lNU +wtH +ubm +aXS +skp +flr +wqk +uWj +kLM +dZK +jsY +mhi +mhi +tXe +tXe +gSd +rtT +idA +tXe +bAD +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(37,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +poX +rpE +rlU +tXe +tXe +fMJ +fMJ +fMJ +mUL +mUL +mUL +mUL +mUL +mUL +nUA +rVT +kEJ +flr +eMP +uWj +kLM +awl +jsY +mhi +mhi +mhi +tXe +atx +rpE +rlU +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(38,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +bAD +lTE +qMX +bAw +tXe +eLH +fMJ +fMJ +cOm +mUL +uzD +csw +cGF +vZx +nrk +xCd +twq +hbi +flr +wqk +uWj +kLM +dZK +jsY +qLI +mhi +mhi +tXe +tXe +tXe +bAw +tXe +tXe +wvg +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(39,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +fMJ +etT +eSe +eSe +eSe +eSe +eSe +dGY +gQF +cVG +qZm +afn +ltU +mUL +lxl +tzK +lxl +jsY +buf +hKd +tjZ +biJ +jsY +jsY +mhi +mhi +mft +uxi +uxi +mft +mft +eLH +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(40,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +lJi +jUG +mUL +xBF +nJe +dfG +oTT +xIs +ldV +qZq +oIB +flr +hdr +pom +aSY +qZL +jsY +fSq +vsh +mhi +mft +neo +neo +mft +mft +mft +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(41,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +pbu +kYW +cOm +muB +aJb +hGd +jUG +mUL +mUL +mUL +mUL +mUL +mUL +qds +fbB +shF +jTE +wdI +xgP +sTr +hGy +oCT +oMa +aOH +mHg +cpu +pWh +lNI +cpu +cpu +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(42,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +ctI +pbu +dDe +uSt +gKy +aJb +hGd +jUG +bxo +ptq +fZD +lOi +bxo +uxx +uxd +mhc +nfV +pqF +sVK +aus +aSY +uJG +jsY +mih +sQu +oMa +uJe +lrH +oex +iUA +cpu +mft +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(43,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +bCl +puK +lra +gtG +esn +uSt +aJb +idK +jUG +bxo +jVP +lME +qGV +bxo +eBD +kbq +dNk +cgl +jsY +uwx +aus +lWI +ygU +jsY +oZL +mxc +oqx +cpu +efB +fRG +hGC +cpu +cpu +mft +mft +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(44,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +sOO +uSt +uSt +esn +esn +esn +uSt +wcs +uSt +jUG +bxo +wKs +iYR +jme +bxo +xcU +rUK +onI +tri +jsY +nDP +nuQ +qbg +wZz +jsY +oZL +sgZ +oqx +cpu +cpu +osL +cpu +cpu +cpu +cpu +mft +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(45,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +sOO +dEI +uSt +wot +wot +wot +wot +wot +wot +cwv +jUG +bxo +bxo +vEU +bxo +bxo +yia +jOL +tnS +nRw +ngK +ngK +ngK +ngK +ngK +ngK +ngK +ngK +ngK +cpu +ntv +rZU +bST +rFS +iqg +cpu +cpu +mft +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(46,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +gSe +uSt +uSt +bJP +wot +xgS +qCA +eAU +lFe +wot +lJi +jUG +bxo +tuF +rRa +kHY +bxo +dps +bci +icR +sCm +pWi +jkR +jkR +jkR +jkR +jkR +jkR +sDs +omy +cpu +epk +jnD +dZA +vEe +vEe +qBD +cpu +mft +mft +mft +mft +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(47,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +tcB +uSt +esn +wnO +wot +wot +gop +okK +qvc +qjC +wot +lJi +jIs +bNH +phR +bFd +qqa +bxo +grL +jOL +vpm +qsn +ngK +gZb +gZb +jCp +uXj +pxP +jkR +oHY +ngK +cpu +skA +oTG +vEe +rWt +vEe +vdZ +cpu +mft +mft +mft +mft +rHM +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(48,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +uSt +esn +uSt +hip +cGi +wot +jyh +tbO +hYl +uPB +uAd +wot +lJi +uSt +bxo +vzz +oHC +nhE +bxo +ddv +hlu +kyx +nvx +rem +rem +rem +rem +rem +wdE +jkR +oHY +ngK +cpu +nFK +mDY +vEe +vEe +vEe +mnO +cpu +kCT +kCT +njb +mft +rHM +eLH +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(49,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rNq +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +khG +uSt +uSt +qCr +pbu +ovV +jyh +hDS +nOs +lZF +hmg +wot +aJb +wcs +bxo +bxo +bxo +bxo +bxo +ddv +vuL +oYa +vuL +rem +mBg +vcm +utW +rem +wdE +jkR +oHY +ngK +cpu +gSH +oWy +oNF +trz +trz +trz +euo +qap +fXQ +qap +mft +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(50,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fuL +vxP +uSt +uSt +aJb +aJb +wot +wot +tiD +mUm +jyh +jGZ +wot +pJZ +uSt +gml +ddv +fdR +vBC +qxD +xFL +qlD +kyx +oIB +tOU +eHb +fOB +coD +rem +ngK +ivl +ngK +ngK +cpu +cpu +cpu +cpu +cpu +cpu +cpu +cpu +cXm +cXm +nJn +mft +rHM +rHM +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(51,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +fMJ +aJb +aJb +wcs +aJb +xMO +dhI +aJb +aJb +aJb +mnN +aJb +aJb +qzh +esn +uSt +uXY +knb +rDR +enM +cFx +oXp +pHK +jtf +kha +rlQ +toT +vAk +xep +svX +luT +oob +ngK +ngK +ngK +ngK +ngK +ngK +ngK +ngK +ngK +ngK +lYm +uod +dzP +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(52,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +gua +uSt +odm +uSt +xsa +pbu +xsa +uSt +sFc +qId +esn +esn +wcs +uSt +esn +uSt +iRg +sCm +sCm +sCm +uAY +sCf +dbw +ewF +rem +uxy +fOB +kFn +rem +udc +wAS +fTU +gmM +lYx +jkR +jkR +oHY +uZL +ums +ngK +fxb +jkR +jkR +jkR +nqW +rHM +rHM +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(53,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +gCD +uSt +uSt +uSt +kcA +odv +wJK +tCx +wru +aVZ +esn +esn +aJb +afc +niH +afc +ddv +kuI +sCm +iWM +xFL +qlD +kyx +wep +rem +pMV +fpI +kHk +rem +tXZ +tnl +fJD +lJY +aRx +lTY +jkR +jkR +jkR +jkR +ngK +ngK +aSV +jkR +gPh +uXj +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(54,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +aJb +wcs +aJb +bTO +trA +jBO +bTO +fht +uSt +uSt +uSt +uvK +uIL +uIL +uIL +uIL +uIL +uIL +nhX +uIL +uIL +vuL +oYa +vuL +fJD +gha +une +tOU +fJD +xkE +vZO +fJD +fJD +fJD +fJD +fJD +wEn +jkR +tjw +ngK +dFn +jkR +jkR +tKa +uzm +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(55,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +nDi +uSt +qCr +bTO +ofL +wcU +bTO +fht +uDN +sFR +pup +phJ +uIL +eZp +jFr +yiN +fMR +uGI +uGI +kPL +uIL +ijO +kyx +dyK +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +xYc +jkR +vbm +ngK +dFn +jkR +jkR +grp +iBH +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(56,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +bUP +esn +qCr +bTO +tfE +fFi +bTO +fht +gMt +bek +ocH +uSt +uIL +xSp +vnn +pQG +hbz +uAB +clT +lUe +rSg +jOL +rCI +kEJ +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +ngK +hvO +ngK +ngK +iDP +jkR +jkR +inI +nNX +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(57,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +iGE +esn +wns +bTO +iyi +daZ +bTO +sSe +uSt +uSt +uSt +uSt +uIL +haz +vnn +pQG +duT +jOC +hpd +dua +rSg +rUK +woo +qYq +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +dWn +jkR +rdH +ngK +nCp +jkR +jkR +inI +iBH +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(58,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +fMJ +fMJ +bsU +uSt +qCr +bTO +rcp +sKW +bTO +fht +tPs +sFR +vRh +uSt +bcJ +sKu +vnn +pQG +fMR +uGI +hpd +bEX +uIL +cJQ +rCI +cgl +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +hHQ +jkR +wKI +ngK +ngK +hvO +ngK +ngK +ngK +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(59,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +jQy +uSt +qCr +bTO +kYw +rOi +bTO +fht +uhR +dCM +rzH +uSt +uIL +dvA +bpD +phx +jcL +rDu +gEd +bMY +rSg +jOL +rCI +kEJ +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +pFy +jkR +jkR +jkR +jkR +jkR +bFE +xYc +xYc +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(60,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fMJ +fMJ +aJb +wcs +aJb +bTO +rFX +dZm +bTO +poV +aJb +aJb +aJb +xUT +uIL +wTv +vnn +pQG +pfT +xEJ +nQs +lUe +rSg +xCd +pdu +hbi +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +lzj +jkR +jkR +jkR +oQx +lPo +oRP +xYc +vZS +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(61,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +fMJ +fMJ +fgI +uSt +esn +ukw +uFc +lGQ +aJb +nkf +hMi +kxg +peY +uSt +uIL +mmZ +gRa +pxq +fMR +uGI +uTA +mzc +uIL +vuL +oYa +vuL +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +jkR +jkR +jkR +vcn +ngK +ngK +ngK +ngK +ngK +rHM +rHM +xsf +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(62,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +fMJ +fMJ +jFl +uSt +uSt +esn +rvc +rig +xUT +cWv +hPX +hPX +kzZ +uSt +uIL +ims +sBY +ims +ims +ims +vOs +ims +ims +efa +pdu +bGK +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +axW +snS +vcv +jkR +ngK +oKR +wwR +gXv +uWM +rHM +rHM +tXe +tXe +uWK +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(63,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +eLH +fMJ +fMJ +aJb +wcs +aJb +dAy +mOZ +vMg +aJb +mZE +cvh +qmA +iHw +esn +wOq +ims +oXz +vMY +hFC +wzD +gND +mpT +ims +eBw +kiK +eZQ +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +qDI +snS +okl +jkR +xIg +gHN +uod +uod +lqH +rHM +rHM +eLH +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(64,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +soS +fMJ +fMJ +nba +esn +aJb +aJb +aJb +meX +aJb +aJb +ghg +fht +uSt +esn +esn +jAV +ylF +ylF +sra +akR +kaH +bVl +uCl +ldV +eTu +sIS +fJD +meH +meH +meH +meH +meH +meH +meH +meH +meH +meH +fJD +ngK +ngK +ngK +ivl +ngK +ngK +ngK +rHM +rHM +rHM +rHM +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(65,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +fMJ +fMJ +ctI +uSt +slo +aJb +pOA +qBe +lJo +aJb +aJb +sKM +aJb +aJb +aJb +ims +cgu +uQl +kcx +kMK +kMK +hhy +ims +odF +kiK +peQ +fJD +fJD +fJD +fJD +fJD +fJD +fJD +fJD +fJD +fJD +fJD +fJD +jHd +jHd +sJC +jkR +sDs +iBH +rHM +rHM +rHM +rHM +sgo +tXe +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(66,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +fMJ +fMJ +fMJ +fMJ +fMJ +aJb +aJb +xzd +uSt +aJb +mNv +fht +uSt +otU +sYN +ims +ims +ims +aGH +qzT +elU +mMN +ims +jgM +woo +hnq +ifz +xrv +pdX +pSa +wYI +ifz +vRw +dlO +ifz +qYj +nmf +ifz +izh +uod +uod +uod +uod +tnR +rHM +ozH +iQc +rHM +dmA +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(67,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +nZT +tQG +ofH +nvp +fMJ +gIM +jPN +mHS +wdT +wdT +bMJ +fht +uSt +oDQ +pbu +sps +ghn +ims +ims +ims +ims +ims +ims +kFW +kiK +aMq +ifz +tSW +vTC +phE +uJo +ifz +fbX +dXO +ifz +krK +oIf +ifz +xYc +xYc +btb +iVV +aiS +mSx +cOd +kkI +sVq +krT +sgo +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(68,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +mLr +cEu +wMi +wMi +qYV +nos +bka +uLa +ybW +rZc +dsm +qJR +apv +vcI +aDF +xXH +acP +acP +vaA +bCj +bCj +bCj +nXG +xvS +tsj +quD +sRo +wBq +jaJ +jgL +bXa +ifz +ifz +mrg +ifz +asc +ifz +ifz +ifz +ngK +iyx +psA +axn +jCp +rHM +ykB +tQf +rHM +dmA +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(69,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +lNM +fMJ +cMo +fcz +aTM +fMJ +ekP +esn +fpc +aJb +byc +pPK +cld +hBr +aJb +gLZ +jLI +oaI +eIo +aJb +ejy +qxe +ejy +ddv +kCS +vbG +ske +ifz +dNl +rFj +iAP +loz +sna +mwx +lsC +sna +cxM +fsz +neP +wwm +ylA +uod +psA +rHM +rHM +rHM +rHM +rHM +rHM +ujc +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(70,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +fMJ +fMJ +fMJ +fMJ +fMJ +xKr +pbu +fpc +aJb +hrb +sOd +xSy +nhx +bEp +mcA +dOR +hRu +hRu +hRu +hRu +hRu +hRu +hRu +eCH +rAg +eCH +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +sNi +aiS +ult +lXy +lXy +rHM +rHM +rHM +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(71,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +mWc +fOj +gkQ +gkQ +gkQ +kAQ +cHi +dTL +aJb +bPF +bPF +bPF +bPF +bPF +epl +bPF +hRu +avi +avi +avi +avi +avi +hRu +ycs +xeY +prT +cEN +dWt +ydK +asr +wle +qRx +rGK +kxI +biE +wle +nBj +qrB +eln +rLB +jkR +kdS +jBE +xPp +rHM +vgc +qSy +rHM +rHM +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(72,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +soS +mWc +fOj +wcM +gWR +gkQ +gkQ +gkQ +fpc +oDQ +bPF +atV +jKQ +gUY +swf +vwH +gpy +hRu +avi +avi +avi +avi +avi +kkq +xHT +dut +nlk +rWw +nkj +ydn +iql +szv +rbh +rTs +bDs +llM +wle +kDO +tBl +eln +uma +ngK +miI +sJC +jkR +vEf +nwn +vFB +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(73,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +bAD +mWc +fOj +whl +mip +jTg +pNZ +gkQ +dUV +czH +bPF +iyp +dGJ +cqB +cqB +cYM +qVX +hRu +avi +avi +avi +avi +avi +kkq +awR +aXo +mAV +ewS +eyQ +mOu +qWk +wle +tQO +jUf +jUf +cPG +aKa +sKX +pLt +sOk +fjG +ngK +ngK +ngK +ngK +ngK +ngK +ngK +rHM +rHM +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(74,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +mWc +fOj +jdc +enG +qFr +cXG +gkQ +eCy +fEz +bPF +pcH +nxF +dnu +oGi +rVJ +uci +hRu +avi +avi +avi +avi +avi +kkq +hyf +aYz +ccj +ewS +tvF +poY +oIi +wle +uIC +oae +oae +sYz +wle +pNC +dsX +dsX +rzi +eln +xwW +miW +sqA +uIO +aoE +eln +hva +mDw +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(75,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +mWc +fOj +wDJ +ctX +luJ +wyb +gkQ +mpq +kdv +bPF +eBY +izE +ffB +ffB +iZx +aYp +hRu +avi +avi +avi +avi +avi +hRu +bTK +fND +npU +ewS +tvF +tvF +fSx +wle +kKz +dHC +dHC +tWK +wle +oUm +cos +cos +vWk +eln +gjT +xEG +rui +oEA +dbu +fPc +qix +mDw +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(76,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +mWc +fOj +gkQ +gkQ +jNK +gkQ +gkQ +eod +kYf +bPF +meS +kMO +cqB +cqB +sJb +oVL +hRu +hRu +hRu +hRu +hRu +hRu +hRu +cQo +vSF +hof +cEN +tvF +tvF +tvF +wle +wle +wle +wle +wle +wle +eln +sMR +dPn +oOc +pzl +oZl +oZl +stp +jay +mOt +pKn +qix +mDw +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(77,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aRt +mOf +wtn +rqt +hhN +rWp +hlL +mQg +kYf +wYl +sqv +xek +eOx +afk +ycn +vUZ +vTf +gZX +mCr +fpp +nNt +xgA +bPF +kQK +hKx +qcO +qOv +qOv +qOv +qOv +qOv +qOv +irx +stz +cxQ +irx +eln +wmq +oeG +kKv +eln +dJd +xbx +qxX +uIO +uIO +eln +hva +mDw +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(78,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aRt +mOf +qVP +hPP +mAx +fLa +dsk +lSq +nqy +qnp +cNF +fXs +ahn +ahn +sdx +xKg +xKg +xKg +xKg +jEL +twN +lrl +bEM +jDk +aYz +cGV +qOv +rWy +stz +cxQ +ocE +qOv +irx +xGi +qQC +irx +eln +xjt +lOU +pLq +eln +eln +eln +eln +eln +eln +eln +hva +hva +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(79,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aRt +mOf +mWg +ehe +qiW +ehe +qli +pBC +kYf +bPF +vXT +aLi +gUY +gUY +vcQ +beq +aut +dNj +aut +jqP +gmF +nJr +bPF +xZE +aYz +ccj +qOv +rWy +kzL +vQv +ocE +qOv +hnk +oil +kya +nsf +eln +ryz +lOU +aQq +qPv +qsD +vxf +twO +dzc +pcb +weB +hva +hva +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(80,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +aRt +mOf +wmY +eVy +eup +xTt +qli +awX +ife +bPF +bPF +gse +gse +gse +gse +bPF +icw +tJC +tJC +bPF +rvh +bPF +bPF +clp +pFH +gav +qOv +chf +dSQ +wCL +qgf +qOv +ouu +bLS +uFT +mZx +eln +rBZ +lOU +pLq +hRT +soM +kcR +rLC +mIg +bPH +weB +hva +hva +tXe +gSd +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(81,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +aRt +mOf +mOf +mOf +xHE +vEg +nmT +jid +oKN +kYf +wzy +wzy +wzy +wzy +pMh +xAd +hlX +hlX +hlX +wVv +lNX +wCv +fny +jsU +sPT +ccj +qOv +cUI +crr +tKT +pjf +qOv +aPw +iqb +uFT +qja +eln +vco +oOm +pLq +mKG +rfE +nOy +lod +vJE +weB +weB +hva +thR +uLo +lZa +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(82,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +xye +uLo +rtg +aRt +aRt +mOf +kYf +kYf +mZF +qJr +kYf +kYf +wzy +wzy +wzy +wzy +pMh +qRF +gZv +gZv +usx +hSc +uMU +vku +fny +kpR +qUq +ccj +hgw +jfq +crr +eRU +tCs +qOv +qOv +qOv +fpj +qOv +eln +mCP +pnF +pLq +eln +eln +eln +eln +eln +eln +hva +hva +xMx +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(83,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +idA +tXe +qUr +jXo +pop +xvB +lfV +fKC +ltH +pex +qmH +jWt +wzy +wzy +wzy +wzy +pMh +hcQ +hEH +pgQ +vvR +rZr +epn +hzl +qfG +tnn +mEr +eae +qOv +qOv +eDD +qOv +qOv +qOv +liA +pLV +jOh +xhp +kQH +oCm +faN +gKW +mfA +eMC +cQL +qMA +oXn +sSX +fQf +klO +mCt +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(84,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rdO +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +pUM +tZt +gHq +tli +aUF +tSQ +jWt +wzy +wzy +wzy +wzy +pMh +yhP +gLh +vab +oWW +xwV +mFO +pJG +qfG +tnn +obG +kGL +qOv +eTa +snI +tGm +gwh +oOX +djU +oFa +efb +rfX +qLC +tIn +oKz +vUB +aGT +lDe +oNn +bOL +lAy +qGg +mXP +eoO +fRR +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(85,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +syI +exK +wNK +vCq +igT +dQs +jWt +wzy +wzy +wzy +pMh +pMh +isY +jbN +bLw +ebz +rZr +wnY +eYQ +qfG +tnn +kWT +uXH +juZ +fJJ +sNa +tKT +tKT +vUf +bgZ +tKT +rsi +ruy +eln +kGT +mTF +mfA +mfA +fCI +gvU +ghT +cdU +xJd +eoO +qAW +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(86,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +fGp +exK +ucx +ucx +igT +hlF +pRi +wzy +wzy +wzy +pMh +pMh +hdq +jor +cyM +vvR +rZr +gZv +dWi +fny +peo +aYz +aJI +qOv +aIS +xsC +fAp +hrO +knC +eKL +tKT +rsi +jyD +kQH +pdl +uIl +mfA +kDQ +iMW +oOH +owN +waO +xJd +eoO +kGl +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(87,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +fGp +exK +ucx +ucx +igT +cEd +pRi +hsw +hsw +hsw +hsw +pAJ +qXo +gZv +gZv +vvR +rZr +gZv +vnD +qfG +wiH +aXo +gav +qOv +qXp +yfa +jqb +wqN +qAh +kCN +joT +ekH +dyD +kQH +pdl +tto +mfA +bwM +xSr +dWp +and +wFo +xJd +eoO +eoO +clZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(88,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +huG +kAq +pop +gQG +exK +mMs +mMs +dzV +pvC +pRi +psS +fRk +vkK +hsw +ntz +cxF +gZv +gZv +dVj +gwG +qci +uLu +oHF +pZF +qLd +ccj +pdJ +qOv +cBv +qOv +qOv +qOv +qOv +qOv +hyS +qOv +eln +wgr +bYX +mfA +qVV +pNV +lnE +waS +uBi +sSX +sSX +fvJ +clZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(89,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +fGp +exK +ucx +ucx +aRr +bAE +pRi +eMr +dIn +aRn +hsw +eHm +eQR +gZv +gZv +oqy +thy +eMR +uWA +gWK +qeZ +cMN +ccj +qOv +xMK +bkU +taX +lbL +qOv +qQM +ldC +crr +mgz +nVz +nVz +aFR +mfA +mfA +mfA +mfA +mfA +mfA +oyl +sSX +ePH +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(90,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +kAq +xlf +fGp +exK +ucx +ucx +igT +sbq +pRi +wlW +drH +hsw +hsw +jPb +vUL +oTF +orC +ruj +gZv +vvR +sRy +fny +tnn +sPT +dji +qOv +oGZ +bkU +mFy +oQH +qOv +ves +lWg +crr +gIe +nVz +tNN +rIt +vwm +riQ +xGv +moY +qtr +xuf +bxQ +uWu +uYw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(91,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +rpE +poX +rpE +rpE +rpE +rpE +poX +tXe +hLJ +kAq +xlf +syI +exK +jxW +mAI +igT +dQs +pRi +yiE +xdx +fny +gXo +jPb +vUL +saX +sDP +pSm +rAm +ebz +dJP +fny +wLl +aYz +lYP +qOv +hyP +tOC +bTg +vtT +qOv +tPf +tGK +ryJ +eCs +nVz +pxz +iYx +oNm +rcc +xCJ +iHy +mtW +beu +bxQ +uWu +uYw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(92,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +tXe +tXe +iPB +tXe +tXe +tXe +tXe +iPB +tXe +hLJ +dRQ +vQj +pHO +sYe +xYm +glA +uNw +xik +dSr +rUI +bWQ +fny +eVd +jPb +qfC +igY +yeh +paF +uXq +uew +llm +fny +tTs +tpK +ccj +qOv +pIX +jLN +szH +pIX +qOv +wXk +vWL +ldT +wXk +nVz +yas +egL +yka +nNi +dQG +cnj +xoP +xet +bxQ +uWu +uYw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(93,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +axP +oxE +lJx +oxE +oxE +oxE +oxE +lJx +oxE +qQz +nkV +pop +enp +bqX +xVS +czV +haa +lPF +wLw +bRx +bKH +xUw +xUw +xUw +xUw +xUw +xUw +xUw +oBk +fbk +fny +fny +lqj +xTK +hww +qOv +pIX +oAb +ato +pIX +qOv +wXk +oAb +ato +wXk +nVz +nyA +tXg +iYx +xrC +iDK +nVz +nVz +nVz +bxQ +uWu +uYw +voL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(94,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +wqe +qIp +utn +utn +dDa +dDa +utn +dDa +dDa +utn +utn +utn +pop +oBR +bib +rPJ +rPJ +atr +mwf +fWP +pmW +phW +xUw +qNm +nbT +byY +kFs +lDW +xUw +hZc +sWy +wgR +fny +txi +mzv +txi +qOv +qOv +qOv +qOv +qOv +qOv +qOv +qOv +qOv +nVz +nVz +nVz +nVz +iYx +siU +ylq +vHP +pDI +gFh +bxQ +uWu +nzW +nzW +nzW +nzW +nzW +nzW +nzW +nzW +nzW +nzW +nzW +nzW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(95,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +xxf +utn +utn +utn +qWx +qWx +utn +qWx +qWx +utn +utn +utn +utn +dBU +dBU +dBU +dBU +dBU +dBU +fcI +tRN +bjs +xUw +fFR +lzW +aGk +adM +aqL +xUw +qvO +rYT +crD +fny +mDD +xPa +lsk +hOF +kRm +shX +mUk +kte +xjV +xDJ +cns +xDJ +nVz +wZI +uHj +faF +xtD +qJP +ezy +nVz +nVz +nVz +bxQ +uWu +nzW +nzW +nzW +nzW +nzW +vEW +vEW +vEW +vEW +vEW +vEW +nzW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(96,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +mKZ +utn +utn +nlx +bFk +oie +utn +jHG +jRK +kkL +gHC +oQB +dBm +dBU +epQ +epQ +epQ +xar +tnk +cto +qIk +iDf +xUw +lBz +dXe +kAE +vKa +sxz +xUw +pXM +yfl +jnK +fny +tmL +aDt +sxq +gqF +xft +dfL +lsM +sur +xjV +jMS +ddw +jMS +nVz +nVz +nVz +nVz +nVz +aun +nVz +nVz +fDr +nZF +fWF +yew +dDz +qxv +nnJ +oUH +gRr +hCt +qay +hCt +glv +xMA +hgg +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(97,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ibG +eME +utn +utn +vNv +jQz +eGe +swA +jJw +nmP +grt +qwC +jHq +ycK +dBU +rLy +oyB +nDj +nlS +dBU +dEy +tUB +bKj +xUw +xUw +xUw +xUw +syj +xUw +xUw +oBk +oBk +oBk +fny +otj +tuG +rMj +smZ +bDI +lcn +vmB +tOl +bVA +mtC +mtC +mtC +oGo +mtC +mtC +vog +gql +mtC +oGo +mtC +xOf +gVV +fWF +aFq +uxB +cam +kHe +dOS +nCE +bbO +xMA +nKz +dkl +xMA +hgg +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(98,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +hLJ +utn +utn +utn +atf +atf +utn +qMl +kvF +ejr +ejr +ejr +ejr +dBU +nsU +sIA +nUE +ewZ +ksC +dAl +nlm +xmH +xpQ +lPl +bSx +mNg +laG +wWp +eII +fPJ +xws +ydf +vke +sTZ +gDH +lhc +gqF +xpV +aoN +leE +bjU +xjV +qRO +hEf +qRO +qRO +evJ +qRO +rWz +kfu +tMl +vau +dwq +bii +cVq +fWF +lwn +yib +hBS +vvO +ufg +vgl +hCt +bAZ +hCt +adA +xMA +hgg +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(99,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +hLJ +uaW +kCD +ukG +cWK +oie +utn +vCG +gvQ +oFf +arm +kPX +npK +dBU +bsQ +dWO +xlN +lEK +dBU +aVO +ycv +cAK +ieu +xkH +iRm +ptb +sWf +xOe +wej +xVc +pZV +eRD +eEO +tPx +nKb +uSV +hOF +izz +kyj +qdS +aYb +jPi +lSx +lSx +lSx +lSx +lSx +lSx +lSx +lSx +lSx +lSx +agO +pqD +agO +fWF +fsI +kBs +vsd +dOS +dOS +uGK +cgH +bzA +cgH +cgH +cgH +vEW +nzW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(100,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +iJM +tLU +uaW +kCD +huY +xAG +eEA +swA +gFe +veC +vgV +miY +pyz +grI +dBU +bsQ +dWO +xlN +lEK +dBU +eIl +wzq +lQv +dFc +dFc +dFc +dFc +dFc +dFc +dFc +dFc +dFc +hQn +hQn +vsX +qit +vsX +lSx +lSx +lSx +lSx +lSx +lSx +sKC +cgR +sXB +sPB +weC +aNW +aNW +aNW +lkg +lSx +hha +hFc +njl +fWF +aFq +ofG +jBS +nXy +tHW +klu +hwv +fzr +foH +urq +urq +gYd +gYd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(101,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +jDS +utn +utn +utn +utn +atf +atf +utn +vWF +oaO +oFf +rye +qsi +wyn +dBU +jeK +dWO +xlN +lEK +dBU +eIl +tUB +aJI +dFc +euX +aWI +mRe +aaB +xWd +cKo +uBI +dFc +uxP +oow +rkT +bwJ +rtl +lSx +rtD +cqC +dte +xaM +ipX +tTM +jzA +lkt +ezH +fVs +fVs +fVs +fVs +kTu +aau +doN +bii +aeS +fWF +vbs +oGG +jdX +cDv +bXg +mDG +hwv +lTP +tEV +idu +ibF +gYd +gYd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(102,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +pZz +esF +rqg +sBz +rOZ +rOI +sIq +dMy +prO +kpb +oFf +plT +qXM +aKj +dBU +bsQ +dWO +xlN +lEK +dBU +wbr +kYd +rvf +dFc +xRM +cmR +bcY +tHa +iWB +oDb +gfp +jyb +oOr +oOr +rkB +boz +vWm +lSx +cho +aVe +oAm +yiR +hql +oAm +tNf +wNs +hjg +xmj +xmj +xmj +xmj +tKH +aau +doN +hFc +jzN +fWF +fWF +fWF +fWF +bsB +lvD +ffh +ftn +lAe +nPb +nPb +qbO +gYd +gYd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(103,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +pzM +sup +kCD +pLg +yjU +itC +aXW +sNM +jTN +lfP +ejr +ejr +ejr +ejr +dBU +xwl +wQk +oVN +sKf +dBU +whn +tUB +kXS +jNk +ktu +rGu +xuk +tCJ +vfs +ina +knd +lJN +gfV +ofW +owU +rhD +mSf +lSx +cZT +lnC +aVe +ygl +hql +hqv +aCc +lVm +uEh +uEh +uEh +uEh +uEh +uEh +aau +aso +mzF +kRL +caR +utX +sQQ +eSL +jDv +qhs +hbv +hwv +ptC +gQV +gQV +tJM +gYd +gYd +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(104,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nrg +uaW +kCD +pLg +cXs +nYn +jdm +dSS +cxR +qhl +xXG +eqS +puM +hvh +dBU +xFc +etV +eia +uOQ +dBU +eIl +uLI +sbo +dFc +hVg +nqB +kWb +dIL +fUv +aYx +ktu +oTx +ktu +ktu +rkT +dwC +gSB +lSx +bBU +qwJ +lLY +uxa +fHe +uxa +xcx +wAU +mNs +fOF +fOF +ukQ +fOF +fOF +lSx +rJC +hFc +lgz +fWF +duF +iQy +fWF +kEE +tvG +hlO +hwv +idr +hNm +hkA +ibF +gYd +gYd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(105,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nrg +uaW +kCD +grF +sIs +uau +qLg +ffc +nJm +nzX +iqR +dLd +fZo +dVc +dBU +xFc +xFc +ano +kDh +dBU +iOx +amo +egj +dFc +dFc +dFc +pcp +vXJ +tzW +tkb +niY +dFc +kBt +blG +rkT +pxj +bvW +lSx +wYz +uxN +pnp +eLn +gKr +fVS +aKh +sAy +wRB +pik +kin +lSx +lSx +lSx +lSx +nXu +hFc +cwq +fWF +fWF +fWF +fWF +fWF +fWF +fWF +hwv +cCj +pYr +bNq +uqa +gYd +gYd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(106,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +aCR +aCR +mHT +mHT +mHT +mHT +hBO +sSp +hBO +mHT +mHT +mHT +mHT +dBU +dBU +dBU +dBU +dBU +dBU +rjG +jMh +fhm +lNl +hxm +dFc +dFc +yfb +dFc +dFc +dFc +dFc +hQn +hQn +uVJ +pxj +ifq +lSx +mwD +cvy +eFg +pHc +mcq +sIi +xjk +kmy +rbt +fwy +rto +esl +bQZ +uSj +dLU +hKl +lih +cqV +kwI +cfK +pch +qyQ +lCC +qkP +gJQ +kwI +thW +thW +thW +thW +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(107,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hLJ +uaW +msF +rsf +aNR +skh +hBO +lHV +pSP +gjj +mmy +mHT +ahA +arC +atC +mHT +wgY +sto +tEK +pqb +gyU +mit +dRO +xGZ +bWJ +tBW +sJv +dNp +dNp +tBW +dNp +dNp +dNp +nJl +tfk +rcD +emK +lSx +ezK +vHg +eFg +uWf +uql +xTc +pnK +kTV +gpb +pbU +duJ +lSx +mNJ +qfZ +lSx +hSn +uaD +hYi +kwI +hkL +bhg +qCU +gWk +rnP +xBY +kwI +thW +lNb +uUl +qEw +pfw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(108,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fdX +aCR +aCR +uUh +gTc +hVT +dLm +xIZ +duu +gRO +dDp +hAE +aeq +cEb +dvU +qUN +ojy +cGc +fKp +fKp +cgp +eFn +fhm +txH +rXd +szq +kcF +fjF +kfW +qPS +tfZ +nrG +dhH +eJC +gsw +cEL +mDk +lSx +ezK +bLT +lFH +bSH +hQf +lWC +fNC +xBZ +bQy +eMj +lSx +lSx +iHA +pFu +lSx +anv +uaD +ddw +kwI +icW +cxL +xql +cPv +jZO +tDj +kwI +thW +dYL +xBH +kYE +pfw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(109,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +gnW +nTz +rMc +gDr +nrb +iUN +rgQ +hBO +pbh +mtQ +qeH +gFj +bwQ +qfh +qxU +aQC +msg +yfk +krA +epy +fRq +gJt +fJR +fhm +fhm +dHF +fhm +fhm +wgY +whX +whX +whX +whX +whX +whX +egn +qit +vsX +lSx +qpr +pgN +lSx +lSx +shZ +lSx +xkF +iuK +aEM +qdz +lSx +lSx +lSx +lSx +lSx +gjJ +oin +isX +kwI +jhy +kxH +fiP +aAP +sKE +dvd +kwI +thW +nAO +sBG +vDg +pfw +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(110,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +xxf +fNW +fNW +ttc +ttc +ttc +ttc +ttc +gpR +fZp +qOk +ttc +vfY +seC +otk +mHT +wgY +dwV +ryn +mkE +iDp +jEt +fhm +iAq +jXK +oBS +eVW +wgY +boT +xIJ +rNn +xIJ +boT +whX +pyf +cEL +rtl +lSx +ezK +cvC +lSx +iXS +sqq +lSx +mnz +llb +szj +cwy +lSx +qzl +hAz +uEn +aXq +vuW +hUN +dGl +kwI +kwI +kwI +kwI +ntA +mYq +kwI +kwI +thW +byW +fMs +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(111,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +wvG +iIF +fNW +fNW +qvY +dlX +aAz +yjh +mLn +hjn +xRA +ttc +ttc +ttc +ttc +wgY +gpA +pPu +gbu +rOv +uWh +wPq +fhm +uni +lwt +mcI +lIy +wgY +cPg +eig +nHi +eig +gwZ +whX +wgN +fdF +bQg +lSx +ezK +cvC +lSx +qHf +sxS +lSx +lSx +lSx +lSx +lSx +lSx +cIj +vhE +bSo +pVx +nEo +sXD +aIL +thW +jVv +jRw +tQm +cmw +fOL +xce +xxo +xxl +cAl +lCc +qsA +xNQ +cJX +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(112,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fdX +mKZ +fNW +fNW +hYN +cOY +hvU +reS +lvs +vaT +qih +dfT +mTY +xkR +ttc +wgY +fhm +uEp +aBp +fhm +fhm +fhm +wgY +wgY +wgY +wgY +wgY +wgY +mRM +whX +iTv +whX +jTC +whX +jTr +fdF +bQg +lSx +lSx +lSx +lSx +sZx +lSx +lSx +rMo +fGn +rMo +bEB +qxP +ung +wuH +ozF +pVx +pje +sXD +nuC +thW +hio +sGP +qyi +pfy +cki +gCb +nVY +bMX +tXG +iGl +hsn +qdi +kcj +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(113,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fdX +fjw +xCC +xCC +czE +mJU +eRj +cHz +rEd +hLX +wVT +oTc +amx +ore +ttc +dTZ +aAB +bVO +xSl +uRz +tvZ +whX +mRS +cOR +eNJ +tZT +rlW +qQF +ngO +cqv +sFU +fCf +sLl +whX +imM +gli +oGX +wBr +xFQ +euE +mxO +cSZ +kqA +cfP +lhv +cCF +rMo +rMo +qxP +ung +oGP +blw +pVx +qhw +sfu +krs +thW +pRA +vZY +jGW +uat +koh +haH +jCQ +mOx +hNf +uZH +oAi +vHc +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(114,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +wqe +qIp +fNW +fNW +uek +nzL +rCd +rCd +rCd +yko +nBy +grv +cjH +cAm +ttc +nEx +vJS +aVj +eWT +fHP +tvZ +whX +wwT +dej +ajb +kkG +wyO +whX +jTC +whX +ueq +gqw +gfz +qoe +wgN +oqU +boM +pgv +otI +xPy +chi +bkg +nLH +cfP +lhv +qZt +qZt +tHE +qxP +ung +wlh +pVx +fPs +fPs +rPN +fPs +thW +yjb +vZY +ltO +xGD +kLF +fPb +xNQ +eQv +iIz +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(115,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +xxf +fNW +fNW +fNW +ttc +ttc +ttc +ttc +ttc +ttc +ttc +ttc +ttc +ttc +ttc +mHp +etK +ehT +mSi +wAE +whX +whX +wwj +daT +mRQ +qoZ +lvN +whX +boT +xIJ +liM +ont +hDW +qoe +wgN +fdF +tUE +vcq +yfH +fOT +hwZ +gIn +nLH +vTq +lhv +elP +vts +tPr +qxP +hjK +gNw +sSL +fPs +iQY +wQC +slL +thW +pSn +iqH +mRt +oqq +nit +aAt +sJE +lim +aRb +qbl +lxY +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(116,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +gnW +nDC +gTl +gTl +gTl +tQj +wcm +fpG +pXP +eYI +gPe +iVd +gNq +siT +omT +cus +pNJ +jsl +luo +thC +pzZ +rjy +sGb +wPR +lIf +pVH +rpI +vlt +whX +lLv +xIJ +hcM +ont +hDW +qoe +sIf +cEL +aDB +wBr +lwd +ljg +btf +rnI +lDM +cfP +lhv +hJw +elP +boO +qxP +qxP +umo +qxP +fPs +kpM +fUf +sfh +thW +tGr +hWW +rav +gkq +wCd +mmJ +uDG +rso +hhI +mEP +lxY +ijM +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(117,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +gTl +gTl +gTl +vhP +wcm +aXz +suL +bIT +dQH +dlV +kuu +cAa +ikK +nOW +qFc +nOW +kGD +bXv +gSk +whX +wSb +lQt +whX +whX +dKv +whX +whX +whX +whX +ucT +opE +ucT +whX +egn +qit +vsX +xbJ +xbJ +hqt +hqt +tWT +xbJ +xbJ +xbJ +xbJ +qZt +rMo +kcK +gVa +dTy +hQr +fPs +xsg +vUn +xLN +thW +sBe +hWW +rav +bQA +jxR +cyc +iyb +kJV +sKn +aRb +lxY +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(118,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +mIq +fvG +fpU +uJz +fwW +oEg +men +nGt +upY +gPe +vdU +nrK +ezv +omT +tEs +cep +ulS +oBg +tpH +tpH +tpH +tpH +tpH +tpH +bLn +cpb +sID +ljA +wsW +ovu +meE +cpb +nsT +tpH +gBo +cEL +aDB +cgE +dHa +vaD +xTZ +cKg +xfY +duG +cug +xbJ +xbJ +xbJ +xbJ +xbJ +pVx +fbD +rFq +rFq +fAO +rFq +thW +fFG +qeB +hJV +bbq +nit +vuZ +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(119,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +fdX +hLJ +uJz +gAr +wig +vqf +hsY +gAr +gPe +pLk +pLk +pLk +omT +hvF +hjo +sZF +wwN +tpH +odI +fOk +tpH +gss +tpH +sYD +cpb +ghE +cgj +ghE +mBG +tRq +iby +jsk +rAU +qVC +ngV +tUE +tOx +dYZ +iSR +kEx +hXn +yaV +dxB +lIv +avt +ckB +pUn +oeg +xbJ +qxP +uYI +rFq +bLr +sas +vXV +thW +vVo +hWW +rav +oqq +nit +aAt +fgo +lim +lim +qbl +arN +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(120,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +hLJ +uJz +aLo +oLY +wig +oEW +aLo +gPe +omT +omT +omT +omT +omT +omT +omT +hgB +tpH +aXB +kOA +hvt +xje +cfM +hNN +ffj +drr +hDl +cub +gZm +drr +miM +sAP +leq +gBo +fdF +hyz +xbJ +jBc +rLE +abI +hXn +pGe +aZJ +rcW +aSH +xtM +sor +urv +xbJ +qxP +uYI +rFq +uhJ +boN +xEQ +thW +sBe +hWW +rav +gkq +nHz +waX +lYK +mIs +rPO +mEP +arN +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(121,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aAY +gTl +gTl +gPe +koH +wKF +nUm +bdT +gPe +qtw +rWg +tqy +wwV +lKH +mBr +omT +rwA +tpH +qiu +mjE +iue +xMu +jfc +tIg +xin +jED +dYa +jED +rrc +jED +xmm +pYI +tDD +jME +rtE +dqe +eSF +tms +mAN +jQk +gjX +npC +blA +lnR +ugw +muw +uQR +sPq +xbJ +aQd +uYI +rFq +vdA +vNl +bOZ +thW +fFG +qeB +fgP +bQA +vzp +eDk +fgo +mvM +uFL +aRb +arN +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(122,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hUv +dxZ +dxZ +omT +omT +omT +omT +vwy +omT +cRD +rWg +iAT +vJS +rbD +dCQ +omT +rwA +tpH +tbT +tVV +pbl +ovQ +cfM +mzt +vXE +erj +oEm +qzj +wyE +pRZ +nVa +tHv +tpH +ePE +axY +wUD +xbJ +xbJ +jUA +rIX +kAL +wuT +kAL +etE +avt +tIN +gKH +reI +xbJ +aUf +heX +dQM +dQM +gCO +dQM +dQM +sBe +hWW +hzb +bbq +vzp +mmh +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(123,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xgX +dxZ +dxZ +jcz +sQS +erY +hHa +vFw +omT +bUE +sjN +qTe +jSD +qTe +neR +omT +rwA +tpH +tpH +tpH +tpH +tpH +fqJ +fqJ +fqJ +fqJ +fqJ +fqJ +qVI +qVI +qVI +qVI +qVI +eWI +doV +rRI +tKC +xbJ +gGM +qeU +xBR +jGP +xBR +nTO +xbJ +xbJ +xbJ +xbJ +xbJ +pVx +fbD +dQM +dQM +hKq +eBL +dQM +xQT +hWW +rav +oqq +vzp +aAt +mkj +lim +aRb +qbl +kbd +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(124,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fdX +dxZ +dxZ +xvF +sQS +qPR +iNH +jZY +kgy +wPU +aXj +aXj +aXj +uzw +fHv +hIX +xZW +jLK +nCk +hwN +lBs +wUC +fqJ +muW +dUK +pgY +xrm +fqJ +jSB +pyv +qVI +nxy +qVI +juk +tlz +spC +tKC +xbJ +acJ +qeU +qub +pIy +wiJ +pQN +aOd +xbJ +wUp +keP +xbJ +qxP +uYI +bPd +dQM +lsj +xaP +jcU +dsW +plF +iZc +gkq +fzG +mmJ +qnl +rso +hhI +mEP +kbd +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(125,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +dxZ +dxZ +jcz +kPB +kqQ +pck +cxH +omT +dzR +wNu +wNu +wNu +txx +lld +omT +kdF +wCt +jsl +mDV +dqY +uWD +fqJ +kxB +sDj +aMo +uFk +qDS +vpJ +ebc +rWN +nrJ +qVI +gHQ +dQP +xPs +eJC +xbJ +gpN +qeU +xBR +hjP +xBR +pbf +dMG +hMg +xTZ +xTZ +jYP +qxP +ajO +emS +dQM +hqO +tJY +dQM +qFD +xkZ +jSn +cGw +xEn +fQM +xbA +sIo +udR +hTK +oqs +kIn +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(126,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aAY +dxZ +dxZ +xvF +sQS +wDo +fwO +cxH +omT +oqu +pjk +jHC +wRX +bjg +xlB +omT +nkP +iMf +jsl +mDV +kzR +gYS +fqJ +cHq +jRt +bZZ +suP +fqJ +qVI +fiC +qVI +fiC +qVI +ylZ +tZJ +ylZ +uCT +uCT +uCT +btE +vHM +sEr +dIF +nJX +qlx +xbJ +eVv +hAV +xbJ +qxP +jbQ +xCW +dQM +dQM +dQM +dQM +itQ +npI +ycV +viU +isH +sPD +xNQ +xNQ +xNQ +xNQ +xNQ +ciz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(127,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +dxZ +dxZ +xvF +sGM +sQS +sQS +kPB +omT +pSt +pSt +omT +wMQ +bJf +wMQ +omT +omT +kok +jsl +qxi +kpz +kpz +dpG +paK +luO +jyV +meG +fqJ +qVI +cUK +nnf +qGT +ksk +hhE +vky +kot +rzd +tDo +uCT +uXP +eou +xbG +dIE +nLM +xbJ +xbJ +xbJ +xbJ +xbJ +rNE +uYI +cEW +npI +nXt +bJT +tkL +rbV +wpI +oIE +vox +xEi +gOr +dOc +obm +mes +xNQ +xNQ +oOJ +uLo +lZa +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(128,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xgX +dxZ +dxZ +dxZ +xvF +uxj +xvF +xvF +omT +wMQ +wMQ +wMQ +scU +ifh +qBr +aFO +aee +gYt +ivD +ukv +rPS +bjY +fqJ +rlI +nMP +hrj +gMa +fqJ +lFW +rPD +wmv +hhE +dUq +jAx +qDh +dUq +jAx +bXq +uCT +xbJ +xbJ +xbJ +xbJ +xbJ +xbJ +eLZ +eLZ +mwo +pVx +pFv +mQK +rMo +npI +uiC +aAf +aAf +fLe +sck +pal +jOa +vRo +jhS +xNQ +pin +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(129,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iSW +dxZ +dxZ +dxZ +dxZ +dxZ +dxZ +dxZ +dxZ +wFV +wFV +wMQ +wMQ +bJf +wMQ +wMQ +wMQ +wMQ +wMQ +wMQ +wMQ +wMQ +fqJ +fqJ +fqJ +onJ +fqJ +fqJ +oHQ +fUt +aUm +hhE +ewu +kUV +qDh +ewu +kUV +hhE +iWt +pVx +lby +vVM +lby +lby +lpI +qxP +qxP +qxP +nae +qxP +uYI +rMo +mMR +xml +kWm +kWm +wAR +lbK +chg +erx +vtZ +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(130,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +fdX +hLJ +dxZ +dxZ +dxZ +dxZ +dxZ +dxZ +dxZ +wFV +btR +fXg +cIi +wyy +oxy +oxy +sUj +hKO +xWW +ibC +xWW +aux +diO +lTZ +ggm +dEQ +jRN +lTZ +gLB +uCr +jkN +gNP +leU +leU +vEv +una +una +wWb +bQW +pVx +lby +qxP +qxP +qxP +qxP +qxP +dgk +fQV +pVx +qxP +uYI +rMo +nms +cXt +ymg +ymg +tjn +npI +qBO +mNV +jBY +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +xNQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(131,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ycO +peK +bzD +bzD +bzD +bzD +ixH +bzD +bzD +hZG +tVr +uao +seK +kXO +nab +oGD +tOw +mRk +mRk +tqL +wek +xno +yav +lTZ +kOu +rDh +qSS +shv +rNw +qAn +ezz +jjF +sWv +bFt +has +dUq +jAx +hhE +qZJ +pVx +xIj +qxP +beV +pTb +lpI +qxP +qKa +jYi +pVx +pVx +uSn +bzg +bzg +bzg +bzg +bzg +bzg +thW +iLd +qck +qFq +bUX +qbl +lim +kGy +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +qzu +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(132,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +sTx +iLc +sTx +sTx +sTx +sTx +sTx +sTx +sTx +hZG +tVr +ejS +jaU +gZL +rZQ +hkH +rZQ +gZL +gZL +wGf +qvr +rZQ +kUW +lTZ +jKH +caZ +pnM +lTZ +idY +oHQ +wmv +hhE +ewu +kUV +nFc +ewu +kUV +bXq +qVI +pVx +mwo +qxP +hNs +qff +vtH +qxP +pkb +pkb +pkb +pkb +oFK +eah +hOz +dJY +bzg +bzg +bzg +thW +iLd +rOG +jPe +ooE +dVo +jJm +kGy +ijM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(133,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +rmS +rmS +rmS +rmS +rmS +rmS +rmS +hZG +pcc +uIp +gZL +mXn +bxH +hkH +hyL +gZL +lgB +hkH +eqo +qvr +reP +lTZ +bFp +rUp +wst +lTZ +qVI +ilr +wmv +hhE +hhE +hhE +plN +hhE +hhE +hhE +hTS +qxP +qxP +qxP +qxP +qxP +qxP +qxP +pkb +qfJ +fok +vNH +lFI +qus +qus +agF +bAL +iSd +dty +thW +gGH +qXj +sGB +fAm +eDg +pcC +cYk +tBs +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(134,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +kkr +kkr +mVd +mVd +mVd +mVd +mVd +mVd +hZG +tVr +uIp +hkH +tok +hkH +alH +kmc +sIV +hId +jKL +aEI +rqK +kUW +lTZ +lTZ +lTZ +uGe +lTZ +lTZ +lTZ +lTZ +cDo +imE +clR +sdg +clR +imE +cDo +qVI +fQV +inS +qxP +dgk +fQV +hpb +qxP +pkb +plk +uyB +uyB +sIN +lxJ +lVC +bzg +bzg +vwv +bzg +thW +thW +thW +thW +xNQ +xNQ +xNQ +xNQ +qsw +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(135,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rmS +rmS +rmS +rmS +rmS +rmS +hZG +tVr +tAb +hkH +nuj +shU +hId +lhU +xdE +fol +fCx +jaU +qvr +yjA +lTZ +akC +hgH +wst +odG +bPu +bPu +lTZ +qVI +tjd +rLj +qVI +rLj +tjd +qVI +qVI +qVI +pVx +qSp +pVx +pVx +pVx +oSk +pkb +rku +lKC +ubG +klp +rrX +bzg +bzg +nDE +flP +bzg +oZu +wws +gKF +gKF +xNQ +xNQ +uYw +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(136,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +kkr +mVd +mVd +mVd +mVd +mVd +hZG +rMn +ejS +hId +cKF +qqF +gfk +dCm +gZL +hkH +hId +qvr +rZQ +kUW +lTZ +akC +cZz +unU +wQf +bPu +bPu +lTZ +syB +qIe +pyJ +vmE +pyJ +qIe +qIe +ssS +qVI +red +gkD +wMZ +pVx +uUH +rnD +pkb +mKo +dch +xSL +bzg +bzg +bzg +sRG +kQF +pKO +kKU +cua +azQ +gKF +gKF +vOQ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(137,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kkr +kkr +bzD +lHq +bzD +bzD +hZG +pcc +ejS +gZL +gZL +gZL +uKA +hkH +gZL +ybd +hkH +nSC +rZQ +xcm +lTZ +uxl +ajs +jiT +aKn +vJb +vJb +vlH +jGY +hWb +mFo +jGY +amS +mFo +jGY +toK +qVI +cem +gkD +gkD +pVx +xbO +rnD +pkb +pkb +pkb +pkb +bzg +nam +nvP +hfX +jsD +asm +gKF +poB +gKF +gKF +abk +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(138,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +ryg +sTx +sTx +hZG +tVr +qBx +ryI +egT +kby +xLe +sBR +kgB +kCj +ycX +kCj +kCj +tQZ +lTZ +iwY +vXk +vXk +qZo +sAA +khu +lTZ +aDv +idj +dxq +aBE +jzf +dxq +qIe +fIB +qVI +uzY +qVk +ajF +pVx +uUH +rnD +kiU +kiU +gvy +xkD +bzg +yez +kQW +sEy +bKP +mKH +gKF +gKF +gKF +uYw +uYw +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(139,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +hAD +fpU +wFV +wFV +gJl +yeg +yeg +yeg +wyB +cDE +eIg +rgg +qBr +dhC +hkf +hkf +hkf +lTZ +hgM +hgM +hgM +nUO +pQX +lTZ +lTZ +ajj +qIe +bmG +bmG +apB +bmG +nTR +qVI +qVI +cLx +vhF +wzk +pVx +ucp +rnD +rnD +kiU +kiU +kiU +bzg +beJ +cfm +aXh +gxp +jrj +gKF +gKF +uYw +fww +fvG +xTI +gSd +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(140,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +xgX +fpU +wFV +wFV +wFV +wFV +wFV +jWE +ggb +mXR +htc +wFV +wFV +wFV +wFV +wFV +pWz +pWz +pWz +pWz +mJV +pWz +pWz +lTZ +imm +cBH +bmG +bmG +apB +bmG +dqu +qVI +qVI +bXT +bXT +bXT +bXT +bXT +bXT +bXT +bXT +bXT +bXT +gKF +aOg +mYt +fKj +gKF +gKF +gKF +gKF +fww +ucQ +gYE +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(141,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +tXe +xgX +fpU +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +wFV +pxc +pxc +pxc +pxc +gvE +cpT +sgn +mYK +hfl +mYK +lOr +kOt +lnp +kOt +sIU +mYK +mYK +hvo +bXT +bXT +bXT +bXT +bXT +bXT +bXT +bXT +bXT +gKF +gKF +gKF +gKF +gKF +gKF +gKF +fww +ucQ +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(142,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +eLH +tXe +tXe +xgX +fpU +tng +uYw +wFV +wFV +wFV +wFV +wFV +wFV +ubp +tng +uYw +uYw +uYw +hui +tvE +uYw +tng +kAq +pxc +liJ +bdy +liJ +hCU +pbW +dbt +tDG +hCU +liJ +liJ +kAq +tng +nKE +lxi +qgy +uYw +uYw +uYw +tng +bXT +gKF +gKF +gKF +gKF +gKF +uYw +fww +ucQ +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(143,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +iQn +tXe +tXe +mIq +fvG +fvG +fvG +uqd +fpU +uYw +uYw +uYw +qMW +uYw +uYw +uYw +nKE +dvc +nKE +nKE +nKE +kAq +uYw +liJ +tOd +liJ +doM +doM +doM +doM +doM +liJ +uYw +kAq +nKE +nKE +nKE +tzT +nKE +uYw +uYw +uYw +uYw +uYw +uYw +uYw +rTO +wgP +fvG +xTI +uyK +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(144,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rZL +rZL +rZL +rZL +rZL +iQn +hLJ +hui +bcv +bcv +bcv +bcv +bcv +bcv +bcv +dmo +uYw +uYw +uYw +kAq +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +kAq +uYw +uYw +uYw +dvW +bcv +bcv +bcv +bcv +bcv +bcv +bcv +qgy +vOQ +gYE +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(145,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +idA +hLJ +xcu +xcu +xcu +xcu +xcu +xcu +xcu +xcu +dYA +nxJ +nxJ +nxJ +nkV +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +pCe +nxJ +nxJ +nxJ +gWF +xcu +xcu +xcu +xcu +xcu +xcu +xcu +xcu +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(146,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +kAq +uYw +uYw +uYw +uYw +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kAq +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(147,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wca +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +kAq +uYw +uYw +uYw +uYw +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kAq +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(148,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +kAq +uYw +uYw +uYw +uYw +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kAq +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(149,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +kAq +uYw +uYw +uYw +uYw +uYw +hLv +lHt +bFr +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kAq +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(150,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +kAq +uYw +uYw +uYw +uYw +uYw +jVZ +lHt +tVt +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kAq +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(151,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +uJj +fvG +fvG +fvG +fvG +fvG +hFW +lHt +aIC +xwu +uqd +fvG +fvG +fvG +fvG +fvG +fvG +fvG +fvG +fvG +uuA +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(152,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +vlW +rZL +rZL +rZL +rZL +rtT +rtT +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +iQn +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(153,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +huG +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +lVP +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rvv +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +voL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(154,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(155,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(156,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(157,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(158,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(159,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(160,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(161,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hLJ +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +ciz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +xxf +rzI +rzI +rzI +rzI +rzI +rzI +rzI +rzI +vOQ +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(162,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +huG +kMW +pbY +kMW +pbY +kMW +pbY +kMW +pbY +ciz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xxf +kMW +pbY +kMW +pbY +kMW +pbY +kMW +pbY +voL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(163,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +kdR +hWt +hWt +hWt +hWt +hWt +hWt +hWt +cGY +frl +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +wvG +vLv +hWt +hWt +hWt +hWt +hWt +hWt +hWt +tXi +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +qVo +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(164,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rZL +rZL +rtT +rZL +rZL +rZL +uqg +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +uqg +rZL +rZL +rZL +rtT +rZL +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(165,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(166,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(167,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(168,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(169,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(170,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(171,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(172,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(173,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(174,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(175,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(176,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(177,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(178,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(179,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(180,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(181,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(182,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(183,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(184,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(185,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(186,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(187,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(188,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(189,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(190,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(191,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(192,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(193,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(194,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(195,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(196,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(197,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(198,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(199,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(200,1,3) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} + +(1,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(2,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(3,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(4,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(5,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(6,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(7,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(8,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(9,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(10,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(11,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(12,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(13,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(14,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(15,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(16,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(17,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(18,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(19,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +yad +rtT +lko +kkr +lko +lko +lko +kkr +lko +rtT +yad +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(20,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +ffy +tSD +lRZ +lko +lko +lko +lko +lko +lko +lko +lko +lko +lko +tSD +ixA +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(21,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +xdF +lHt +hCT +lRZ +lRZ +lko +lko +lko +lko +lko +lko +lko +lko +lko +lko +lko +tOt +tGg +rtT +rtT +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(22,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +hnL +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +lRZ +lRZ +aoe +lRZ +lRZ +lRZ +lko +uwd +uwd +uwd +uwd +uwd +uwd +uwd +lko +lko +lko +lko +vja +lko +lko +raX +xPM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(23,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fbs +uLo +fnN +lRZ +lRZ +alX +lRZ +lRZ +lRZ +uwd +uwd +uwd +uwd +kkO +sEP +uwd +uwd +uwd +lko +lko +agR +pwm +eDX +lko +iPB +tXe +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(24,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +tXe +soS +sMe +lRZ +lRZ +fKa +lRZ +fWM +wFh +uwd +uwd +uwd +uwd +sEP +gHL +uwd +uwd +uwd +uwd +vja +ylx +pTK +qOc +lko +ucs +xsf +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(25,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +lRZ +sMe +lRZ +lRZ +jUt +lRZ +jTO +syq +rWD +rWD +rWD +rWD +rWD +rWD +rWD +rWD +rWD +rWD +unn +unn +unn +jKJ +unn +ucs +lko +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(26,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +sMe +lRZ +lRZ +nnI +lRZ +xXQ +syq +wMF +dKB +dKB +dKB +dKB +dKB +dKB +dKB +dKB +dKB +unn +iGi +iWD +mDL +unn +cLp +lko +lko +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(27,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +tXe +tXe +lRZ +lRZ +idI +owd +vTd +aWS +qIT +slD +syq +diy +diy +diy +diy +diy +diy +diy +diy +diy +dKB +unn +dTD +vdj +qmR +xsN +cLp +unn +lko +tXe +tXe +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +gHi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(28,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +lRZ +lRZ +lRZ +vsn +epq +bzE +nCx +vlw +lAM +syq +diy +qXR +hcf +nxN +fmT +dOk +age +msI +diy +dKB +unn +jVH +pxs +mjf +dTW +ile +unn +lko +lko +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(29,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +lRZ +hDt +hDt +aOa +jhb +mhF +nlo +qmw +syq +pxV +pDz +rhH +iBO +lfg +iNg +dOH +pDz +pxV +dKB +unn +qNb +efD +cYE +xcJ +bYU +unn +rWD +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(30,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +lRZ +iEb +iEb +aOa +gpq +tGL +wPV +cUe +syq +diy +qXR +hJM +hDE +iNw +xCY +iBI +pQr +diy +dKB +crB +iuS +mJQ +fmM +iuS +iuS +crB +rWD +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(31,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +lRZ +fIe +fIe +aOa +uPh +opv +aEz +ooK +syq +diy +diy +diy +diy +nBW +diy +diy +diy +diy +dKB +crB +bNl +dBS +ejB +pvi +qIQ +crB +jxX +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(32,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +lRZ +iEq +ixd +aOa +syq +bpU +syq +syq +syq +dKB +dKB +eQE +eQE +wEU +eQE +eQE +dKB +dKB +dKB +crB +kQx +wvM +uly +bWz +waF +crB +jxX +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(33,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +lRZ +lRZ +lRZ +syq +syq +syq +kzS +hGR +kzS +kzS +kzS +bOx +bOx +bOx +vVu +aSG +uOc +bOx +bOx +bOx +syJ +crB +uBS +qQx +iQX +bWz +bMl +crB +jxX +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(34,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +fdX +nIB +nIB +bsZ +bsZ +bOx +fXl +nzV +uIP +kbR +sdI +gWj +oPJ +bPm +dPO +hXE +kOz +hGU +pKx +qoE +nBp +msl +dEo +oZT +vez +rPQ +muc +crB +jxX +lko +fdX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(35,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +fbs +xzw +vzX +dkR +dkR +lif +fQz +fjQ +ciF +gNL +lXc +dNR +xYW +xYW +cwY +hdb +nWj +xnL +cAd +iep +uCN +uCN +fwE +kRW +lNk +sar +kYu +xES +pZq +oVY +hdo +fVh +mli +xPM +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(36,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +fdX +nIB +nIB +hdp +dij +bOx +owy +fgf +puD +uCN +uCN +idH +tZj +eXb +jze +pDK +ogW +ogW +ogW +vkL +vkL +iuS +gpw +ukn +onG +jZZ +eqd +crB +jxX +lko +fdX +eLH +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(37,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +fdX +nIB +nIB +qIZ +bOr +bOr +ifM +ifM +ifM +fLp +wgO +usv +ifM +ogW +emo +reN +ogW +dKQ +jVc +vkL +wds +vkL +vkL +vkL +vkL +sut +vkL +kei +kei +lko +kkr +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(38,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +eLH +biw +nIB +nIB +hXy +bOr +hpO +hoi +bhB +fMy +fue +izW +dgc +ifM +wvk +iPs +qar +qZn +toA +oEU +vkL +kJY +sWJ +mKp +vkL +bon +eVG +bTN +tsn +kei +lko +qYn +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(39,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +uYw +stv +qPH +rox +sqc +uZW +mmt +gWQ +qbt +qNW +aCD +qNW +ohz +fOr +qPA +erN +sSC +cYq +jHh +hfO +vkL +waR +bWr +pgW +egt +nTD +xQy +kZr +hpF +kei +lko +oFU +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(40,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +qMW +uYw +uYw +kXa +aif +aAp +rsp +mmt +gWQ +tcS +eJi +cIZ +jAF +tLp +iQp +rmB +arG +lWc +rhk +dCO +aMI +vkL +sdG +iyn +uXb +vkL +wIy +pHN +mLa +bpK +kei +lko +oFU +lko +lko +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(41,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +aTh +tXe +tXe +vDB +dDg +uYw +pJv +bYb +oOW +uWs +amA +gWQ +oXV +qNW +aCD +qNW +mZX +sQk +obq +vZQ +qnS +arU +eVa +uWO +arU +arU +arU +arU +arU +arU +arU +mFq +lZU +lRN +lRN +pEX +lRN +lRN +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(42,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +tXe +tXe +tXe +vDB +nIB +nIB +bqG +nIB +nIB +uJF +aEy +aBJ +pBJ +vKK +vUU +sWH +plb +cNA +ifM +moM +dFh +wLd +arU +jJY +vBj +dUn +afQ +mOl +vqg +ast +dnx +jfh +was +dIX +uTy +eyD +huK +rtV +lRN +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(43,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +nIB +rtT +rtT +nIB +tXe +tXe +qMW +uYw +uYw +sqy +ceo +htX +sFe +lrn +vNO +bOr +bOr +bOr +bOr +bOr +bOr +bOr +bOr +ifM +lPG +dFh +pAw +jal +puC +tDu +eKz +wgn +eKz +agI +hbG +lfm +vMe +sAM +mnP +uTy +gCe +mUp +nPN +lRN +lko +uYw +uYw +uYw +uYw +uYw +uYw +uYw +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(44,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +nIB +nIB +rtT +rtT +nIB +xsf +uYw +vDB +hwE +hwE +nIB +eoV +lrU +nIB +dnl +oNZ +oNZ +uiv +oAj +jfy +mDl +nLn +dys +tep +pel +opR +dFh +pAw +bzi +otl +pLy +eDo +mPm +tdx +kvW +srr +bPC +arU +kUF +mhO +uTy +dzl +cvX +lYk +lRN +lko +uph +uph +uph +uph +uph +uph +uph +lko +lko +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(45,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +nIB +nIB +nIB +kkr +uYw +nIB +kkr +vDB +hwE +aVb +uYw +nIB +nIB +nIB +nIB +kXd +fUV +cPC +vbj +pqG +pqG +fVm +nQr +wel +bBT +ltp +aVs +nHZ +pAw +apQ +otl +pLy +fCW +oCI +tta +rFL +uIE +vVN +arU +eMW +iuB +wHL +lJb +oyb +xrn +lRN +lko +nxI +nxI +nxI +nxI +nxI +nxI +nxI +lko +lko +lko +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(46,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +nIB +nIB +nIB +nIB +nIB +nIB +nIB +nIB +sak +pJv +nIB +nIB +nIB +ndf +pgg +lYg +hil +uVw +uVw +uVw +uVw +uVw +uVw +cAJ +nTN +lOd +cIM +pPr +arU +aul +iNb +sdy +fpo +mdE +sha +pHG +oOO +arU +eoJ +mho +mho +mho +mho +mho +gfi +lko +nxI +sjA +vgO +jYU +vgO +sjA +nxI +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(47,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +tXe +nIB +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +nIB +nIB +nIB +nIB +nIB +oWv +ieD +pgg +oNZ +hyW +sfZ +sfZ +sfZ +fXJ +lYM +iLM +doP +qRo +daJ +cUn +fRK +arU +arU +arU +arU +arU +arU +arU +arU +arU +arU +qin +nrO +qPa +qPa +puf +tPq +gfi +lko +sjA +sjA +vpp +rky +iDb +sjA +sjA +lko +lko +lko +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(48,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +jYC +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +lAs +qoF +cuf +qBW +xae +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +oWv +wOU +qYz +qgl +qgl +qgl +qgl +qgl +qgl +qgl +qgl +qgl +qgl +ivL +pam +pkl +rPG +awb +bKK +pxY +xdC +eRo +sOJ +lIk +bOh +eRo +evy +rCE +uNx +hsm +bVF +vUv +gfi +lko +sjA +eVU +psD +rEh +sKN +uav +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(49,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +nIB +bsZ +lwp +dYs +biR +myX +xrL +gGJ +rLu +fsc +hcr +icI +vHe +oWv +udI +dRc +qgl +qgl +yev +nlX +cdM +rwM +lmb +lMW +uBf +qgl +hiV +cAO +iTz +rEG +yha +qHV +oRR +aFE +oEH +diN +cPI +bKT +eRo +eoJ +mho +mho +mho +mho +mho +gfi +lko +sjA +wIm +fuH +xIp +pmX +eJr +sjA +lko +lko +fdX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(50,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +gcc +fQA +oFg +dcr +grn +xOs +oUx +dWC +nXw +xYX +iJE +oWv +oKJ +sTF +qgl +qgl +dbq +moO +moO +xSA +dBI +eqx +uHH +sfO +eMv +nEZ +pAw +iHU +aFW +aoq +kAo +aFE +oEH +hHY +bKp +rNS +eRo +sSD +uQx +suY +jfY +rvk +vit +vdz +lko +sjA +mqx +gYk +fWS +jHX +aks +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(51,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +kJJ +mQV +vmq +ukZ +fpv +hmP +spi +ieG +igF +cRd +ier +oWv +oKJ +fkQ +qgl +qgl +sFz +bKY +uwI +jvu +iQl +qtU +tnr +qgl +bYl +dFh +eel +ifd +jsH +xnJ +kKT +aex +eRo +mZn +lUi +bHa +eRo +jvL +kqq +fki +bAu +pcQ +vWt +vdz +lko +sjA +vFE +hvR +tUx +mvo +vrd +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +qgA +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(52,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +voP +olu +syv +vek +rQV +oWv +rZR +dfO +qBf +iJH +fpP +oWv +oKJ +fkQ +qgl +qgl +qgl +qgl +qgl +kBW +aLB +qgl +qgl +qgl +srX +adI +swn +lxd +usU +tVj +wjl +ulW +dAX +rrl +oqr +cPY +vPw +cYH +xzF +fki +tBd +qDl +nEz +vdz +lko +sjA +sVe +bAr +fcj +qBP +qBP +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(53,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +oWv +oWv +oWv +kek +oWv +oWv +pMp +dAw +eeI +hCw +pMp +oWv +oWv +urK +nwQ +uMn +gEb +oCy +paa +oVg +jce +qWD +xFy +nwQ +wYj +hMX +yke +ifd +wvT +fLB +xxb +pNm +eRo +eek +lPp +cma +eRo +pdI +jwl +fki +rdf +ixu +pMW +vdz +lko +sjA +wty +jqv +bqs +pQz +pQz +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(54,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +lqC +jeX +qNt +aUt +hZo +fYk +hZo +hZo +tHP +duz +flz +oWv +mwJ +fkQ +nwQ +vjn +cpV +vqO +qKx +cSW +uiB +xZk +bAz +sdo +qOz +dFh +gAN +ifd +ifd +fNb +oQN +rPG +eRo +eRo +eRo +eRo +eRo +qju +tlu +tlu +tlu +tlu +tlu +vdz +lko +sjA +kNr +onY +lob +mUf +kNJ +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(55,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +mui +hPR +hLf +mdB +etl +vnL +etl +etl +ove +ggO +ggO +bAt +ggO +bxZ +nwQ +akx +tbc +nwR +oUI +nhh +pYq +iUC +mTi +kMA +esi +qiF +tqe +rVB +eYD +bEP +qWi +qsC +wUT +pGT +ldY +bWL +mVa +bIS +dLD +bGv +hUE +dWf +hZL +qDN +qaX +iWG +uWa +uBj +rKu +pmF +gPV +sjA +lko +lko +fdX +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(56,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +bsZ +bsZ +oWv +oWv +rPn +oWv +oWv +oWv +oWv +nVP +oWv +oWv +oWv +hZo +qkx +nwQ +jUl +ihA +jVC +mxK +rBY +dxQ +ses +gSm +nwQ +riB +cAO +uaM +qbG +gWU +sRc +mqc +jvi +nbW +oJt +wkM +dwz +nbW +fgG +jrz +nlq +pqN +lUK +omF +lwK +gLt +sjA +vgO +vgO +vgO +sjA +iMM +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(57,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +nIB +bsZ +dLj +eqZ +hZo +oWv +myN +tKy +hcZ +ubk +nXw +cHP +oWv +koo +qkx +nwQ +bEx +iuE +iuE +iuE +iuE +uxm +iuE +iuE +iuE +tgK +prJ +sEs +djR +djR +nIx +djR +djR +pWm +lCk +djR +djR +pWm +ydV +djR +djR +ntL +diZ +djR +djR +jET +sjA +tyL +goM +qOS +vTp +hPx +sjA +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(58,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nIB +nIB +bsZ +gXp +duz +hZo +oWv +jkg +qtP +imJ +bQq +kDb +oWv +oWv +hZo +qkx +pmT +qsm +iuE +mIF +iZu +ivT +nVB +amR +sVh +iRv +kdy +std +nun +djR +jVE +lFa +dxo +djR +alI +nNl +ora +djR +aUy +fFf +sFu +djR +cKE +nNl +oPB +djR +jET +sjA +ugG +ugG +hBn +kEe +deM +sjA +lko +lko +lko +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(59,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +nIB +nIB +bsZ +bsZ +krN +hZo +oWv +mUc +ohs +elJ +hZy +maZ +oWv +oKJ +hZo +qkx +jEJ +eTL +iuE +rRP +uHE +qGC +tTc +wYZ +dLa +rqs +vkR +nSV +brG +pDM +pEh +nNl +puV +djR +gWA +kWo +nsA +bwr +gWA +mOc +nUJ +djR +deG +pFs +uIA +djR +jET +btc +btc +btc +etx +btc +btc +btc +lko +lko +lko +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(60,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +nIB +nIB +bsZ +wVI +duz +oWv +oWv +bsZ +bsZ +bsZ +bsZ +bsZ +kYH +heV +wjm +tMe +iIk +soZ +iJK +syK +oxc +lxQ +kgX +vNw +ecA +tPK +lLr +cLE +fHS +piA +ffF +heG +djR +djR +djR +nCP +evE +djR +djR +ecJ +djR +djR +djR +wOw +djR +jET +btc +jIa +jIa +ybU +jIa +jIa +btc +lko +lko +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(61,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +nIB +nIB +bsZ +flB +hZo +jse +ylw +bsZ +vWo +nuJ +nuJ +dSW +nuJ +nUv +uGv +tcy +ftU +iuE +iUO +ucf +jMZ +eso +eEX +pGD +mNS +oKB +mPI +fuP +djR +lhY +ngh +voa +txt +kSs +uwY +qgs +jpD +jDr +hem +qgs +vsz +ntg +ebF +qgs +udP +kPk +kPk +kPk +lko +qpl +lko +lko +lko +lko +lko +tXe +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(62,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +nIB +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +bsZ +pag +dDh +dBq +dDh +dDh +ndv +iuE +iuE +iuE +iuE +tCf +igs +wOz +iuE +vre +veY +qwT +djR +gaJ +swy +pYK +uEk +lzk +qgs +fyd +kCZ +xBb +pky +qgs +qgs +qgs +fyd +afE +dJF +emO +mJw +kPk +lko +cNP +ulC +iMa +jsV +lko +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(63,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +cBU +tXe +nIB +nIB +nIB +nIB +oWv +vMR +ocv +rpP +plU +vnm +dDh +rIu +vDY +jQa +vBp +eRz +nUh +tge +oWv +rOx +jUv +tpb +sez +rBL +vre +nHJ +bvC +sDk +hCv +auN +jTw +kFB +ejo +xcZ +bRQ +mEX +hoQ +jLr +sIB +pfe +deI +sIB +rAK +wsR +ewh +qlG +xZx +eGR +not +lko +lko +lko +lko +tXe +vlW +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(64,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +tXe +nIB +nIB +oWv +nww +bfG +qBY +gzA +qqh +dDh +cSI +knv +vQU +dDh +eRz +hZo +iau +oWv +ltu +qPx +qPx +qPx +xsB +tDU +nFp +yhr +pXF +diT +cjl +qei +aRB +djR +rau +oUL +fJk +fJk +fJk +fJk +vvX +cbr +qgs +fSv +dJF +emY +jlp +kPk +lko +lko +lko +lko +tXe +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(65,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +cBU +tXe +myd +cuY +sLg +sLg +sLg +sLg +oWv +oWv +dDh +tYr +hNn +kxh +dDh +eRz +hZo +rho +oWv +iMu +qPx +byr +qPx +nUw +vre +vYc +oTB +djR +pNR +djR +dJA +eDb +djR +noH +nSH +vIj +sxZ +omW +qwz +dJF +iGg +uim +srx +dJF +dJF +dJF +kPk +lko +lko +lko +tXe +tXe +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(66,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +myd +cuY +jou +sLg +bXs +sLg +xiE +krN +dDh +odA +msq +cLG +vBp +pge +aKG +hZo +oWv +daS +mmx +qPx +cBM +qAY +snP +hRZ +psh +eLz +aEL +tZc +dGT +xIQ +udP +sFf +gap +wwo +aGs +eYS +uiE +dJF +dJF +dJF +dJF +dJF +hsq +leB +lko +lko +tng +bYu +tXe +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(67,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +myd +cuY +wmB +aIT +jwZ +ruk +kfH +hKk +dDh +dDh +dDh +dDh +dDh +eKa +hLw +xVg +xhN +qQI +sMf +gHE +cRX +lWK +vHY +bMA +uHd +whR +pAX +edh +hhl +gLp +udP +rRK +gOv +aga +oCZ +kPx +spO +dJF +aAU +sGW +xvr +dJF +jFH +dsP +lko +uYw +uYw +wZR +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(68,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +myd +cuY +sLg +sLg +nAk +sLg +weN +kZK +kZK +kZK +kZK +kZK +kZK +fzb +oOL +gyQ +oWv +jIH +wxY +oXK +oXK +kLY +uYB +urE +eqg +dyp +rnQ +mtJ +nKn +mhL +dQl +hGe +wvO +wUo +oCa +qZf +aPn +vCV +cdn +dzn +rqX +xrb +eaN +vYu +wPo +uYw +uYw +wZR +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(69,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +myd +cuY +qTi +mKd +flf +sLg +heJ +fzF +qRd +igy +eKa +mOK +mOK +iWs +eRz +mzu +oWv +ltP +ixK +pIT +mMI +lla +pZP +aGQ +xFT +gRg +crE +dNY +vfQ +pRh +udP +aaR +pdt +tMD +pBY +ogA +otS +dJF +vZB +vZB +sIg +mqs +dsP +lko +oFU +eQC +eQC +wZR +nmN +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(70,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +myd +cuY +qgg +rqr +cCu +sLg +sLg +cvN +cvN +cvN +iEy +cvN +cvN +cvN +ngU +cvN +kTh +kTh +kTh +kTh +kTh +kTh +uZz +qZR +wHP +qZj +eKd +eKd +eKd +eKd +fOi +xfi +xfi +xfi +xfi +xfi +xfi +xfi +xfi +xfi +xfi +xfi +dsP +eCQ +gOA +pZz +pZz +pZz +pZz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(71,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +myd +cuY +sLq +eUs +cCA +vGb +sLg +oQQ +thT +kOo +plR +pdw +cvN +bsR +lYo +irA +kTh +dEB +dEB +dEB +dEB +dEB +kTh +cbR +jUp +kgG +eKd +diR +diR +diR +aWk +lci +lci +lci +lci +lci +aWk +jIv +eKN +mwj +brW +tPH +eCQ +eCQ +uYw +ePH +ePH +uYw +eFH +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(72,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +myd +cuY +rKU +tWs +htJ +mEd +sLg +mAP +aCs +kOo +fhY +eJo +cvN +pgC +lYo +kOo +kTh +dEB +dEB +dEB +dEB +dEB +xqh +oHV +fmm +aoX +uQt +sef +diR +diR +aWk +fwa +fwa +opX +opX +opX +aWk +wtD +nUL +mwj +brW +xls +eCQ +eCQ +oyg +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(73,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +eLH +myd +cuY +hyD +sgV +oYf +nYL +sLg +mAP +fui +mXT +plR +sFX +cvN +weY +lYo +fJZ +kTh +dEB +dEB +dEB +dEB +dEB +xqh +gTB +lFA +aIH +uQt +sGv +lui +diR +aWk +wlw +kLe +gPH +mfq +idp +cXU +qHR +nUL +kHK +brW +brW +eCQ +eCQ +eCQ +uYw +uYw +uYw +wZR +gSd +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(74,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +tXe +myd +cuY +cuY +cuY +cuY +sLg +sLg +mAW +iOH +kaz +gbc +sFX +cvN +tnL +lYo +shf +kTh +dEB +dEB +dEB +dEB +dEB +xqh +xSF +oUS +dhl +uQt +vGv +oad +xEM +aWk +ljL +gAu +fhs +jsq +lPd +aWk +sDd +llO +mwj +brW +pGI +eCQ +eCQ +eCQ +eCQ +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(75,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +shR +soS +pAT +pAT +pAT +pAT +pAT +hFK +mgX +kxi +jHY +jFp +sFb +cvN +cvN +cvN +ngU +cvN +kTh +dEB +dEB +dEB +dEB +dEB +kTh +hKe +mAC +bqO +tTe +lGb +aQb +gai +lGA +iwE +tQH +xOg +xOg +erR +aWk +mwj +mwj +mwj +brW +fwr +kHr +eCQ +eCQ +eCQ +eCQ +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(76,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +tbn +soN +nsa +bRd +pAT +gOK +gOK +gOK +gOK +gFi +gbc +cvN +rcV +ewl +lYo +ilO +kTh +kTh +kTh +kTh +kTh +kTh +kTh +vEX +ryR +dIP +eKd +fNa +vQW +xLQ +aWk +fVH +aPS +djt +nxx +fVH +aWk +bZR +mwj +hBs +brW +rKH +kHr +svc +tZZ +eCQ +eCQ +abk +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(77,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +jwe +giU +qqH +qqH +mcz +lHU +lHU +wPB +baW +avL +coM +lfN +aoG +aoG +vPI +jPZ +ilR +wuG +drK +axO +axO +wuG +ptD +ikB +frK +kuy +eKd +eKd +eKd +eKd +aWk +aWk +aWk +aWk +aWk +aWk +aWk +exA +fWb +aVQ +brW +brW +brW +brW +nVh +eCQ +eCQ +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(78,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +pAT +lrw +bnr +jmP +pAT +dng +dng +lQY +wjv +wNN +mfL +cvN +xwR +xwR +cbm +tix +cvN +qNQ +ibw +cTR +vUu +vUu +alJ +qtY +tji +eOE +yhD +fED +fED +fED +fED +fED +fED +fED +fWb +fED +fED +xHc +mwj +uqL +brW +brW +brW +brW +cSz +eCQ +eCQ +uYw +wZR +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(79,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +pAT +pAT +pAT +pAT +pAT +pAT +pAT +cvN +cvN +cvN +hjS +cvN +cvN +cvN +cvN +pph +stL +stL +fuX +stL +stL +stL +stL +fJi +iOt +aDa +alJ +ppx +leW +mls +kDz +mls +vhZ +bHl +mwj +pQo +brW +cau +mwj +knI +brW +daC +owY +uDo +btU +eCQ +eCQ +uYw +bYu +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(80,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +pAT +pAT +pAT +pAT +pAT +pAT +pAT +cvN +fyw +gVS +hJE +cBL +cjX +aNv +xjr +dVP +stL +qFH +etA +djN +xjE +fhX +stL +nKo +mDg +lKS +alJ +oJs +oJs +oJs +oJs +oJs +oJs +oJs +oJs +mwj +qMa +mwj +mwj +mwj +mwj +mwj +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(81,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +oCu +dfu +dfu +dfu +dfu +eBA +pAT +fCG +gOK +lYo +lun +azX +sgD +eke +stL +stL +stL +wxi +vPO +iXp +jKd +fIL +stL +mMT +kyw +nmb +kYs +oJs +uXp +uXp +emC +uXp +uXp +peP +oJs +jyX +brW +gcK +mwj +mGV +iTp +tAA +eCQ +aqA +ixc +ixc +ixc +ixc +cWd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(82,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +oCu +cKZ +rdw +iHX +cJD +pmm +rQI +iko +lvi +jVV +hZF +gVY +jYm +baB +stL +ygM +vnV +sNB +pqE +xIG +wiz +pkj +stL +ncQ +kyw +pxk +dPt +oJs +pjA +uXp +dIu +vdV +uXp +eXP +oJs +bgn +brW +brW +cKU +hbS +mPt +gEF +ulw +vQb +tIV +efQ +uVi +okx +cWd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(83,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +oCu +dfu +dfu +dfu +dfu +eBA +pAT +ojv +bBQ +lYo +vdJ +vcg +ekG +oZb +hSq +kkN +nNm +sqF +eVO +mhV +eps +wfw +ajL +sdE +dNs +nmb +oWe +oJs +aYE +uXp +nvl +cZo +uXp +bcK +oJs +vAV +brW +ehw +mwj +lGY +iCK +nhI +eCQ +aqA +ixc +ixc +ixc +ixc +cWd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(84,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tbn +pAT +pAT +pAT +pAT +pAT +pAT +aqb +lvi +vaF +erA +iPl +skv +iPl +stL +nDt +tfl +seA +knP +irc +vjJ +rhJ +stL +hzn +kyw +nmb +hED +oJs +oJs +dfI +xYw +dWy +fYI +oJs +oJs +pWR +brW +uRg +mwj +fno +hux +gYu +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +hgZ +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(85,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +gEO +rfi +rfi +rfi +rfi +ibU +pAT +avQ +lvi +iCD +pkq +iPl +lsE +odp +stL +stL +stL +stL +stL +stL +bDC +stL +stL +nsB +rjb +daE +alJ +oJs +oJs +oJs +eXv +rbz +oJs +oJs +oJs +oAD +brW +fYd +mwj +kaB +hyo +cEw +eCQ +pkM +qjj +qjj +qjj +qjj +ugd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(86,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +gEO +pYM +xnh +bNz +ifv +gFM +xND +tWh +lvi +vAf +moh +iPl +jpo +dra +stL +iuZ +fCB +pku +fCB +doJ +yeM +dEa +stL +fiz +iOt +xoZ +oJs +oJs +eZy +hDn +ubH +kAZ +dTA +eZy +oJs +uDo +brW +fYd +mwj +ydo +hux +tDm +vTn +wMn +ikH +ghN +rGL +lwY +ugd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(87,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +gEO +rfi +rfi +rfi +rfi +ibU +pAT +ojv +lvi +qvA +dwQ +tQD +jpS +emb +stL +unu +djA +qWS +oam +pjF +rSx +kAi +stL +lkB +pTA +pRv +oJs +oTR +kOF +npL +udy +vGm +bni +tYX +oJs +btU +brW +jNq +mwj +pvD +cZO +nwE +eCQ +pkM +qjj +qjj +qjj +qjj +ugd +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(88,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tbn +pAT +pAT +pAT +pAT +pAT +pAT +kLx +lvi +imH +mGI +iPl +psR +oOB +stL +dfs +sKT +iKp +sKT +iKp +mjY +aSg +stL +dpT +oJA +fVM +xsz +uTl +bIW +qBg +kiD +kiD +omr +sTO +oJs +fUK +brW +uRg +mwj +iqL +myh +gYu +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +hgZ +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(89,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +nOP +oSP +oSP +oSP +oSP +oqd +pAT +oYZ +lvi +iBt +lpB +iPl +aFi +iPl +stL +dDG +egJ +xBk +pbz +pBL +mwi +tuB +stL +kgs +bEn +xXy +oJs +jfo +aHV +eqX +vSw +uwh +uaK +qKJ +oJs +kzn +brW +nMX +mwj +rDj +ftP +fNB +eCQ +xyL +kbB +kbB +kbB +kbB +vBM +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(90,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +nOP +rgx +nZw +oPP +fgX +leO +laP +ljf +lvi +lYo +sPO +cbC +wVw +wqq +aTK +aTK +aTK +aTK +aTK +aTK +aTK +aTK +aTK +wsS +mCU +evH +oJs +oJs +oJs +oJs +oJs +oJs +tGH +oJs +oJs +vVg +eZB +qpQ +vvs +vsO +fMU +vGR +lyw +rIQ +gKR +ndG +ruK +xic +vBM +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(91,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +nOP +oSP +oSP +oSP +oSP +oqd +pAT +dJh +gOK +lYo +iiG +sEt +fFB +wOe +aTK +okd +iDE +lDK +bBp +lTx +hPc +oxh +aTK +kgs +xLq +hbb +slm +gVl +bPD +gYN +oaw +tfa +nEu +aQi +wXZ +vVg +fMi +oiW +mwj +uqy +jtx +xDU +eCQ +xyL +kbB +kbB +kbB +kbB +vBM +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(92,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +pAT +pAT +pAT +pAT +pAT +pAT +pAT +cvN +ies +oEp +gJw +cbC +fgR +onv +aTK +pDN +ait +ckp +kcS +ikb +ikb +fYw +aTK +kgs +qik +wOo +slm +gVl +gAJ +mYX +iGm +dvx +ybV +sDn +apa +cJL +ftI +ftg +mwj +mwj +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +eCQ +tXe +gSd +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(93,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +rtT +rtT +rtT +rtT +idA +soS +pAT +pAT +pAT +kOo +rCc +rCc +rCc +cvN +cvN +tSs +cvN +cbC +yfF +wmh +aTK +sRj +bcy +aDY +lgy +rNU +dGC +usG +aTK +ayu +qIa +bFT +slm +gVl +jXN +hcP +ssm +wWm +sKD +xhu +jPd +slm +enW +tBP +hBv +hBv +rWe +kaL +kaL +wQs +jiv +wop +wop +tXe +tXe +tXe +atx +rpE +rpE +rpE +rpE +rpE +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(94,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +xdF +ixA +lCZ +aTh +yad +lCZ +aTh +xdF +tSD +pAT +pAT +bsH +rzT +rbs +jAH +amj +gXZ +jSj +kOo +cbC +aPH +cbC +aTK +wzw +rUn +aDY +lgy +tkt +wDS +wXc +aTK +fiz +aAD +xoZ +slm +gVl +clw +pZi +que +vaO +vaO +njA +vaO +slm +bnQ +bnQ +bnQ +bnQ +jVT +xLy +ecL +ecL +ihX +wop +wop +tSD +fOP +tSD +tSD +tSD +tSD +fOP +tSD +tSD +tSD +ixA +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(95,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +ffy +hCT +tOt +tSD +tSD +vMm +tSD +tSD +hCT +uYw +pAT +pAT +oPF +con +hDr +pqP +cvN +kjL +uIG +gOK +gOK +gbc +gOK +vJV +ikb +lSt +tIc +aPv +ieJ +ieJ +cDA +aTK +iwz +qIa +wWr +imY +imY +imY +imY +imY +bnQ +sIW +lgo +dxd +ert +fJV +bLD +cKH +bnQ +pvl +ecL +sCB +sCB +ihX +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +dnB +uWB +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(96,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +pAT +pAT +irA +ujN +rJW +xkX +cvN +gRB +qLK +jrF +jbK +mNz +mSy +aTK +aJJ +uqE +cwO +mYR +nUq +ccN +lUz +aTK +gPg +sWc +uZq +sVB +ouJ +kkx +yeA +ijv +bnQ +pKJ +hXU +qMT +tIK +cdz +kJA +pmV +bnQ +vNt +gky +fuh +fGt +ihX +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(97,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +pAT +pAT +cOz +ujN +wNJ +wNJ +wNJ +wNJ +wNJ +tMb +tMb +vED +tMb +aTK +uQI +pLH +aTK +aTK +aTK +aTK +aTK +aTK +wsS +uDK +sMw +gzF +duB +kyz +anr +puL +bnQ +gTT +eJT +bce +rDP +vqc +scf +wIz +bnQ +gHP +gHP +gHP +gHP +ihX +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(98,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +oAy +hGM +uYw +uYw +uYw +uYw +uYw +uYw +uYw +nKE +pAT +aNs +pgC +ujN +wNJ +jXl +tdi +gbE +wNJ +tXM +kaS +rjh +pnx +fBs +gku +jhq +eMM +bXn +iUf +vut +ePs +coP +ngE +gGx +thx +uYL +iNN +gZs +gZs +xWz +bnQ +qch +tco +vDK +dHv +lFj +qWy +cLV +bnQ +vKg +nsd +mIT +gHP +ihX +wop +wop +wop +abk +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(99,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +vSo +pAT +saO +jwX +ujN +wNJ +hQO +weF +dlr +wNJ +pgt +wCk +czG +wuP +weD +bqW +xim +bWo +idD +gVb +pUW +dYW +coP +cHZ +awW +tAW +sVB +syi +xDA +pjW +cfL +bnQ +nRf +pUG +lpg +rDP +sbs +mxv +wIz +bnQ +qfs +iyA +uoK +gHP +ihX +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +tOt +tGg +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(100,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +aTh +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +pAT +qbF +xqA +qpM +wNJ +wfJ +acV +kGw +wNJ +ayD +hzR +vuA +pvO +nYj +vuA +mSl +eMM +bXn +hyA +sat +xPF +coP +aGj +mse +vsB +qgo +qgo +qgo +qgo +qgo +bnQ +uJR +iTH +eKw +kOi +ijP +akZ +mBp +bnQ +oUp +med +lbF +gHP +ihX +wop +eap +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(101,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rXt +lSK +hCT +uYw +uYw +uYw +uYw +uYw +uYw +pAT +pAT +pAT +ujN +ups +pCd +wNJ +smx +rTD +hhg +wNJ +ayD +hzR +oqA +vcH +gyq +gyq +gUO +jEl +coP +coP +coP +coP +coP +pEw +xTl +vBw +qgo +tfs +kJO +qMb +qfK +bnQ +oGC +wsu +eqc +vls +kMu +fbM +cKH +bnQ +oNi +bvK +uYU +gHP +vxW +wop +wop +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(102,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +wWV +gLV +wNJ +wNJ +wNJ +mxf +vnr +aHo +wNJ +pgt +rQg +oqA +hKb +gyq +gyq +gUO +jVo +psd +xuw +iAD +nlW +gvD +fnv +xoa +wib +lGO +jIQ +aWu +lPV +rev +bnQ +dfK +xLL +dfK +dfK +dfK +dfK +dfK +bnQ +iGy +kVd +kVd +gHP +ouq +rXn +wop +wop +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(103,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +qtq +nvX +wNJ +mGe +hYm +xFp +ugQ +uUK +wNJ +auE +hzR +kmK +lTI +kgk +kgk +uFe +lDX +cwu +gdN +fqh +gdN +gdN +qda +eiO +lAT +qgo +oQn +wjk +bSE +aJD +dNz +hfc +aCl +rYJ +yly +xQE +vRg +aCp +iZs +tVm +tMU +fZM +dNz +jmN +lln +sTL +nsm +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(104,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +ufa +ufa +nvX +wNJ +klJ +xsT +xrW +uvE +vME +oQE +sYX +ekc +aLS +hmT +ygp +pLl +nsl +axZ +uBB +pJy +aTI +nuE +nuE +ozl +uMF +aZX +ibQ +ian +dBG +ldQ +sgv +dNz +mQl +cHR +lCb +aYX +cfQ +aJv +bKi +gTN +uNn +hdN +mjB +daa +kPc +iWF +ecL +fwh +qoq +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(105,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +xEA +ncz +nvX +wNJ +wod +qkA +uRI +tBy +vyI +wNJ +hhP +fmq +ctJ +qNK +kmO +kxv +kVi +vuI +qNK +aCM +iAD +oaH +cgD +fnv +suy +uBb +giS +dyT +qYU +xyq +giS +dNz +mby +wLC +rcN +dVD +wJA +ddI +bmB +jWw +cdG +wJA +xpM +dNz +rMx +peH +ecL +kLd +glU +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(106,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rXt +akj +uYw +uYw +uYw +uYw +uYw +vSo +wWV +wWV +jWL +jWL +geL +wNJ +usl +epF +nSa +lts +rsv +wNJ +oxG +oxG +wjj +vXm +oxG +nNj +qYS +eFv +xtX +gRj +eFv +eFv +obe +sYq +xeO +rUl +dIp +wGZ +cvV +vSg +pCG +dNz +tEi +sIl +gNW +gNW +gNW +gNW +kjw +gNW +gNW +gNW +gNW +qSx +lrY +bso +szJ +igz +glU +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +sZT +puo +gSd +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(107,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +sXd +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +czJ +dmd +nvX +wNJ +wNJ +wNJ +tjC +tfe +wNJ +wNJ +owB +fOg +uvV +oFb +oxG +pYT +aCw +eFv +tRI +oIh +oVS +ybQ +eFv +bNJ +wUq +nlc +sxF +vbh +qVf +wWk +ksI +hHv +fIg +jjV +gNW +okg +wNF +wNF +ncM +qdg +wNF +djH +cZc +qSx +cNo +jJA +ecL +ppn +bJC +wop +wop +abk +uYw +uYw +uYw +uYw +uYw +wZR +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +nvI +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(108,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +lhg +akj +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +ufa +ufa +nvX +lYw +fZy +nsI +gUV +mcO +dBw +gzs +oZh +jms +rBA +jrD +oxG +apm +fef +eFv +oto +uNG +edi +rhi +eFv +ucY +xTl +mfx +bBL +atj +vJQ +bOt +tud +swD +xZd +gaA +gNW +vUQ +gMC +kWG +fZL +byi +kWG +qeg +tST +qSx +xiV +jJA +ecL +fwh +cmk +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(109,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +sXd +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +qJj +dmd +nvX +sUC +fZy +nOL +gUV +mcO +xzY +gzs +cdk +fOO +uvJ +xNg +oxG +saI +knz +eFv +hvZ +pnD +ijx +syx +eFv +top +vcA +wpk +dIp +nSA +biG +rIc +wPp +dNz +sDo +gaA +gNW +bcI +uIc +gKz +fZL +aIU +aIU +fyN +kcn +qSx +tkY +rhy +eFZ +fwh +rYW +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(110,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rXt +akj +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +dmd +nvX +lYw +fZy +oYh +gUV +lel +iMy +gzs +aKt +cDS +toD +qJo +oxG +nbP +xJH +eFv +sKH +vbi +vbi +vbi +eFv +fIJ +vcA +aZX +fIj +tiA +dgh +aRv +arb +fIj +vlx +hnx +gNW +uoZ +jPh +uGS +iNo +aIU +aIU +fyN +gPJ +qSx +fns +jmN +eVI +lty +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +dnB +uWB +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(111,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +jWL +mRL +jWL +fZy +qfk +ovG +soV +geU +gzs +oku +rrZ +tvu +dwo +oxG +cxA +eFd +wPL +ebG +fhh +opF +eCe +sfH +nSY +vcA +aZX +fIj +gnL +dCx +cGg +pqK +mBz +cBf +ibv +gNW +ipu +byi +qeg +gbC +aIU +aIU +fyN +fIG +qSx +jVT +nwj +jVT +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(112,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +nHd +kda +kqT +fZy +twY +jVf +eCo +dmw +gzs +wjj +wjj +wjj +gor +oxG +rJu +twx +kmZ +gSC +eDM +lxg +cWt +sfH +veV +sXI +hlc +nbG +hfH +egW +cRT +wfW +vHa +gET +izl +gNW +bcI +fGI +aIU +gbC +aIU +aIU +fyN +seF +qSx +bXc +jmN +ihM +nPA +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(113,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +myD +imi +iqy +iir +yhF +bvt +fCA +aGi +fFC +aND +aND +aND +ctD +cEx +kyf +lTT +bev +eNk +eNk +eNk +eNk +eNk +xQZ +rBp +vaJ +kdA +hba +nfJ +qjc +bih +iCF +sDM +cFh +gNW +vUQ +fGI +aIU +gbC +aIU +aIU +fyN +tST +qSx +xDk +jmN +rYX +rYX +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wZR +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(114,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +rSU +gXw +vjl +fZy +wOA +vAU +kEk +pLK +nHF +gat +bON +bON +bON +bON +nOt +itJ +cQn +ikg +pNp +eDJ +aYH +eNk +mCs +wqA +vhK +fIj +gIx +sGZ +uyI +mBz +mBz +mYD +jxI +gNW +bcI +uIc +eCZ +gbC +sDx +aIU +eCZ +seF +qSx +dtn +jmN +xrw +tVg +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +sZT +orR +uWB +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(115,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xdF +hCT +uYw +uYw +uYw +uYw +uYw +uYw +vSo +wWV +wWV +bAO +aTL +kZI +fZy +qJO +rhT +sVf +anW +fZy +rKv +aiP +sZU +qnF +kTe +hAB +wAZ +kXW +pOm +jUZ +ghd +gEm +mLQ +pno +awP +psO +fIj +fxV +nib +aYJ +mBz +kzH +xRO +jXb +xUF +pfV +rgN +rXr +vzO +tzU +jMM +hZK +kQA +sIv +rYX +jmN +mPD +cHK +wop +wop +abk +uYw +uYw +uYw +uYw +uYw +wZR +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(116,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +kGU +imi +vjl +fZy +fZy +fZy +hwm +fZy +fZy +odS +odS +odS +iQR +xTj +hAB +eYc +bxG +cjp +kgI +mMm +czQ +eNk +sPu +vcA +ssT +fIj +kru +lWO +msn +mBz +gJH +njH +lKv +gNW +sNT +oLF +dNN +hnB +lxZ +xKw +dpq +nPt +qSx +gHP +gPD +jVT +jVT +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(117,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +oSZ +tnm +hGM +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +heT +dtY +vTj +atK +odS +iAQ +iQG +wlE +cBP +kbt +cIH +odS +wLX +oru +jXC +oZs +cXu +cjp +xjf +tFi +xHI +dou +nSY +vcA +iZZ +fIj +mBz +mBz +mBz +mBz +yly +fxq +sIl +gNW +nCl +xRf +fcT +fEX +bGO +vso +emi +pfq +qSx +xpU +jmN +qjQ +ygQ +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(118,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +cBU +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +djw +uyd +pmJ +odS +skm +rtU +uVD +wkA +xHM +eHe +odS +uEl +jwx +hAB +rom +qxz +eNk +mdp +uxv +iVe +eNk +ccO +vcA +fQk +bdI +stI +csD +csD +jRa +isu +eKv +sIl +gNW +xEk +qby +cbd +ofJ +lUa +qCV +wyp +kaf +qSx +xaG +jmN +sXg +sXg +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +nYS +uWB +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(119,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +jWL +jWL +ojR +odS +iia +uUc +iKt +qqN +hNp +cIH +odS +eAz +rHE +att +cHN +rHE +eNk +eNk +eNk +eNk +eNk +sbL +htW +xIl +jLB +jPx +piK +diG +aYy +gKT +sDM +sIl +gNW +ohy +vNM +nIu +qOG +jiU +xAH +gNW +gNW +qSx +pVD +jmN +mmm +rHA +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(120,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +tyl +gPZ +eIv +odS +nGT +hUq +vqL +lyu +hTO +cAu +ndj +fxl +sUP +tiB +bfT +sVd +vRd +nCh +xVO +lGG +eht +bXJ +vcA +mcD +jLB +rXw +iTQ +iOy +ufo +isu +ajl +shV +gNW +gNW +gNW +gNW +gNW +gNW +gNW +gNW +bcL +dNz +lfH +jmN +iix +joo +wop +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(121,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +xdF +hCT +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +wWV +vPu +klQ +hVf +odS +fIn +lEq +kso +lMR +pGF +xJT +cVc +hiT +krm +qgW +tHC +tdY +tdY +tdY +vYP +wtP +mbg +iIC +akd +sdr +qKL +syu +tiK +hCb +ikC +pId +hTm +oax +ntZ +ntZ +eMY +ntZ +wFB +dNz +ljn +aGh +bcL +dNz +lUW +jmN +ocG +wyx +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +wZR +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(122,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +wWV +wWV +wWV +vPu +mxG +gnR +odS +dWr +uVD +uVD +enZ +rAC +hKN +ozr +hiT +ewO +oaQ +ydu +hwW +qmG +hoJ +iMs +iVt +mBf +cll +aSj +gJE +bdI +vXb +hVS +hSx +rQA +isu +nqO +uCO +hJT +hJT +hJT +uIe +fFs +aIi +tAK +mEj +aqT +dNz +gHP +dOl +jVT +jVT +wop +wop +wop +uYw +uYw +uYw +uYw +uYw +dnB +uWB +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(123,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +vSo +wWV +aGP +jWL +jWL +jWL +jWL +ojR +odS +odS +odS +ekY +lxj +wNO +dOd +lyO +xzT +wZC +oct +wTA +sxv +tDw +oSE +hBo +mpg +eht +taj +cxv +aOt +nOV +nOV +nOV +nOV +nOV +nOV +thP +uwG +ivB +ivB +ivB +onW +ivB +ivB +jHS +dNz +dNz +dNz +rYX +jmN +gBq +wzQ +wzQ +lUy +wop +uYw +uYw +uYw +uYw +uYw +wZR +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(124,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +okr +ptu +fBi +dDW +gAI +eYs +mhS +lYw +noM +alw +rUv +noM +noM +noM +hkN +obk +gqS +cex +qlu +qlu +qlu +mjZ +cex +cex +bNJ +sHi +ftF +nOV +flu +hPF +rRq +bmc +nOV +uPb +ydR +ivB +qzP +mcU +vCu +xdk +iyO +jHS +evB +qBc +lnu +lnu +vho +jVT +jVT +sSN +jVT +wop +abk +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(125,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +rLZ +jWL +mkc +jWL +gAI +ufa +jiD +gQN +noM +szp +iPQ +uIu +hUG +noM +dbc +pUb +vkV +cex +jQo +cyV +eYo +smr +grD +cex +hFu +vcA +aZX +nOV +lEe +xPG +ohE +qpw +odH +jSR +hys +ivB +uxe +pfR +jDi +obZ +pWP +jHS +kbM +gcb +rYX +kfm +wnz +jVT +rta +tZC +xnf +wop +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(126,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +frN +jiE +lCV +jWL +jWL +xEA +eYs +mhS +noM +bbg +qAw +wbm +wbm +jYV +jVJ +fdZ +xYo +cex +hSE +jXE +mBb +juu +hJd +cex +hOL +rjg +aZX +nOV +kIz +cbL +pjj +nqC +bZp +uWi +vtl +ivB +cLi +nah +aEv +dHi +qvI +jHS +hQA +tEY +tLc +mac +jiA +jVT +gPd +tZC +sCB +wop +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(127,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +lRx +nwZ +kgE +mZt +mZt +mZt +xdv +rwx +noM +sZq +bmi +cpv +sLE +noM +fmK +xEc +vkV +cex +cmJ +jXE +sDT +wtA +sPa +psk +iFx +fjl +hlc +iVZ +sYg +gKN +aKe +iQh +nOV +fTV +jWb +ivB +edD +rSl +tAz +uzq +kTS +jHS +nGi +rYX +fBg +jVT +jVT +jVT +lUy +tZC +rYX +wop +uYw +uYw +uYw +uYw +uYw +wZR +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(128,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +coH +uYw +uYw +uYw +uYw +uYw +uYw +wWV +iDU +brE +vrS +pGn +sMx +mmR +jkq +eFf +noM +noM +noM +noM +noM +noM +iVA +eRH +mmK +cex +iTl +jXE +kKC +jmu +rkb +psk +mJj +toV +sbY +oJw +vri +kyt +hxU +cfk +nOV +jLA +mXf +ivB +dsg +qfB +rEc +fCD +bpY +jHS +bnz +kIT +ejO +iTh +ptr +jSW +jVT +jVT +eJR +wop +uYw +uYw +uYw +uYw +uYw +tOt +ixA +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(129,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +oAy +hGM +uYw +uYw +uYw +uYw +uYw +wWV +fGs +unX +kjg +pGn +dtt +pGn +pGn +mYL +rQO +tmr +qgH +oeV +fGa +jWL +cOl +eTF +utD +cex +fhu +fjh +xrZ +lez +vwI +cex +lMP +bFR +lGJ +nOV +vNe +kxG +arQ +rtR +nOV +dNz +dNz +jHS +jHS +jHS +jHS +jHS +jHS +jHS +nGi +oIZ +jSW +jSW +him +jSW +dqa +fkJ +wzQ +wop +uYw +uYw +uYw +uYw +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +eML +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(130,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +oSZ +tnm +tnm +cxm +tnm +tnm +wWV +vNC +oLA +elS +pGn +xYH +pGn +pGn +mZt +mZt +mZt +wVA +sKi +lKL +jWL +mbd +jkL +mbd +cex +cex +cex +cex +cex +cex +cex +iAj +tDx +mYP +nOV +nOV +nOV +nOV +nOV +nOV +qqk +lzG +ybX +epe +epe +lzG +aFM +eDq +jVT +nGi +lzC +jSW +jSW +wMB +jSW +xsi +npA +wzQ +wop +uYw +uYw +uYw +sZT +tnm +tnm +puo +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(131,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rZL +rZL +cBU +tXe +tXe +nYD +nYD +nYD +pGn +pGn +vxn +pGn +pGn +mvy +mvy +pGn +mZt +aSx +lKL +hZp +kHX +oGe +vRA +axL +jyO +dfd +ipo +iYy +haW +wnX +vas +mJq +vSR +qwk +kKs +leG +dWF +oyP +wZw +vhv +kFL +lVJ +dWF +ePa +fDQ +fDQ +wXB +lqa +nzv +lzC +jSW +jSW +irS +jSW +jSW +nhv +nhv +nhv +uYw +uYw +uYw +wZR +vlW +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(132,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +soS +nYD +nYD +nYD +nYD +pGn +nKU +qSv +xDX +pGn +pGn +pGn +vuc +mZt +dlI +lBW +leG +mlT +uwk +jdy +ccq +eGU +sEU +ooZ +kgb +mCs +tNv +quV +kzx +bbI +iiZ +gnd +hZp +nZi +aOj +iYa +wtw +rYX +vDO +jVT +nIK +jVT +jVT +gHP +jSW +jSW +jSW +jSW +qTm +mHu +ugb +jSW +nhv +nhv +nhv +nhv +uYw +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(133,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nYD +nYD +tRF +uQe +lyS +kUD +xMn +gtv +rSm +lLL +rFc +pGn +gaW +sEn +sEn +sEn +sEn +jmE +iVg +iVg +xia +sTU +sTU +hZp +hZp +aOx +dCA +aCb +oYe +gCz +hZp +hZp +aBA +rYX +jVT +lSb +rYX +jVT +jVT +hLx +rYX +qhC +gHP +jSW +gPR +nHR +sjU +ral +wJE +aRp +exk +hKA +bjR +nhv +nhv +abk +uYw +wZR +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(134,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nYD +nYD +rDs +ulB +pNE +qbH +esB +cXW +lPa +uHU +aeI +pGn +gaW +idw +cWz +xhA +sEn +sWY +cPM +wTa +xxp +mCD +koE +bkO +qAX +qAX +lMu +qAX +vaH +qAX +qAX +bkO +jvP +rYX +wop +sLT +iMh +bwo +eKY +meC +rYX +qhC +gHP +jSW +aqJ +cMM +qjv +xEB +alA +iSe +dxN +vdE +uoH +nhv +nhv +sZT +tnm +puo +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(135,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nYD +nYD +xZV +sMp +mUQ +efw +hHX +uZJ +rSm +nDN +vBP +pGn +gaW +eWh +ewz +cRc +sEn +srn +rFB +tuN +beA +mvW +gSp +bkO +bkO +jdd +pji +qLt +sED +lFT +bkO +bkO +xpU +rYX +wop +sQz +qPz +sAG +xVR +rYX +rYX +lUy +gHP +jSW +bZU +hlM +sjU +bDp +rwV +kcf +gjc +gZM +iNW +nhv +nhv +jVe +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(136,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +nYD +nYD +pGn +pGn +pGn +rvq +idq +qhu +ioi +ioi +ioi +ioi +gaW +ocw +qTB +cyn +pgw +gqm +hHA +vhy +rPu +mvW +tBF +bkO +vId +sNP +kty +vlL +iuu +owx +umI +bkO +mFl +rYX +wop +nan +mgL +wop +fAD +rob +rYX +oSI +gHP +eSY +eSY +eSY +sbX +tDf +mfl +dxa +jSW +jSW +jSW +nhv +nhv +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(137,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +tXe +nYD +nYD +pQt +hck +bbd +vzD +act +dFw +gks +jjo +uJv +ioi +gaW +oAe +akE +ssk +sEn +eAP +mLb +dcz +jmx +anQ +nZW +bkO +cMf +fGb +fGb +hlU +xCs +iBA +llT +bkO +wop +wop +wop +sQz +bkQ +wop +wop +wop +wop +wop +gHP +eSY +kDS +nUp +ivd +hVE +cTP +lUI +pTs +vPd +hYX +nhv +nhv +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(138,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +idA +tXe +tXe +nYD +nYD +qzM +iLZ +cHJ +fIa +fbL +cCD +gks +uVF +gBi +ioi +ouw +ouw +ouw +ouw +ouw +rSO +rSO +rSO +rSO +rSO +rSO +bkO +tPO +koW +lRm +czD +bqI +fGb +meO +bkO +wop +wop +wop +xaa +nDB +wop +wop +wop +wop +wop +wop +eSY +qwN +msZ +ivd +tIa +rxO +moz +mUM +alL +sXh +nhv +nhv +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(139,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +eLH +nYD +nYD +ciM +tJJ +lyS +ceS +kvu +uzc +sCv +lis +bGR +mDi +uYw +ouw +ouw +ouw +ouw +rSO +rSO +rSO +rSO +rSO +rSO +bkO +mmH +ycr +vbU +vbU +wDa +iFF +dHW +bkO +wop +wop +wop +wMJ +uYw +lNn +wop +wop +wop +uMt +uYw +iuW +rzl +vvb +vCK +pZT +hXG +tIm +exk +rhV +wFa +nhv +nhv +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(140,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +soS +nYD +nYD +nYD +pGn +pGn +rjw +gix +lpG +kgN +hNC +hOu +ioi +uYw +uMt +tng +oyg +uYw +uYw +uYw +uYw +uYw +bGC +nxJ +iiu +isZ +tfy +gUX +nPX +bXW +auV +isZ +iiu +nxJ +mQn +nxJ +nkV +uYw +uYw +tng +oyg +uYw +uYw +uYw +dwg +vLG +daM +bQa +lCR +tCL +lkC +jSW +jSW +nhv +nhv +nhv +xsf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(141,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +hFb +fXX +hPf +vdd +uzC +mnp +uzC +pCm +wGK +nKq +uAU +nYD +viI +tnm +tnm +tnm +tnm +tnm +tnm +tnm +tnm +tHF +hGM +uYw +qrY +qrY +oJb +oJb +oJb +oJb +oJb +uYw +sZT +tHF +tnm +tnm +tnm +tnm +tnm +tnm +tnm +tnm +hGM +nhv +iPp +khC +lJD +bEV +hTf +egI +hTf +hVF +pHq +vGc +vcl +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(142,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +tXe +eCf +dJE +kro +sIr +sHp +sIr +vWT +sIr +sHp +aPV +nwG +nYD +jVe +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rtT +oAy +hGM +uYw +uYw +uYw +uYw +uYw +uYw +uYw +sZT +puo +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rtT +oSZ +nhv +cFV +jxp +lEZ +bhi +nwu +bhi +lEZ +bhi +pvs +ujx +nqK +tXe +gSd +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(143,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +pwv +nYD +aWQ +aWQ +aWQ +nYD +aWQ +aWQ +aWQ +nYD +qaM +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +oSZ +tnm +tnm +tnm +tnm +tnm +tnm +tnm +jVe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +tXe +nhv +dzD +dzD +dzD +nhv +dzD +dzD +dzD +nhv +fRZ +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(144,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +tXe +dxi +rtT +rtT +rtT +erp +rtT +rtT +rtT +dxi +tXe +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +tXe +iAm +rtT +rtT +rtT +erp +rtT +rtT +rtT +iAm +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN "} -(1,1,3) = {" -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwcawJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArtTrtTrtTidAidAidAidAidArtTidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidAidArtTaThtXetXetXertTtXetXetXetXetXetXegnWtXetXetXetXetXetXegnWidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThtXetXetXetXeibGtXetXeiJMjDSpZzpzMnrgnrghLJhLJfdXnTzxxfwvGfdXfdXwqexxfnDCfdXmIqiQnidAidAidAidArtTidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXewqexxfmKZeMEhLJhLJtLUubpesFsupuaWuaWubpuaWubprMcubpiIFmKZfjwqIpubpubpubpfvGfdXfdXaAYhUvxgXfdXfdXaAYhLJxgXiSWfdXiJMuYwrtTkkrrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeaxPqIpubpubpubpubpuaWuaWubprqgmsFmsFmsFubpmsFubpgDrubpubpubpxCCubpubpubpubpfpUhLJhLJubpdxZdxZdxZdxZdxZdxZdxZdxZhLJtLUuYwkkrkkrrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeoxEubpubpubpubpubpmsFmsFubpsBzpLgpLggrFxZNrsfuUhnrbxZNubpubpxCCubpubpubpubpuJzuJzuJzubpdxZdxZdxZdxZdxZdxZdxZdxZdxZuYwuYwrmSkkrrtTkkrrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpoXiPBlJxubpubpnlxvNvubpukGhuYubprOZyjUcXssIsxZNaNRgTciUNxZNqvYhYNczEuekxZNtQjvhPfwWgAraLoxRaomTjczxvFjczxvFxvFdxZdxZdxZuYwuYwrmSmVdrmSkkrkkrrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrpEtXeoxEdDaqWxbFkjQzqfscWKxAGqfsrOIitCnYnuauxZNskhhVTrgQxZNdlXcOYmJUnzLxZNwcmwcmoEgwigoLYkoHomTsQSsQSkPBsQSsGMxvFdxZdxZuYwuYwrmSmVdrmSmVdkkridAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeoxEdDaqWxoieeGeqfsoieeEAqfssIqaXWjdmqLgxZNqfsdLmqfsxZNaAzhvUeRjrCdxZNfpGaXzmenvqfwigwKFomTerYqPRkqQwDosQSuxjdxZdxZuYwuYwrmSmVdrmSmVduYwtXetXetXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeoxEubpubpubpswAubpubpswAubpdMysNMdSSffcqfslHVxIZpbhxZNyjhreScHzrCdxZNpXPsuLnGthsYoEWnUmomThHaiNHpckfwOsQSxvFdxZdxZqMWuYwrmSmVdrmSmVduYwhuGhADtXetXeeLHrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidArtTrtTrtTrtTrtTrtTrtTidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeoxEdDaqWxjHGjJwqMlvCGgFevWFprOjTNcxRnJmsSppSPduumtQgpRmLnlvsrEdrCdxZNeYIbITupYgAraLoxZNvwyvFwjZYcxHcxHkPBxvFdxZdxZuYwuYwrmSmVdrmSmVduYwuYwfpUxgXtXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrpEtXetXetXecBUaThtXetXetXecBUaThtXetXetXecBUidAidAidAidAidAidAxyeidAidAidAidAidAidAidAidApoXiPBlJxdDaqWxjRKnmPkvFgvQveCoaOkpblfPqhlnzXqfsgjjgROqeHfZphjnvaThLXykoxZNxRadQHxRaxRaxRaxRaomTomTkgyomTomTomTomTdxZdxZuYwuYwrmSmVdrmSmVduYwuYwubpfpUxgXtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeeLHsoStXetXetXetXelNMtXetXesoSbADtXetXetXetXetXetXesoStXeuLotXetXetXetXetXetXetXetXetXetXeoxEubpubpkkLgrtxZNqfsvgVqfsqfsxZNxXGxZNxZNmmydDpgFjqOkxRAqihwVTnByxZNiVddlVvdUpLkomTqtwcRDbUEwPUdzRoqupStxRaubpubphZGhZGhZGhZGhZGhZGhZGhZGubpubpfpUxgXtXerZLeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJnZTmLrfMJfMJubpubpubpubpubpubpubpubpubpubpubprtgqUrhLJhLJhLJhLJhuGhLJhLJhLJhLJqQzubpubpgHCqwCxZNarmmiYryeplTxZNeqSdLdxZNxZNhAEbwQxZNxZNdfToTcgrvxZNgNqkuunrKpLkomTrWgrWgsjNaXjwNupjkpStxRaubpbtRtVrtVrpcctVrtVrrMnpcctVrgJlubpubpfpUmIqrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJfMJtQGcEucMofMJxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNubpjXokAqkAqkAqkAqkAqkAqkAqkAqdRQnkVubpubpoQBjHqxZNkPXpyzqsiqXMxZNpuMfZoxZNahAaeqqfhvfYxZNmTYamxcjHxZNsiTcAaezvpLkomTtqyiATqTeaXjwNujHComTxRaxRafXguaoejSuIpuIptAbejSejSqBxwReubpubptngfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJfMJfuLfMJguagCDaJbnDibUPiGEbsUjQyaJbfgIfgIaJbnbactIfMJofHwMifczfMJxRawcMwhljdcwDJxRawtnqVPmWgwmYxZNubppopxlfxlfxlfxlfpopxlfxlfxlfvQjpoppopubpdBmycKxZNnpKgrIwynaKjxZNhvhdVcxZNarCcEbqxUseCxZNxkRorecAmxZNomTikKomTomTomTwwVvJSjSDaXjwNuwRXxRascUxRapjEseKjaUtFAanFanFkHYtFAryIwReubpubpuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJuStkhGvxPaJbuStuStwcsuStesnesnuStuStwcsuStuStwcsesnuStfMJnvpwMiaTMfMJxRagWRmipenGctXxRarqthPPxjevEgxZNxZNxvBpUMsyIfGpfGpgQGfGpfGpsyIpHOenpoBRdBUdBUdBUdBUdBUdBUdBUdBUdBUdBUdBUdBUatCdvUaQCotkxZNxZNxZNxZNxZNcusnOWtEshvFomTlKHrbDqTeuzwtxxbjgbJfifhbJfwyykXOtFAmXntoknujcKFtFAegTwReubpubpubpfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJtcBesnuStuStaJbodmuStaJbqCrqCrwnsqCrqCraJbesnuStaJbaJbslofMJfMJqYVfMJfMJxRaxRajTgqFrluJjNKhhNmAxqiWeupxHExRalfVtZtexKexKexKexKexKexKexKsYebqXbibdBUepQrLynsUbsQbsQjeKbsQxwlxFcxFcdBUxZNqUNmsgxZNxZNxZNdTZnExmHppNJqFccephjoomTmBrdCQneRfHvlldxlBxRaqBrxRaoxynabrZQbxHanFshUqqFtFAkbywyBjWEubpubpuqdiQnidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJgSeuStuStuStuStwcsuStuStbTObTObTObTObTObTObTOukwesndAyaJbaJbaJbgIMnosekPxKrkAQxRapNZcXGwybxRarWpfLaxjexTtvEgxRafKCgHqwNKucxucxmMsucxucxjxWxYmxVSrPJdBUepQoyBsIAdWOdWOdWOdWOwQketVxFcdBUxZNojyyfkxZNgpAxRaaABvJSetKjslnOWulSsZFomTomTomTomThIXomTomTomTaFOxRaoxyoGDanFanFwcmkHYanFuKAxLecDEggbubpubpfpUhLJhLJhLJhLJhLJhLJhLJhLJhLJhuGhLJhLJhLJhLJhLJhLJhLJhLJhuGkdRrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTfMJfMJfMJsOOuStesnhipqCraJbaJbxsakcAtrAofLtfEiyircpkYwrFXuFcrvcmOZaJbpOAaJbjPNbkaesnpbucHixRaxRaxRaxRaxRahlLdskqliqlinmTmZFltHtlivCqucxucxmMsucxucxmAIglAczVrPJdBUepQnDjnUExlNxlNxlNxlNoVNeiaanodBUstocGckrAdwVpPuuEpbVOaVjehTluokGDoBgwwNhgBrwArwArwAxZWkdFnkPomTaeexRasUjtOwrZQhyLkmclhUdCmanFsBReIgmXRubpubpuYwhuixcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidArtTrtTfMJfMJfMJsOOdEIuStwnOcGipbuaJbxMOpbuodvjBOwcUfFidaZsKWrOidZmlGQrigvMgmeXqBexzdmHSuLafpcfpcdTLfpcdUVeCympqeodmQglSqpBCawXjidqJrpexaUFigTigTigTdzVaRrigTigTuNwhaaatrdBUxarnlSewZlEKlEKlEKlEKsKfuOQkDhdBUtEKfKpepyryngbuaBpxSleWTmSithCbXvxRaxRaxRaxRaxRaxRajLKwCtiMfkokgYtxRahKOmRktFAtFAsIVanFtFAtFAkgBrgghtcubpubpuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEbADtXefMJfMJfMJbCluStuStbJPxRaxRaovVxRadhIxsawJKbTObTObTObTObTObTObTOaJbxUTaJbaJblJouStwdTybWaJbaJbaJboDQczHfEzkdvxRaxRanqyxRaifeoKNxRaqmHtSQdQshlFcEdpvCbAEsbqdQsxiklPFmwfdBUtnkdBUksCdBUdBUdBUdBUdBUdBUdBUdBUpqbfKpfRqmkErOvxRauRzfHPwAEpzZgSkxRaodIaXBqiutbTxRanCkjsljsljslivDxRaxWWmRktFAlgBkHYfolanFybdkCjqBrubpubpubpuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTpoXlTEfMJfMJfMJctIpuKuStxRaxRaxRajyhjyhxRaaJbuSttCxfhtfhtfhtsSefhtfhtpoVnkfcWvmZEaJbaJbaJbwdTrZcbychrbbPFbPFbPFbPFbPFbPFwYlqnpbPFbPFxRaxRajWtjWtjWtpRipRipRipRipRipRidSrwLwfWPfcIctodEydAlaVOeIleIlwbrwhneIliOxrjGgyUcgpgJtpDvanFxRatvZtvZxRarjyxRaxRafOkkOAmjEtVVxRahwNmDVmDVqxiukvxRaibCtqLwGfanFjKLfCxkHYanFycXdhCubpubpubpqMWbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEqMXetTfMJpbupbulraesnxRaxgSgoptbOhDStiDaJbsFcwruuStuDNgMtuSttPsuhRaJbhMihPXcvhghgaJbmNvbMJdsmpPKsOdbPFatViyppcHeBYmeSsqvcNFvXTbPFrtTrtTrtTrtTrtTrtTxRapsSeMrwlWyiErUIbRxpmWtRNqIktUBnlmycvwzqtUBkYdtUBuLIamojMhmiteFnfJRjEtwPqxRaxRaxRaxRasGbwSbxRaxRahvtiuepblxRalBsdqYkzRkpzrPSxRaxWWwekqvreqoaEIjaUqvrnSCkCjvauubpubptnguYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUbAweSefMJkYWdDegtGesnxRaqCAokKhYlnOsmUmaJbqIdaVZuStsFRbekuStsFRdCMaJbkxghPXqmAfhtsKMfhtfhtqJRcldxSybPFjKQdGJnxFizEkMOxekfXsaLigsertTrtTrtTrtTrtTrtTxRafRkdIndrHxdxbWQbKHphWbjsiDfbKjxmHcAKlQvaJIrvfkXSsboegjxRadROxRaxRaxRaxRaxZNmRSwwTwwjwPRlQtxRagssxjexMuovQxRawUCuWDgYSkpzbjYxRaauxxnorZQqvrrqKqvrrZQrZQkCjvauubpubpuYwuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUtXetXeeSefMJcOmuStesnesnxRaeAUqvcuPBlZFjyhmnNesnesnuStpupocHuStvRhrzHaJbpeYkzZiHwuStaJbuStuStapvhBrnhxbPFgUYcqBdnuffBcqBeOxahngUYgsertTrtTrtTrtTrtTrtTxRaeLHaRnxRaxRaxRaxUwxUwxUwxUwxUwxpQieuxZNxZNxZNjNkxZNxZNlNlxGZtxHxRaeLHunixZNcORdejpfRwPRxRaxRaxRauQtjfcuQtfqJfqJfqJfqJdpGfqJfqJdiOyavkUWrePkUWyjAkUWxcmtQZvauubpubpuYwuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTibGidAidAidAidArtTidAidAidAidAidAidAaThtXetXeeLHeSefMJmuBgKyuStuStxRalFeqjCuAdhmgjGZaJbesnesnuvKphJuStuStuStuStxUTuStuStesnesnaJbotUoDQvcIaJbbEpbPFswfcqBoGiffBcqBafkahngUYgsertTrtTrtTrtTidAidAxRaxRaxRaxRagXoeVdxUwqNmfFRlBzxUwlPlxkHxZNeuXxRMuVDhVgxZNhxmbWJrXddHFjXKlwtxZNeNJajbmRQpVHxRabLnsYDhNNtIgmztfqJmuWkxBcHqpaKrlIfqJxRaxRaxRaxRaxRaxRaxRaxRaxRaxRaxZNubpuYwnKEbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYcGYuqgrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEuLotXefdXeLHtXeibGtXetXefdXtXetXetXetXetXefMJfMJeSefMJaJbaJbaJbwcsxRaxRaxRaxRaxRaxRaaJbwcsaJbxRaxRaxRaxRabcJxRaxRaxRaxRawOqesnaJbsYNpbuaDFgLZmcAeplvwHcYMrVJiZxsJbycnsdxvcQgseidAidAidAidAidAidApAJntzeHmkidkidkidxUwnbTlzWdXexUwbSxiRmxZNaWIcmRrGunqBxZNxZNtBWszqxRawRemcIxZNtZTkkGqoZrpIdKvontontffjxinvXEfqJdUKsDjjRtluOnMPfqJggmkOujKHbFpxRaakCakCuxlvXkhgMxZNubphuidvcdmodYAkAqkAqkAqkAqkAquJjcizlVPcizcizcizcizcizcizcizcizcizfrlrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgFUiijjCZxxfrzPbYQdFTokhfdXtXetXetXefMJfMJfMJfMJeSelJihGdhGdidKuStcwvlJilJilJiaJbpJZqzhuStafcxRaeZpxSphazsKudvAwTvmmZxRaxRajAVxRaxRaspsxXHjLIdORbPFgpyqVXuciaYpoVLvUZxKgbeqbPFxAdqRFhcQyhPisYhdqqXocxFeQRvULvULqfCxUwbyYaGkkAExUwmNgptbxZNmRebcYxukkWbpcpxZNsJvkcFxRaeVWlIyxZNrlWwyOlvNvltxRasIDghEdrrjEDerjfqJpgYaMobZZjyVhrjonJdEQrDhcaZxByxRahgHcZzuIEvXkhgMxZNubptvEnKEuYwnxJuYwuYwuYwuYwuYwfvGvlWgSdgSdgSdgSdgSdgSdgSdgSdrtTgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpfURiMidJeubpubpdJextWrLIubpubpfMJfMJfMJfMJcOmdGYjUGjUGjUGjUGjUGjUGjUGjIsuStwcsuStesnesnniHxRajFrvnnvnnvnnbpDvnngRasBYoXzylFcguxRaghnacPoaIhRuhRuhRuhRuhRuhRuhRuvTfxKgauticwudnylFhEHgLhjbNjorylFylFylFoTFsaXigYxUwkFsadMvKasyjlaGsWfxZNaaBtHatCJdILvXJyfbdNpfjFxZNxZNxZNxZNqQFxRaxRaxRaxRaljAcgjhDldYaoEmfqJxrmuFksuPmeGgMafqJjRNqSSpnMwstuGewstunUjiTvXkhgMxZNubpuYwnKEuYwnxJuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpwffkNRwffubpubpwffwffwffubpubpfMJfMJfMJmULmULgQFmULmULxRaxRaxRaxRaxRabNHxRaxRagmluStuStafcxRayiNpQGpQGpQGphxpQGpxqxRavMYylFuQlxRaxRaacPeIohRuaviaviaviaviavihRugZXxKgdNjtJCudnylFpgQvabbLwcyMylFylFylForCsDPyehxUwlDWaqLsxzxUwwWpxOexZNxWdiWBvfsfUvtzWxZNdNpqsOxRaboTcPgmRMngOjTCboTlLvxRawsWghEcubjEDqzjfqJfqJqDSfqJfqJfqJfqJxRashvxRaxRaxRaodGwQfaKnqZonUOmJVgvEtngnKEuYwnxJuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpsGektEgLupHQxGTdCadZFsUWwqyvZLxRaofkofkofkmULuzDcVGxBFmULptqjVPwKsxRaanFphRvzzxRaddvuXYiRgddvxRafMRhbzduTfMRjcLpfTfMRxRahFCsrakcxaGHxRavaAaJbhRuaviaviaviaviavihRumCrxKgauttJCudnusxvvRoWWebzvvRvvRdVjoqyrujpSmpaFxUwxUwxUwxUwxUweIIwejxZNcKooDbinaaYxtkbxZNtBWqPSxRaxIJeigxRatIgxRaxIJxIJxRaovumBGgZmrrcwyEqVIjSBvpJqVIqVIlFWoHQgLBrNwidYqVIxRabPubPuvJbsAApQXxZNcpTkAqkAqkAqnkVuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTbTsjGDeJfgstcxTiKjoaXuVatvNlLfkSucmmxRamXxxwpxyVmULcswqZmnJemULfZDlMEiYRvEUrRabFdoHCxRafdRknbsCmkuIxRauGIuABjOCuGIrDuxEJuGIxRawzDakRkMKqzTxRabCjejyhRuaviaviaviaviavihRufppjELjqPbPFwVvhScrZrxwVrZrrZrrZrgwGthyylFrAmuXqoBkhZcqvOpXMoBkfPJxVcxZNuBIgfpknduVDniYxZNdNptfZxRarNnnHiiTvsFUueqxHMsEyuQtmeEtRqdrrjEDpRZqVIpyvebcfiCcUKrPDfUtuCrqAnoHQilrxRabPubPuvJbkhuxRaxZNsLIubpuYwuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTeuijGDjKsrWXdGGbooyfdvdxnlQsaJmibxLMxRaaTviFPksrmULcGFafndfGmULlOiqGVjmexRakHYqqanhExRavBCrDRsCmsCmnhXuGIclThpdhpdgEdnQsuTAvOsgNDkaHkMKelUxRabCjqxehRuaviaviaviaviavihRunNttwNgmFrvhlNXuMUepnmFOwnYylFylFqcieMRvvRebzuewfbksWyrYTyfloBkxwspZVxZNxZNjyblJNoTxxZNxZNdNpnrGxRaxIJeigxRafCfgqwontontopEontibymiMxmmnVaqVIqVIrWNqVInnfwmvaUmjkNezzwmvwmvxRaxRaxRavlHxRaxRaxRamYKliJliJjVZjVZjVZjVZjVZhLvjVZhFWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrbTsjGDqGOcmmwEwtpLpQvtfimKhgqTkSuvfKxRaoCKclHlNUmULvZxltUoTTmULxRaxRaxRaxRaxRaxRaxRaxRaqxDenMsCmiWMxRakPLlUeduabEXbMYlUemzcxRampTbVlhhymMNxRabCjejyhRuaviaviaviaviavihRuxgAlrlnJrbPFwCvvkuhzlpJGeYQdWivnDuLuuWAsRydJPllmxRawgRcrDjnKoBkydfeRDxRauxPoOrgfVuVDkBtxRadNpdhHxRaboTgwZjTCsLlgfzhDWhDWuQtnsTjsksAPpYItHvqVInxynrJfiCqGThhEhhEgNPjjFhhEhhEcDoqVIsyBjGYaDvajjimmhflbdytOdlHtlHtlHtlHtlHtlHtlHtlHtrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrubpubpubpsXucvMfgaiBZuBXcXphtUrsFomEfQyxRaofkfruwtHmULnrkmULxIsmULuxxeBDxcUyiadpsgrLddvddvxFLcFxuAYxFLxRaxRarSgrSgxRarSgrSgxRaxRaxRauClxRaxRaxRanXGddvhRuhRukkqkkqkkqhRuhRubPFbEMbPFbPFxRaxRaqfGqfGqfGxRaqfGoHFgWKxRaxRaxRaxRaxRaxRaxRaxRavkeeEOxRaoowoOrsEyuVDblGxRanJlxRaxRaxRaxRaxRaxRaqoeqoeqoexRaxRarAUqoetDDxRaqVIqVIqVIqVIkskdUqewuleUsWvewuhhEimEtjdqIehWbidjqIecBHmYKliJliJtVttVttVttVttVtbFrtVtaICrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmnxjGDduAiKjdpuaKXvUOaJGuDLpWecMesGgsGgsMdcqtjSZubmnUAxCdlxlldVqdsuxdkbqrUKjOLbcijOLhluuAYqlDoXpsCfqlDuAYijOjOLrUKcJQjOLxCduAYefaeBwldVodFjgMkFWxvSkCSeCHycsxHTawRhyfbTKvkekQKjDkxZEclpjsUkpRtnntnntnnpeowiHpZFqeZtnnwLltTslqjvkemDDtmLotjsTZtPxvsXrkTrkBowUrkTrkTuVJtfkgswegnpyfwgNjTrimMwgNwgNsIfegngBoqVCgBojMEePEeWIjukgHQylZhhEjAxkUVleUbFtkUVhhEclRrLjpyJmFodxqbmGbmGlOrhCUdoMjevjevjevjevjevuYwjevxwurZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTkkrkkrkkrkkrmySjGDsveiKjsiBdSzsTqqiWstCccIoXJpuEpArxRacoYgyHaXSrVTtwqtzKqZqfbBmhcdNkonItnSicRvpmkyxoYakyxpHKdbwkyxoYakyxrCIwoorCIrCIpduoYapdukiKeTukiKwookiKtsjvbGrAgxeYdutaXoaYzfNDvSFhKxaYzaYzpFHsPTqUqmErobGkWTaYzaXoqLdcMNsPTaYztpKxTKmzvxPaaDttuGgDHnKbqitbwJbozrhDdwCpxjpxjrcDcELqitcELfdFfdFglioqUfdFcELqitcELngVfdFrtEaxYdoVtlzdQPtZJvkyqDhqDhvEvhasnFcplNsdgqVIvmEjGYaBEbmGbmGkOtpbWdoMuYwuYwuYwuYwuYwuYwuYwuqdrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmnxjGDbcaiKjrGnrMBaYwuRfjKhmnklFntnYaYvvaHjIRcsZskpkEJhbilxloIBshFnfVcgltrinRwsCmqsnnvxuAYoIBldVewFwepuAYdyKkEJqYqcglkEJhbiuAYbGKeZQsISpeQhnqaMqquDskeeCHprTnlkmAVccjnpUvkeqcOcGVccjgavccjccjeaekGLuXHaJIgavccjccjdjilYPccjhwwvkelsksxqrMjlhclskvsXrtlvWmmSfgSBbvWifqemKmDkvsXrtlbQgbQgoGXgIfwigaDBvsXaDBwighyzdqewUDrRIspCxPsylZkotdUqewuunadUqewuhhEclRrLjpyJamSjzfapBapBlnpdbtdoMuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrubpubpubpsXucmmydXpLrmnHddlgVzcYbbbZfoZxRaflrflrflrflrflrjsYflrjTEpqFjsYjsYngKpWingKremremtOUkharemremfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDxZNxZNsRoxZNxZNxRarWwuQtuQtuQtxRaqOvqOvqOvqOvqOvhgwqOvqOvjuZqOvqOvpdJqOvqOvqOvqOvqOvqOvsVBuYLsmZuYLsVBlSxlSxlSxlSxlSxlSxlSxlSxlSxlSxlSxlSxlSxwBrpgvvcqwBrxbJcgEtOxxbJeSFxbJtKCtKCxRauCTkotjAxkUVunajAxkUVhhEimEtjdqIemFodxqbmGbmGkOttDGdoMuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrbTsjGDvCCcmmuSJjtucwAwIrahQtxciKjcmmxRagBTeMPwqkeMPwqkbufhdrwdIsVKuwxnDPngKjkRgZbremmBgeHbrlQuxypMVghameHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDxrvtSWwBqdNlxZNdWtnkjeyQrtTrtTrtTqOvrWyrzdchfcUIjfqqOveTafJJaISqXpqOvxMKoGZhyPlIfpIXqOvkRmxftbDIxpVizzlSxrtDchocZTbBUwYzmwDezKezKqprezKezKlSxxFQotIyfHlwdxbJdHadYZjBctmsxbJxbJxbJxbJuCTtDobXqhhEwWbhhEbXqhhEcDoqVIqIejGYqIenTRbmGsIUhCUdoMuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeuijGDqGOiQFwqyrBSwuetxciKjiKjiKjcmmxRadCGuWjuWjuWjuWjhKdpomxgPausausnuQngKjkRgZbremvcmfOBtoTfOBfpIunemeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDpdXvTCjaJrFjxZNydKydnrtTrtTrtTrtTqOvstzkzLdSQcrrcrreDDsnIsNaxsCyfacBvbkUbkUtOCjLNoAbqOvshXqAflcnaoNkyjlSxcqCaVelnCqwJuxNcvyvHgbLTpgNcvCcvClSxeuExPyfOTljghqtvaDiSRrLEmANjUAgGMacJgpNuCTuCTuCTiWtbQWqZJqVIhTSqVIqVIssStoKfIBqVIqVImYKliJliJuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTbTsjGDqGObLUiKjsUQyiciKjiKjwiFqajcmmxRaeUzkLMkLMkLMkLMtjZaSYsTraSYlWIqbgngKjkRjCpremutWcoDvAkkFnkHktOUmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDpSaphEjgLiAPxZNasriqlqWkoIirZLrtTqOvcxQvQvwCLtKTeRUqOvtGmtKTfApjqbqOvtaXmFybTgszHatoqOvrtTlsMvmBleEqdSlSxdteoAmaVelLYpnpeFgeFglFHlSxlSxlSxlSxmxOchihwZbtfhqtxTZkExabIjQkrIXqeUqeUqeUbtEuXPxbJpVxpVxpVxpVxqxPfQVqVIqVIqVIqVIqVIqVImYKliJuYwuYwuYwuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTubpubpubphpSdGGqvJtcJtJjqsXdGGpmavZWsSFxRagXDawldZKawldZKbiJqZLhGyuJGygUwZzngKjkRuXjremremremxepremremfJDmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDwYIuJobXalozxZNwleszvwlewlewlewleqOvocElnOqgfpjftCsqOvgwhtKThrOwqNqOvlbLoQHvtTlIfpIXqOvktesurtOlbjUaYblSxxaMyiRygluxaeLnpHcuWfbSHlSxiXSqHfsZxcSZbkggInrnItWTcKghXnhXngjXkALxBRqubxBRvHMeouxbJlbylbyxIjmwoqxPinSpVxredcemuzYcLxbXThvokAqkAqkAqpCeuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpwXrkNRwXrubpubpwffwffwffubpubpmhimhijsYjsYjsYjsYjsYoCTjsYjsYjsYngKjkRpxPwdEwdEngKsvXudctXZxkEmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDxZNxZNxZNsnaxZNqRxrbhtQOuICkKzwleqOvqOvqOvqOvqOvqOvqOvoOXvUfknCqAhqOvqOvqOvqOvqOvqOvqOvxRaxRabVAxRaxZNlSxipXhqlhqlfHegKrmcquqlhQfshZsqqsxSlSxkqAnLHnLHlDMxbJxfYyaVpGenpCwuTjGPpIyhjPsErxbGxbJvVMqxPqxPqxPqxPqxPqSpgkDgkDqVkvhFbXTbXTtngnKEuYwnxJuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubphAuucVlNvubpubplNvtOOwdkubpubpmhimhimhimhiqLIjsYfSqoMamihoZLoZLngKjkRjkRjkRjkRivlluTwAStnlvZOmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDvRwfbXxZNmwxxZNrGKrTsjUfoaedHCwleirxiwYhnkouuaPwqOvliAdjUbgZeKLkCNqOvqQMvestPfdWrwXkqOvxDJxWymtCqROlSxsKCtTMoAmhqvuxafVSsIixTclWClSxlSxlSxlSxcfPcfPvTqcfPxbJduGdxBaZJblAkALxBRwiJxBRdIFdIExbJlbyqxPbeVhNsqxPdgkpVxwMZgkDajFwzkbXTbXTnKEnKEuYwnxJuYwuYwuYwuYwuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTxngsZikPKcizeCOkjXvOQbzNfdXpjbtXetXemhimhimhimhimhivshaOHsQumxcsgZngKsDsoHYoHYoHYngKoobfTUfJDfJDmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDdlOdXOmrglsCxZNkxIbDsjUfoaedHCwlestzxGioilbLSiqbqOvpLVoFatKTtKTjoTqOvldClWgtGKvWLoAbqOvdtyanFmtCpDvlSxcgRjzAtNfaCcxcxaKhxjkpnKfNCxkFmnzlSxrMolhvlhvlhvlhvxbJcuglIvrcWlnRetEnTOpQNpbfnJXnLMxbJlbyqxPpTbqffqxPfQVpVxpVxpVxpVxpVxbXTbXTlxinKEuYwnxJuYwuYwuYwuYwuYwfvGiQnidAidAidAidAidAidAidAidArtTidAidArtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEuLotXefdXeLHtXelZacQbtXefdXeJOtXetXetXetXemhimhimhimhimHgoMaoqxoqxngKomyngKngKngKngKngKgmMlJYfJDmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDxZNxZNxZNsnaxZNbiEllMcPGsYztWKwlecxQqQCkyauFTuFTfpjjOhefbrsirsiekHhyScrrcrrryJldTatoqOvxDJxWymtCqROlSxsXBlktwNslVmwAUsAykmykTVxBZiuKllblSxfGncCFqZtelPhJwxbJxbJavtaSHugwavtxbJaOddMGqlxxbJxbJlpIqxPlpIvtHqxPhpbpVxuUHxbOuUHucpbXTbXTqgytzTdvWgWFkAqkAqkAqkAqkAquuAxxfrvvxxfxxfxxfxxfxxfxxfxxfxxfxxfwvGrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlZagSdgSdgSdgSdrtTgSdgSdgSdgSdgSdgSdatxtXetXetXeubpubpcpuuJecpucpucpucpucpucpucpucpungKlYxaRxfJDmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDqYjkrKasccxMxZNwlewleaKawlewlewleirxiwYnsfmZxqjaqOvxhprfXruyjyDdyDqOvmgzgIeeCsdWrwXknVznVznVzoGoqROlSxsPBezHhjguEhmNswRBrbtgpbbQyaEMszjlSxrMorMoqZtvtselPqZtxbJckBxtMmuwtINxbJxbJhMgxbJxbJeLZqxPqxPqxPqxPqxPqxPoSkrnDrnDrnDrnDbXTbXTuYwnKEbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWvLvuqgrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdatxtXeuxiuyPpWhlrHefBcpuntvepkskAnFKgSHcpungKjkRlTYfJDmeHmeHmeHmeHmeHmeHmeHmeHmeHmeHfJDnmfoIfxZNrSlxZNnBjkDOsKXpNCoUmxRaxRaxRaxRaxRaxRaxRakQHqLCxRakQHkQHxRanVznVznVznVznVznVzwZInVzmtCtfZlSxweCfVsxmjuEhfOFpikfwypbUeMjqdzcwylSxbEBrMotHEtPrboOrMoxbJpUnsoruQRgKHxbJwUpxTZeVvxbJeLZqxPdgkqKaxRaxRaxRaxRaxRaxRakiUrnDbXTbXTuYwuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXeuxiuyPlNIoexfRGosLrZUjnDoTGmDYoWycpungKjkRjkRfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDfJDxZNxZNxZNnePxZNqrBtBlpLtdsXcossMRwmqxjtryzrBZvcomCPoCmtInkGTpdlpdlwgrnVztNNpxzyasnyAnVzuHjnVzmtCqROlSxaNWfVsxmjuEhfOFkinrtoduJlSxlSxlSxlSxqxPqxPqxPqxPqxPkcKxbJoegurvsPqreIxbJkePxTZhAVxbJmwoqxPfQVjYixRaqfJplkrkumKoxRakiUkiUbXTbXTuYwuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArlUbAwubpubpcpuiUAhGCcpubSTdZAvEevEeoNFcpungKoHYjkRwEnxYcngKdWnhHQpFylzjjkRaxWqDIngKjHdizhxYcxZNwwmxZNxRaxRasOkdsXcosdPnoeGlOUlOUlOUoOmpnFfaNoKzmTFuIlttobYXaFRrItiYxegLtXgnVzfaFnVzvogxZNlSxaNWfVsxmjuEhukQlSxesllSxlSxlSxqzlcIjungungunghjKqxPgVaxbJxbJxbJxbJxbJxbJxbJjYPxbJxbJpVxnaepVxpVxxRafokuyBlKCdchxRagvykiUbXTbXTtnguYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXetXetXeubpubpcpucpucpucpurFSvEerWtvEeylFcpungKuZLjkRjkRjkRhvOjkRjkRjkRjkRjkRsnSsnSngKjHduodxYcngKylAsNirLBumafjGrzivWkoOckKvpLqaQqpLqpLqpLqgKWvUBxRaxRaxRaxRaxRavwmoNmykaiYxiYxxtDnVzgqlkfulSxaNWfVsxmjuEhfOFlSxbQZmNJiHAlSxhAzvhEwuHoGPwlhgNwumodTypVxqxPqxPaQdaUfpVxqxPqxPqxPrNEpFvqxPqxPpVxxRavNHuyBubGxSLxRaxkDkiUbXTbXTbXTuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXebADtXetXeeLHubpubpubpcpucpuiqgvEevEevEeylFcpungKumsjkRtjwvbmngKrdHwKIjkRjkRjkRvcvoklngKsJCuodbtbiyxuodaiSjkRngKngKxRaxRapzlxRaxRaqPvhRTmKGxRaxRaaGTxRakDQbwMrtTxRariQrccnNixrCsiUqJPaunmtCtMllSxlkgkTutKHuEhfOFlSxuSjqfZpFulSxuEnbSoozFblwpVxsSLqxPhQrfbDuYIuYIuYIheXfbDuYIajOjbQuYImQKuYIuYIuSnoFKlFIsINklpxZNxZNxZNxZNubpubpubpuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXetXewvgtXerZLubpubpubpcpucpuqBDvdZmnOylFcpungKngKngKngKngKngKngKngKjkRjkRvcnjkRjkRivljkRuodiVVpsApsAultkdSmiIngKxwWgjToZldJdxRaqsDsoMrfExRaeMClDefCIylFxSrpNVxRaxGvxCJdQGiDKylqezynVzoGovaulSxlSxaauaauaaulSxlSxdLUlSxlSxlSxaXqpVxpVxpVxxRaxRaxRaxRaxZNxZNxZNxZNdQMdQMbPdemSxCWcEWrMorMorMoxZNeahqusrAmrrXxZNnamyezbeJaOgubpubpuYwbcvxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIkMWhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTgSdgSdgSdrtTgSdrtTrtTubpubpubpcpucpucpucpueuocpungKfxbngKdFndFniDPpFyngKjkRoQxngKngKxIgngKsDsuodaiSaxnrHMlXyjBEsJCngKmiWxEGoZlxbxxRavxfkcRnOyxRacQLoNngvUoOHdWplnExRamoYiHycnjnVzvHPnVznVzmtCdwqxRahhaxOgxOgasorJCnXuhKlhSnanvgjJvuWnEopjeqhwxRaiQYkpMxsgxZNbLruhJvdAdQMdQMdQMdQMdQMxZNxZNmMRnmsxZNhOzquslVCxZNxZNnvPkQWcfmmYtubpubpuYwqgyxcurzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIrzIpbYhWtrZLrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpubpkCTwRexRangKjkRaSVjkRjkRjkRjkRhvOjkRlPongKoKRgHNngKiBHtnRmSxjCprHMlXyxPpjkRngKsqAruistpqxXxRatwOrLClodxRaqMAbOLghTowNandwaSxRaqtrmtWxoPnVzpDInVzfDrxOfbiipqDhFcbiihFcmzFhFchFclihuaDuaDoinhUNsXDsXDsfurPNwQCjPkvUnfAOsasboNvNlgCOhKqlsjhqOdQMnXtuiCxmlcXtxZNdJYagFxZNxZNsRGhfXsEyaXhfKjubpubprTOvOQvOQvOQvOQvOQvOQvOQvOQvOQvoLvOQvOQvOQvOQvOQvOQvOQvOQvoLtXirtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpubpkCTfXQxRalYmjkRjkRjkRjkRjkRjkRngKbFEoRPngKwwRuodngKrHMrHMcOdrHMrHMrHMrHMvEfngKdquoEAjaydquxRadzcmIgvJExRaoXnlAycdUwaOwFouBixRaxufbeuxetnVzgFhnVzeLHwReqYZxRanjlaeSjzNkRLlgzcwqcqVanFanFisXdGlaILnuCshExRaslLsfhxLNxZNvXVxEQbOZdQMeBLxaPtJYdQMtXertTkWmbQmxZNxZNbALxZNnDEkQFjsDbKPgxpubpubpubpwgPgYEgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpnjbwRenJnuodjkRgPhtKagrpinIinIngKxYcxYcngKgXvuodrHMrHMozHkkIykBrHMrHMvgcnwnngKaoEdbumOtuIOxRapcbbPHweBxRaubpqGgxJdxJdxJdubpxZNbxQbxQbxQbxQbxQbxQxZNxZNxZNxZNxZNxZNxZNcaRxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNdQMdQMjcUdQMdQMtkLrtTkWmbQmxZNxZNiSdvwvflPpKOasmanFkkrubpubpuYwfvGrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpubpdzPnqWuXjuzmiBHnNXiBHngKxYcvZSngKuWMlqHrHMrHMiQcsVqtQfrHMrHMqSyvFBngKxRafPcpKnxRaxRaweBweBweBubpfQfmXPeoOeoOeoOubpubpuWuuWuuWuuWuuWuuWuyewaFqlwnfsIaFqvbsxZNutXduFxZNcfKhkLicWjhyxZNjVvhiopRAyjbpSniQnsBefFGcBUsBefFGsBexQTdsWqFDitQrbVfLewARtjnxZNxZNdtyxZNxZNkKUubpubpubpubpubpfwwxTIrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMkrTrHMrHMrHMrHMrHMrHMubpqixqixubpubpubpubpubpubpklOeoOqAWkGleoOfvJePHuYwuYwuYwuYwubpubpdDzuxByibkBsofGoGGxZNsQQiQyxZNpchbhgcxLkxHxZNjRwsGPidAidAiqHtXetXewPVtXetXewPVtXetXeplFxkZxZNwpIscklbKxZNxZNxZNxZNxZNoZucuapoBubpubpubpfwwucQuyKrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEeLHrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMrHMsgodmAsgodmAujcrHMrHMrHMrHMuYwuYwuYwuYwubpubpubpthRxMxmCtfRRvOQvOQclZclZvOQvOQvOQvOQvoLubpubpqxvcamhBSvsdjBSjdXxZNeSLxZNxZNqyQqCUxqlfiPxZNtQmqyijGWltOmRtravravhJVravravfgPhzbraviZcjSnycVoIEpalnCEqBOiLdiLdgGHxZNwwsazQubpubpuYwfwwucQgYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXexsftXetXetXetXetXetXetXetXetXetXexsftXeeLHtXetXetXetXetXetXetXexsftXetXetXetXetXetXetXexsftXeuLogYEgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpnnJkHevvOwPVnXycDvbsBjDvkEExZNlCCgWkcPvaAPntAcmwpfyuatxGDoqqgkqbQAbbqoqqgkqbQAbbqoqqgkqcGwviUvoxjOaerxmNVqckrOGqXjxZNubpubpubpuYwfwwucQgYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdrtTgSdgSdgSdgSdgSdgSdgSdgSdatxtXetXetXegYErtTrtTrtTgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdlZartTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpoUHwPVufgwPVtHWbXglvDqhstvGxZNqkPrnPjZOsKEmYqfOLckikohkLFnitwCdjxRnitnitnHzvzpvzpvzpfzGxEnisHxEivRovtZjBYqFqjPesGBxZNubpubpabkuYwfvGgYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuWKgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpgRrnCEvgluGKklumDGffhhbvhlOxZNgJQxBYtDjdvdxZNxcegCbhaHfPbaAtmmJcycvuZaAtwaXeDkmmhaAtmmJfQMsPDgOrjhSubpubpbUXooEfAmubpubpvOQvOQvOQxTIrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWhCtbbOhCtcgHxZNxZNftnxZNxZNxZNxZNxZNxZNxZNxZNxxonVYjCQubpsJEuDGiybubpfgolYKfgoubpmkjqnlxbAubpdOcubpubpubpqbldVoeDgubpubprtTgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWqayuYwbAZbzAfzrlTPlAeptCidrcCjxZNxZNxZNxZNxZNxxlbMXmOxeQvlimrsokJVubplimmIsmvMubplimrsosIoubpobmpinubpubplimjJmpcCubpuYwrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNaCFwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWhCtnKzhCtcgHfoHtEVnPbgQVhNmpYrxZNlNbdYLnAOxRacAltXGhNfiIzbQmhhIsKnubplimrPOuFLubpbQmhhIudRubpmesubpubpubpkGykGycYkubprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWglvdkladAcgHurqidunPbgQVhkAbNqxZNuUlxBHsBGfMslCciGluZHubpqblmEPbQmubpqblmEPbQmubpqblmEPhTKubpubpubpubpubpijMijMtBsqswrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWuYwuYwuYwcgHurqibFqbOtJMibFuqaxZNqEwkYEvDgubpqsAhsnoAiubplxYlxYlxYubparNarNarNubpkbdkbdoqsubpubpubpubpubprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpvEWhZGhZGhZGvEWubpubpubpubpubpubpubppfwpfwpfwubpubpqdivHcubpijMijMijMubpijMijMijMubpijMijMkIncizoOJubpubpubprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpijMijMijMubpubpubpubpubpubpubpubpvOQvOQvOQubpcJXkcjvOQubprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuLortTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlZartTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNqVowJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNqzuwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN +(145,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN "} -(1,1,4) = {" -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNjhcwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidAidArtTrpErXtcBUidAidAaThrXtsXdlhgsXdrXtcBUidAidAaThxdFcoHoSZrZLrtTrtTidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThffycoHcoHoAycBUaThlSKcoHcoHcoHcoHakjcoHakjcoHakjcoHcoHcoHcoHhCTuYwtnmcBUidAaThxdFcoHcoHcoHcoHcoHcoHcoHoAycBUrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNhnLwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpExdFhCTuYwuYwhGMcoHcoHhCTuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwhGMcoHcoHcoHhCTuYwuYwuYwuYwuYwuYwuYwhGMoSZrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEixAtOtuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidArtTidAidAidAidAidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwtnmrZLrtTrtTrtTrtTrtTrtTidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXetXesoStXetXetXetXetXetXetXetXetXesoStXecBUidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwcxmcBUidAidAidAidAidAaThtXetXetXecBUidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBnIBtXetXetXecBUidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTyadvMmuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwtnmtXesoStXetXetXetXetXetXeeLHsoStXetXecBUrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTnIBnIBnIBbsZbsZbsZbsZbsZbsZbsZbsZbsZbsZnIBnIBnIBnIBnIBtXetXetXerZLrtTrtTrtTrtTrtTrtTidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwvSouYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwvSouYwuYwuYwuYwuYwuYwtnmtXenYDnYDnYDnYDnYDnYDnYDnYDnYDhFbeCftXecBUrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTnIBnIBnIBnIBbsZlAslwpgcckJJvoPoWvlqCmuibsZbsZbsZbsZnIBnIBnIBnIBtXecBUidAidAidAidAidAaThtXetXetXeshRtXetXetXecBUrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAaThtSDuYwuYwuYwuYwuYwuYwwWVwWVwWVwWVwWVwWVwWVwWVwWVuYwuYwuYwuYwvSouYwuYwuYwuYwuYwwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVnYDnYDnYDnYDnYDnYDnYDnYDnYDnYDfXXdJEpwvtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrnIBbsZqoFdYsfQAmQVoluoWvjeXhPRoWvdLjgXpbsZbsZbsZbsZnIBtXetXesoStXetXetXetXetXetXeeLHtXesoStXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetXesoSxdFhCTuYwuYwuYwuYwuYwpATwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVaGPokrrLZfrNlRxiDUfGsvNCnYDnYDtRFrDsxZVpGnpQtqzMciMnYDhPfkronYDdxirtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwnIBbsZcufbiRoFgvmqsyvoWvqNthLfoWveqZduzkrNwVIflBbsZnIBnIBubpubpubpubpubpubpubpubpubpubppATtbnjwepATpATpAToCuoCuoCutbngEOgEOgEOtbnnOPnOPnOPpATpATtSDuYwuYwuYwnKEvSouYwpATwWVwWVufaxEAjWLczJufaqJjwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVwWVjWLptujWLjiEnwZbrEunXoLAnYDnYDuQerDssMppGnhckqzMtJJpGnvddsIraWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTnIBnIBnIBnIBbsZqBWmyXdcrukZvekkekaUtmdBrPnhZohZohZoduzhZobsZnIBnIBxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNpATsoNgiUlrwpATpATtFAcKZtFApATtFApYMtFApATtFArgxtFApATpATpATpATpATpATpATpATpATpATwWVqtqufanczjWLdmdufadmddmdjWLnHdmyDrSUbAOkGUheTwWVwWVwWVwWVwWVjWLfBimkclCVkgEvrSkjgelSpGnpGnlySpNEmUQpGnbbdcHJlySpGnuzCsHpaWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXexsfkkrnIBbsZxaexrLgrnfpvrQVoWvhZoetloWvoWvoWvoWvoWvjsebsZoWvoWvxRajouwmBxRaqTiqggsLqrKUhyDxZNpATnsaqqHbnrpATpATtFAxnhtFApATtFAxnhtFApATtFAxnhtFApATpATpATpATpATpATaNssaOqbFujNgLVnvXnvXnvXgeLnvXnvXnvXnvXmRLkdaimigXwaTLimidtYdjwjWLtylvPuvPujWLdDWjWLjWLmZtpGnpGnpGnpGnnKUkUDqbHefwrvqvzDfIaceSrjwmnpsIraWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXeuYwvDBnIBbsZbsZgGJxOshmPoWvoWvfYkvnLoWvmyNjkgmUcoWvylwbsZvMRnwwxRaxRaaITxRamKdrqreUstWssgVxZNpATbRdqqHjmPpATpATtFAoPPtFApATtFAbNztFApATtFAoPPtFApATkOobsHoPFirAcOzpgCjwXxqAupswNJwNJwNJwNJwNJwNJlYwsUClYwjWLkqTiqyvjlkZIvjlvTjuydjWLgPZklQmxGjWLgAIgAIjWLmZtsMxdttxYHvxnqSvxMnesBhHXidqactfbLkvugixuzCvWTnYDerprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThtXeqMWvDBhwEnIBnIBbsZrLuoUxspirZRpMphZoetloWvtKyqtPohsbsZbsZbsZocvbfGxRabXsjwZnAkflfcCuvULhtJoYfxZNpATpATmczpATpATpATtFAcJDtFApATtFAifvtFApATtFAfgXtFApATrCcrzTconujNujNujNujNqpMpCdwNJmGewodwoduslwNJxRaxRaxRaxRaxRaiirxRaxRaxRaatKpmJojReIvhVfgnRojReYsufaxEAmZtmmRpGnpGnpGnxDXgtvcXWuZJqhudFwcCDuzclpGpCmsIraWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXetXeuYwhwEaVbsaknIBbsZfscdWCieGdfOdAwhZoetloWvhcZimJelJbsZvWobsZrpPqBYxRaxRarukxRaxRaxRavGbmEdnYLxRahFKgOKlHUdngpATpAToqdpmmoqdpAToqdgFMoqdpAToqdleOoqdpATrCcrbshDrrJWwNJwNJwNJwNJwNJwNJhYmxsTwodepFwNJnsInOLoYhqfktwYyhFwOAqJOxRaxRaxRaxRaxRaxRaxRaxRamhSjiDeYsxdvjkqpGnpGnpGnpGnrSmlParSmioigksgkssCvkgNwGKsHpaWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXevDBuYwhwEuYwpJvnIBbsZhcrnXwigFqBfeeItHPovenVPubkbQqhZybsZnuJbsZplUgzAoWvxiEkfHweNheJxRaxRaxRaxRaxRamgXgOKlHUdngpATpATpATrQIpATpATpATxNDpATpATpATlaPpATpATrCcjAHpqPxkXwNJjXlhQOwfJsmxmxfxFpxrWuRInSatjCgUVgUVgUVovGjVfbvtvAUrhTxRaiAQskmiianGTfInuVDxRalYwgQNmhSrwxeFfmYLmZtmvypGnlLLaeInDNioijjouVFlishNCnKqaPVaWQrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidAidAidAidAidAfbsrtTrtTidArtTqMWvDBnIBsqynIBnIBnIBnIBbsZicIxYXcRdiJHhCwduzggOoWvnXwkDbmaZbsZnuJbsZvnmqqhoWvkrNhKkkZKfzFcvNoQQmAPmAPmAWkxigOKwPBlQYcvNcvNfCGikoojvaqbavQtWhojvkLxoYZljfdJhcvNcvNamjcvNcvNwNJtdiweFacVrTDvnrugQuvEtByltstfemcOmcOlelsoVeCofCAkEksVfhwmiQGrtUuUchUqlEquVDxRaxRaxRaxRaxRaxRarQOmZtmvypGnrFcaeIvBPioiuJvgBibGRhOuuAUnwGnYDdxirtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrlUtXetXetXetXetXetXetXexzwcBUrlUeLHuYwuYwdDgnIBceoeoVnIBnIBnIBbsZvHeiJEierfpPpMpflzggOoWvcHPoWvoWvbsZdSWxZNxRaxRaxRaxRaxRakZKqRdcvNthTaCsfuiiOHjHYgOKbaWwjvcvNfywgOKlvibBQlvilvilvilvilvilvilvigOKiescvNgXZkjLgRBwNJgbEdlrkGwhhgaHouUKvMEvyIrsvwNJdBwxzYiMygeUdmweSipLKanWxRawlEuVDiKtvqLksouVDekYqfsszpbbgsZqxRatmrmZtpGnvucpGnpGnpGnioiioiioimDiioinYDnYDqaMtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAtXetXeubpubpubpubpubpfdXvzXfdXfdXbiwstvuYwuYwbqGhtXlrUnIBnIBoWvoWvoWvoWvoWvoWvoWvoWvbAtoWvoWvoWvoKJkYHnuJxRarIucSItYrodAxRakZKigycvNkOokOomXTkazjFpgFiavLwNNcvNgVSlYojVVlYovaFiCDvAfqvAimHiBtlYolYooEptSsjSjuIGqLKwNJwNJwNJwNJwNJwNJwNJoQEwNJwNJwNJxZNxZNxZNxZNxZNfFCnHFxRaxRacBPwkAqqNvXJlMRenZlxjrUviPQqAwbmixRaqgHwVAmZtmZtxZNxZNxZNxZNxZNubpuYwuYwviIjVetXegYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUtXetXetXeubpubpubpubpubpubpnIBdkRnIBnIBnIBqPHkXapJvnIBsFenIBnIBndfieDwOUudIoKJoKJoKJoWvmwJggOhZokoohZohZoheVnUvdBqvDYknvhNnmsqxRakZKeKaiEyplRfhYplRgbcsFbgbccoMmfLhjShJElunhZFvdJerApkqmohdwQmGIlpBsPOiiGgJwcvNkOogOKjrFtMbtXMpgtayDayDpgtauEsYXhhPoxGowBoZhcdkaKtokuwjjaNDgatrKvxRakbtxHMhNphTOpGFrACwNOxRauIuwbmcpvxRaoeVsKiaSxdlIxRaidweWhocwoAeubpubpuMttnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTfbstXetXeubpubpubpubpubpubpubpubpnIBdkRnIBnIBnIBroxaifbYbnIBlrndnlkXdpggpggqYzdRcsTFfkQfkQurKfkQbxZqkxqkxqkxqkxwjmuGvxRajQavQUkxhcLGxRakZKmOKcvNpdweJosFXsFXcvNcvNlfNcvNcvNcBLazXgVYvcgiPliPliPltQDiPliPlcbCsEtcbCcbCcbCgOKjbKtMbkaSwCkhzRhzRrQghzRekcfmqoxGfOgjmsfOOcDSrrZwjjaNDbONaiPxRacIHeHecIHcAuxJThKNdOdxRahUGwbmsLExRafGalKLlKLlBWxRacWzewzqTBakEubpubptngtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEuLosoSubpubpubpubphDtiEbfIeiEqxZNbsZlifhdpqIZhXysqcaApoOWuJFvNOvrefUVlYgvrevrevrevrevrevrevrevrevrevrevrepmTjEJtMetcyxRavBpxRaxRavBpxRakZKmOKcvNcvNcvNcvNcvNcvNrcVaoGxwRcvNcjXsgDjYmekGskvlsEjpojpSpsRaFiwVwfFBfgRyfFaPHgbcmNzvEDrjhczGvuAoqAoqAkmKaLSctJwjjuvVrBAuvJtoDtvuwjjaNDbONsZUxRaxRaxRaxRandjcVcozrlyOxRaxRajYVxRaxRajWLjWLhZpleGxRaxhAcRccynsskubpubpoygtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEfnNsMesMesMeidIvsnhDtiEbfIeixdxZNbsZfQzdijvrevreuZWrspuWsaEyvrevrewPVwPVhyWvrevrevrevrevreuMnvjnakxuMnbExqsmeTLiIkftUndveRzeRzeRzpgeeKafzbiWscvNbsRpgCweYtnLcvNewlaoGxwRcvNaNvekebaBoZbiPlodpdraemboOBiPlwqqwOeonvwmhcbCgOKmSytMbpnxwuPpvOvcHhKblTIhmTqNKvXmoFbjrDxNgqJodwogorctDbONqnFiQRwLXuEleAzfxlhiThiTxzThkNdbcjVJfmKiVAcOlxRakHXmlTxRaxRaxRapgwxRaubpubpuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpubpowdepqaOaaOaaOaaOaxZNvrefjQvrevrehpOmmtmmtamAaBJvreuivvbjwPVsfZvreyevdbqsFzvregEbxOgtbcihAvrevrevresoZvrevrenUhhZohZoaKGhLwoOLeRzngUlYolYolYolYongUlYovPIcbmcvNxjrstLstLhSqstLstLstLstLstLstLaTKaTKaTKaTKaTKvJVaTKaTKfBsweDnYjgyqgyqkgkygpkmOoxGoxGoxGoxGoxGoxGoxGcExbONkTexTjorujwxrHEsUPkrmewOwZCobkpUbfdZxEceRHeTFjkLoGeuwkjmEsWYsrngqmeAPubpubpuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTxdFubpubpubpubpubpvTdbzEjhbwPVuPhxZNvrefXlciFowyvkLhoigWQgWQgWQpBJvreoAjxYWwPVsfZvrenlXwPVbKYvreoCyxOgpgbjVCvremIFrRPiJKiUOvretgeiaurhohZoxVggyQmzucvNirAkOofJZshfcvNilOjPZtixpphdVPstLygMkkNnDtstLiuZunudfsdDGaTKokdpDNsRjwzwikbaJJuQIgkubqWvuAgyqgyqkgkpLlkxvnNjpYTapmsaInbPcxArJukyfnOthABhABjXChABatttiBqgWoaQoctgqSvkVxYovkVmmKutDxRavRAjdyiVgcPMrFBhHAmLbubpubpuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlHtaoealXfKajUtnnIaWSnCxmhFtGLopvbpUhGRnzVgNLfgfvkLbhBqbttcSoXVvKKvrejfyxYWwPVsfZvrenlXwPVuwIvrepaaqKxoUImxKvreiZuuHEsyKucfvreoWvoWvoWvoWvxhNoWvoWvkThkThkThkThkThkThkThilRcvNstLstLstLvnVnNmtflstLfCBdjAsKTegJaTKiDEaitbcyrUnlStuqEpLHjhqximmSlgUOgUOuFenslkViqYSaCwfefknzxJHeFdtwxlTTitJwAZeYcoZsromcHNbfTtHCyduwTAcexcexcexcexcexcexcexaxLccqiVgwTatuNvhydczubpubpuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTffyhCTubpubpubpubpubpqITvlwnlowPVaEzxZNvreuIPwelpuDvkLfMyqNWeJiqNWvUUvremDlfVmwPVfXJvrerwMxSAxSAkBWqKxqKxnhhrBYvreivTqGCoxcjMZvrerOxltuiMudaSqQIjIHltPkThdEBdEBdEBdEBdEBkThwuGqNQstLqFHwxisNBsqFseAstLpkuqWSiKpxBkaTKlDKckpaDYaDYtIccwOaTKeMMbWoeMMjEljVolDXaxZvuIxZNxZNxZNxZNxZNwPLkmZbevcQnkXWbxGcXuqxzrHEsVdtdYhwWsxvqlujQohSEcmJiTlfhucexjyOeGUxiaxxpbeArPujmxubpubpuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTtSDubpubpubpfWMjTOxXQslDlAMqmwcUeooKxZNvrekbRdNRuCNfLpfueaCDcIZaCDsWHvrenLnnQrwPVlYMvrelmbdBIiQlaLBjceuiBpYqxOguxmnVBtTclxQesotCfjUvqPxqPxmmxsMfwxYixKkThdEBdEBdEBdEBdEBkThdrKibwfuXetAvPOpqEeVOknPstLfCBoamsKTpbzaTKbBpkcSlgylgyaPvmYRaTKbXnidDbXncoPpsdcwuuBBqNKxtXtRIotohvZsKHebGgSCeNkikgpOmcjpcjpeNkeNkvRdtdYqmGtDwqlucyVjXEjXEjXEfjhcexdfdsEUxRamCDxByxByanQubpubpbGCtHFrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTyadubpubpubpubpwFhxZNxZNxZNxZNxZNxZNxZNxZNvresdIxYWuCNwgOizWqNWjAFqNWplbvredyswelwPViLMvrelMWwPVqtUvreqWDxZkiUCsesvreamRwYZkgXeEXigstpbqPxbyrqPxgHEoXKpITkThdEBdEBdEBdEBdEBkThaxOcTRstLdjNiXpxIGmhVircstLdoJpjFiKppBLaTKlTxikbrNUtktieJnUqaTKiUfgVbhyAcoPxuwgdNpJyaCMgRjoIhuNGpnDvbifhheDMeNkpNpjUZkgIxjfmdpeNknChtdYhoJoSEqlueYomBbsDTkKCxrZcexipoooZxRakoEgSptBFnZWubpubpnxJhGMoAyrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwduwdrWDwMFdKBdKBpxVdKBdKBdKBvregWjxYWidHusvdgcohztLpmZXcNAvretepbBTcAJdoPvreuBfuHHtnrvrexFyxOgmTigSmvresVhdLavNwpGDwOzsezqPxqPxcBMcRXoXKmMIkThdEBdEBdEBdEBdEBkThaxOvUustLxjEjKdwizepsvjJbDCyeMrSxmjYmwiaTKhPcikbdGCwDSieJccNaTKvutpUWsatcoPiADfqhaTIiADxZNoVSediijxvbiopFlxgeNkeDJghdmMmtFiuxveNkxVOvYPiMshBomjZsmrjuuwtAjmulezcexiYykgbhZpubpubpubpubpubpubpiiuuYwhGMoSZrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwduwduwdrWDdKBdKBqXRpDzqXRdKBdKBvreoPJcwYvsXvkLvkLfOriQpsQkvkLvkLpelltpwPVqRovrevresfOvrevrevresdokMAvrevrevkLrqsecAmNSvrerBLxsBnUwqAYlWKkLYllakThdEBdEBdEBdEBdEBkThwuGvUustLfhXfILpkjwfwrhJstLdEakAiaSgtuBaTKoxhfYwusGwXccDAlUzaTKePsdYWxPFcoPnlWgdNnuEoaHxZNybQrhisyxvbieCecWteNkaYHgEmczQxHIiVeeNklGGwtPiVtmpgcexgrDhJdsParkbvwIcexhaWmCshZpxRaubpvIdcMftPOmmHisZqrYuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrlkolkouwduwduwdrWDdKBdKBrhHrhHhJMdKBeQEvrebPmhdbeXbvkLwvkqPArmBobqmoMlPGopRaVslOddaJivLhiVeMvbYlsrXwYjqOzesiriBtgKkdyvkRtPKoKBvrevretDUvresnPvHYuYBpZPuZzkThxqhxqhxqhkThkThptDalJstLstLstLstLajLstLstLstLstLstLstLaTKaTKaTKaTKaTKaTKaTKaTKcoPcoPcoPcoPgvDgdNnuEcgDtTpxZNxZNxZNxZNsfHsfHeNkeNkmLQeNkdoueNkeNkxZNmbgmBfxZNcexcexcexpskpskcexcexwnXtNvaOxxRajddsNPwigkoWycrtfyqrYuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTeMLrtTrtTrtTrtTrtTlkolkolkouwduwduwdrWDdKBdKBnxNiBOhDEdKBeQEvVudPOnWjjzeemoiPserNarGvZQfdFfdFfdFnHZngVcUnpamcAOnEZfdFadIhMXfdFqiFcAOprJstdnSVlLrmPIveYnHJnFpvYchRZbMAurEaGQqZRcbRoHVgTBxSFhKevEXikBqtYfJinKomMTncQsdEhznnsBfizlkBdpTkgswsSkgskgsayufiziwzgPgwsSngEcHZaGjpEwfnvqdaozlfnvsYqbNJucYtopfIJnSYveVxQZmCspnosPunSYccOsbLbXJiICclltajbNJhFuhOLiFxmJjlMPiAjvasquVdCAlMupjilRmwiglRmvbUgUXoJbuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwdkkOsEPrWDdKBdKBfmTlfgiNwnBWwEUaSGhXExnLpDKreNqarsSClWcqnSwLdpAwpAwpAwpPrfRKpkliTzpAweelswnykegANtqeuaMsEsnunbrGcLEfuPqwTbvCyhroTBpshuHdeqgxFTwHPjUpfmmlFAoUSmACryRfrKtjiiOtmDgkywkywdNskywrjbiOtpTAoJAbEnmCUxLqqikqIaaADqIasWcuDKgGxawWmsexTlxoaeiOuMFsuyxeOwUqxTlvcAvcAvcAsXIrBpwqAawPvcAvcAvcAhtWvcAakdaSjcxvsHivcArjgfjltoVbFRtDxmJqkzxaCbxRaqLtvlLrVeczDvbUnPXoJbuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwdsEPgHLrWDdKBdKBdOkiNgxCYdKBeQEuOckOzcAdvkLvkLqZncYqrhkvrevrejalbziapQvrevrevrerEGiHUvkLlxdvkLvkLrVBqbGvrevrepDMfHSvrevresDkpXFvreeLzwhRdypgRgqZjkgGaoXaIHdhlbqOdIPkuyeOEaDalKSnmbnmbnmbnmbdaExoZpRvfVMxXyevHhbbwOobFTxoZwWruZqsMwthxtAWvsBvBwwiblATaZXuBbrUlnlcmfxwpkaZXaZXhlcvaJvhKpsOssTiZZfQkxIlmcDsdrgJEaOtftFaZXaZXhlcsbYlGJmYPvSRbbIoYevaHsEDiuuxCsiuuwDabXWoJbuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTkkrlkolkouwduwduwdrWDdKBdKBdOHdOHiBIdKBeQEvrehGUiepvkLdKQtHWjHhdCOeVajJYpuCpbHpbHaulvreawbyhaaFWjsHusUwvTvkLeYDgWUvrejVEpEhpiAlhYgaJhCvdiTpNRaELpAXrnQcrExRaxRauQtuQtuQttTexRaxRayhDalJalJkYsdPtoWehEDalJxZNxZNxszxZNxZNslmslmslmslmxZNsVBgzFuYLsVBqgoqgolGOqgoibQgiSdIpsxFbBLdIpfIjfIjnbGkdAfIjfIjfIjfIjxZNjLBjLBqKLxZNnOVnOVnOVnOViVZoJwnOVnOVqwkiiZgCzxRalFTowxpGEwigiFFauVoJbuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwduwduwdrWDdKBdKBmsIpDzpQrdKBdKBvrepKxuCNvkLjVcoEUhfOaMIuWOvBjtDupLypLyiNbvrebKKqHVaoqxnJtVjfLBfNbbEPsRcnIxlFanNlffFnghswyuCNcjlvretZcedhmtJdNYxRartTrpEsGvvGvlGbfNaxRafEDppxxZNxZNxZNxZNxZNxZNxZNoTRwPVjfoxZNgVlgVlgVlgVlxZNouJduBiNNsyiqgotfsjIQoQniandyTwGZvbhatjnSAtiAgnLhfHhbagIxfxVkrumBzstIjPxrXwsyuvXbnOVflulEekIzsYgvrivNenOVkKsgndhZpxRaubpumIllTmeOdHWisZoJbuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkouwduwdrWDdKBdKBdKBpxVdKBdKBdKBvreqoEuCNvkLvkLvkLvkLvkLvredUneKzeDofCWsdyvrepxYxBykAokKTwjlxxboQNqWimqcvredxopuVxRavoapYKjTwqeidJAdGThhlnKnvfQxRartTrtTrtTrtTaQbvQWxRafEDleWxZNbQmpjAaYExZNxZNeZykOFvbjaHVxZNbPDgAJjXNclwxZNkkxkyzleExDAqgokJOaWuwjkdBGqYUcvVqVfvJQbiGdghdCxegWnfJsGZniblWOmBzrtTpiKiTQtiKhVSnOVhPFxPGcbLgKNkytkxGnOVleGhZphZpubpubpubpubpubpubpiiuuYwsZTjVertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTyadlkolkolkolkouwdrWDdKBdKBdKBdKBdKBdKBdKBsyJnBpfwEvkLwdskJYwaRsdGvreafQwgnmPmoCIfpovrexdCaFEaFEaexulWpNmvreqsCjvivrevrevrevretxtuEkkFBaRBeDbxIQgLpmhLpRhxRartTrtTrtTxEMgaixLQxRafEDmlsxZNbQmbQmbQmdfIxZNhDnnpLxYWeqXxZNgYNmYXhcPpZixZNyeAwigleErtTqgoqMblPVbSEldQxyqvSgwWkbOtrIcaRvcGgcRTqjcuyIaYJmsnmBzrtTdiGiOyhCbhSxnOVrRqohEpjjaKehxUarQnOVdWFnZiaBAjvPxpUmFlwopwopwopnxJsZTpuortTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTtSDlkolkolkovjaunnunnunnunnunnvrevrevrevremslkRWvkLvkLsWJbWriynvremOleKztdxttamdEvrevkLoEHoEHvkLdAXvkLvkLwUTnbWpWmalIgWAvrekSslzkejovrevrevrevredQlvrexRaxRaxRaxRaxRalGAxRaxRafEDkDzxZNemCdIunvlxYweXvubHudykiDvSwxZNoawiGmssmquexZNijvpuLxWzcfLqgoqfKrevaJDsgvgiSpCGksItudwPparbpqKwfWbihmBzmBzmBzmBzjRaaYyufoikCrQAnOVbmcqpwnqCiQhcfkrtRnOVoyPaOjrYXrYXrYXrYXwopwopwopmQntHFrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTixAtOtlkoagRylxunniGidTDjVHqNbvkLbNlkQxuBSdEolNkgpwvkLmKppgWuXbvrevqgagIkvWrFLshavresOJdiNhHYmZnrrleekvkLpGToJtlCknNlkWovreuwYwigxcZraunoHsFfrRKhGeaaRxZNlcifwawlwljLiwEfVHxRafEDmlsxZNbQmvdVcZodWyrbzkAZvGmkiDuwhxZNtfadvxwWmvaObnQbnQbnQbnQbnQbnQbnQbnQdNzdNzdNzdNzhHvswDdNzfIjmBzvHaiCFmBzkzHgJHylyxRakidxRapIdxRanOVnOVodHbZpnOVnOVnOVnOVwZwiYajVTwopwopwopwopwopwopnxJtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTtGgvjapwmpTKunniWDvdjpxsefDmJQdBSwvMqQxoZTsaruknvkLvkLegtvkLvreasthbGxByuIEpHGvrelIkcPIbKplUioqrlPpvkLldYwkMvreoransAnCPwigfydbRQoULnSHgapgOvwvOpdtxZNlcifwakLegAutQHaPSxRafEDvhZxZNbQmbQmbQmfYIxZNdTAbniomruaKtGHnEuybVsKDvaOsIWpKJgTTqchnRfuJRoGCdfKhfcmQlmbytEifIgxZdsDovlxcBfgETsDMmYDxROnjHfxqeKvsDMajlhTmnqOthPuPbjSRuWifTVjLAdNzqqkvhvwtwlSbsLTsQznansQzxaawMJnkVtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkoeDXqOcjKJmDLqmRmjfcYEfmMejBulyiQXvezkYuonGvkLbonnTDwIyvrednxlfmbPCvVNoOOvrebOhbKTrNSbHacPYcmavkLbWLdwzvrevrebwrevEjpDkCZmEXwewvIjwwoagawUotMDxZNlciopXgPHfhsxOgdjtxRafEDbHlxZNpePeXPbcKxZNxZNeZytYXsTOqKJxZNaQisDnxhunjAlgohXUeJTtcopUGiTHwsuxLLaClcHRwLCsIljjVgaAgaAhnxibvizlcFhjxIjXblKvsIlsIlsIlshVoaxuCOuwGydRhysvtljWbmXfdNzlzGkFLrYXrYXiMhqPzmgLbkQnDBuYwuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkounnunnxsNdTWxcJvkLpvibWzbWzrPQxESjZZsuteVGxQypHNvrejfhvMevrevrevrevrevkLvkLvkLvkLvPwvkLvkLmVanbWpWmaUygWAvrejDrxBbhoQwewsxZaGsoCZoCapBYxZNlciopXmfqjsqxOgnxxxRafWbmwjxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNwXZapajPdvaOdxdqMTbcevDKlpgeKweqcdfKrYJlCbrcNgNWgNWgNWgNWgNWgNWgNWgNWgNWxUFgNWgNWgNWgNWgNWntZhJTxRaxRaxRaxRaxRaxRaxZNybXlVJvDOjVTbwosAGwopwopwoplNnuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEraXiPBucsucscLpcLpilebYUvkLqIQwaFbMlmucpZqeqdvkLbTNkZrmLamFqwassAMkUFeMWeoJqinevyeoJsSDjvLcYHpdIqjubISfgGydVfFfmOcvrehempkyjLrwewomWeYSylFqZfogAxZNlciopXidplPderRfVHxRafEDpQomwjjyXbgnvAVpWRoADuDobtUfUKkznvVgvVgcJLslmslmerttIKrDPdHvrDPkOivlsdfKylyaYXdVDgNWokgvUQbcIuoZipubcIvUQbcIpfVsNTnClxEkohygNWntZhJTxRaxOguxecLiedDdsgxZNepedWFjVTjVTeKYxVRfADwopwopwoptngtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTxPMtXexsflkolkounnunnunnvrevrevrevrevreoVYvrevretsnhpFbpKvkLdIXmnPxzFiuBvkLnrOrCEvkLuQxmnPxzFjwlvkLdLDjrzvresFunUJecJwigwigsIBwewqwzuiEspOaPnotSxZNxRaxRacXUxRaxRaxRaxRafEDbrWqMabrWbrWbrWbrWbrWbrWbrWbrWbrWeZBfMiftIenWbnQfJVcdzvqclFjsbsijPkMudfKxQEcfQwJAgNWwNFgMCuIcjPhbyifGIfGIuIcrgNoLFxRfqbyvNMgNWeMYhJTxRamcUpfRnahrSlqfBxZNepeePanIKhLxmeCrYXrobwopwopwopoygtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZtXetXelkolkolkorWDrWDxZNxZNxZNxZNjaOxZNvrevrevrevrevreuTyuTyuTywHLvkLqPauNxvkLsuYfkifkifkivkLbGvnlqvrevrevrevrevszwigpfevvXvkLvkLvkLvCVvkLxZNjIvwtDqHRsDdmwjbZRexAxHccaumwjgcKbrWehwuRgfYdfYdjNquRgnMXqpQoiWftgtBPbnQbLDkJAscfqWymxvakZfbMdfKvRgaJvddIgNWwNFkWGgKzuGSqegaIUaIUeCZrXrdNNfcTcbdnIugNWntZuIeonWvCujDiaEvtAzrEcxZNlzGfDQjVTrYXrYXrYXrYXwopwopwopuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTatxtXetXetXelkolkolkolkolkolkolkofVhlkolkolkolkolkovreeyDgCedzllJbvkLqPahsmvkLjfYbAutBdrdfvkLhUEpqNntLcKEdeGvrentgwigdeIcbriGgvkLaAUcdnvZBxZNeKNnULnULllOmwjmwjfWbmwjmwjmwjmwjcKUmwjmwjmwjmwjmwjmwjmwjvvsmwjmwjhBvbnQcKHpmVwIzcLVwIzmBpcKHdfKaCpbKibmBkjwncMfZLfZLiNogbCgbCgbCgbCvzOhnBfEXofJqOGgNWwFBfFsxRaxdkobZdHiuzqfCDxZNaFMfDQjVTqhCqhClUyoSIwopwopuMtuYwtnmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdatxtXetXelkolkolkolkolkofdXmlifdXkkrqYnoFUoFUpEXhuKmUpcvXoybvkLpufbVFvkLrvkpcQqDlixuvkLdWflUKdiZnNlpFsvreebFfydsIBwiguimvkLsGWdznvZBxZNmwjmwjkHKmwjmwjhBsaVQuqLknImwjmGVhbSlGYfnokaBydopvDiqLrDjvsOuqymwjhBvbnQbnQbnQbnQbnQbnQbnQbnQbnQiZsgTNjWwgNWqdgbyiaIUaIUaIUaIUaIUsDxtzUlxZbGOlUajiUgNWdNzaIixRaiyOpWPqvIkTSbpYxZNeDqwXBgHPgHPgHPgHPgHPgHPwopuYwuYwhGMoSZtXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxtXetXetXetXetXetXetXexPMeLHrZLrtTlkolkovrertVnPNlYkxrnvkLtPqvUvvkLvitvWtnEzpMWvkLhZLomFvreoPBuIAwOwwigafErAKfSvsrxvkLxvrrqXsIgxZNbrWbrWbrWbrWbrWbrWbrWbrWbrWmwjiTpmPtiCKhuxhyohuxcZOmyhftPfMUjtxeCQrWejVTpvlvNtgHPvKgqfsoUpoNiiGytVmuNncdGgNWwNFkWGaIUaIUaIUaIUaIUaIUjMMxKwvsoqCVxAHgNWljntAKxZNxZNxZNxZNxZNxZNxZNjVTlqajSWjSWjSWjSWeSYeSYeSYiuWdwgnhvnhvtXetXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdgSdgSdgSdrtTgSdrtTrtTrtTlkovrevrevrevrevrevrevrevrevrevrevrevrevrevreqDNlwKvrevrevrevrevrevkLwsRvkLvkLvkLvkLxrbmqsxZNtPHxlsbrWpGIfwrrKHbrWbrWdaCmwjtAAgEFnhIgYucEwtDmnwEgYufNBvGRxDUeCQkaLxLyecLgkygHPnsdiyAmedbvKxZNtMUhdNwJAgNWdjHqegfyNfyNfyNfyNfyNeCZhZKdpqemiwypgNWgNWaGhmEjdNzevBkbMhQAnGibnznGinGinzvjSWgPRaqJbZUeSYkDSqwNrzlvLGiPpcFVnhviAmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkolkolkolkolkolkolkolkolkolkolkolkolkoqaXubpubpubpubpubpkPkemOewhemYvkLhsqjFHeaNubpubpeCQeCQeCQeCQkHrkHrbrWbrWowYeCQeCQulweCQeCQeCQvTneCQeCQeCQlyweCQeCQkaLecLsCBfuhgHPmITuoKlbFuYUxZNfZMmjBxpMgNWcZctSTkcngPJfIGseFtSTseFkQAnPtpfqkafgNWbcLbcLaqTdNzqBcgcbtEYrYXkIToIZlzClzCjSWnHRaqJhlMeSYnUpmsZvvbdaMkhCjxpdzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxInxItFAtFAtFAtFAtFAtFAtFAtFAiWGtFAtFAtFAbtcbtckPkmJwsBQjlpvkLleBubpvYulkoeCQeCQeCQeCQeCQeCQsvcbrWbrWuDoeCQxyLvQbxyLeCQxyLwMnxyLeCQxyLrIQxyLeCQwQsecLsCBfGtgHPgHPgHPgHPgHPgHPdNzdaadNzqSxqSxqSxqSxqSxqSxqSxqSxqSxsIvqSxqSxqSxqSxdNzdNzdNzdNzlnurYXtLcfBgejOjSWjSWjSWjSWsjUqjvsjUsbXivdivdvCKbQalJDlEZdzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxItFAtFAeVUwImmqxvFEsVewtykNruWavgOtyLugGbtcjIakPkkPkxZxkPkkPklkolkowPooFUgOAuYwoygeCQeCQeCQtZZnVhcSzbtUeCQtFAtIVtFAeCQtFAikHtFAeCQtFAgKRtFAeCQjivihXihXihXihXihXihXihXvxWouqjmNkPcrMxlrYcNoxiVtkYfnsjVTbXcxDkdtnrYXgHPxpUxaGpVDlfHlUWgHPrYXlnukfmmacjVTiThjSWjSWjSWqTmralxEBbDptDfhVEtIapZTlCRbEVbhidzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxIvgOvpppsDfuHgYkhvRwPejqvonYuBjvgOgoMugGbtcjIalkolkoeGRlkolkolkouYwuYweQCpZzePHuYwuYweCQeCQeCQeCQeCQeCQeCQtFAndGtFAeCQtFAndGtFAeCQtFAndGtFAeCQwopwopwopwopwopwopwopwopwoprXnllniWFpeHbsojJAjJArhyjmNnwjjmNjmNjmNjmNgPDjmNjmNjmNjmNjmNdOljmNvhownzjiAjVTptrhimwMBirSmHuwJEalArwVmflcTPrxOhXGtCLhTfnwunhverprtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxItFArkyrEhxIpfWStUxfcjbqslobrKuvgOqOShBnetxybUqplcNPnotlkolkotnguYwuYweQCpZzePHuYwuYwuYweCQeCQeCQeCQeCQeCQtFAuVitFAeCQtFAuVitFAeCQtFAuVitFAeCQwopwopwopwopwopwopwopeapwopwopsTLecLecLszJecLecLeFZeVIjVTihMrYXxrwmPDjVTqjQsXgmmmiixocGjVTgBqjVTjVTjVTjVTjSWjSWjSWjSWugbaRpiSekcfdxalUImoztImlkCegIbhidzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxIvgOiDbsKNpmXjHXmvoqBPpQzmUfpmFtFAvTpkEebtcjIalkoulClkolkolkobYuwZRwZRwZRpZzuYwuYwuYwuYwuYwabkuYwuYwuYweCQtFAokxtFAeCQtFAlwYtFAeCQtFAxictFAeCQtXetSDuYwwopwopwopwopwopwopwopnsmfwhkLdigzppnfwhfwhltywopnPArYXtVgcHKjVTygQsXgrHAjoowyxjVTwzQjVTrtagPdlUyjVTdqaxsijSWjSWexkdxNgjcjSWpTsmUMexkjSWhTflEZdzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxItFAtFAuaveJraksvrdqBPpQzkNJgPViMMhPxdeMbtcjIalkoiMalkolkotXetXetXetXenmNpZzeFHwZRwZRwZRwZRwZRwZRwZRbYueCQcWdcWdcWdhgZugdugdugdhgZvBMvBMvBMeCQtXefOPuYwuYwuYwabkuYwuYwwopwopwopqoqglUglUbJCcmkrYWwopwopwopwopwopwopwopwopwopwopwopwopwopwzQsSNwzQwzQwzQjVTfkJnpAnhvnhvhKAuoHgZMjSWvPdsXhrhVjSWhVFbhidzDrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTuYwuphnxInxItFAtFAtFAtFAtFAtFAtFAtFAtFAtFAtFAtFAbtcbtclkojsVlkotXetXerZLgSdgSdgSdrtTgSdgSdgSdgSdgSdgSdgSdrpEtXetXetXetXetXetXetXetXetXetXetXetXetXetXetXetSDuYwuYwuYwuYwuYwuYwwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwopwoplUyjVTxnfsCBrYXeJRwzQwzQnhvnhvbjRuoHiNWjSWhYXsXhwFanhvpHqpvsnhviAmrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkotXevlWrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdatxtSDuYwuYwuYwuYwuYwuYwuYwwopwopwopwopwopwopwopwopwopuYwuYwuYwuYwabkuYwuYwuYwuYwuYwwopwopwopwopwopwopwopwopwopwopnhvnhvnhvnhvnhvnhvnhvnhvnhvnhvvGcujxfRZtXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkolkotXetXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwabkuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwabkuYwuYwuYwuYwuYwuYwuYwnhvnhvnhvnhvnhvnhvnhvnhvnhvvclnqKtXegSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlkolkolkolkofdXlkolkolkolkolkofdXlkolkolkolkotXetXetXevlWgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwabksZTjVetXetXetXetXexsftXetXegSdrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtXexsftXetXetXetXetXetXetXetXetXetXexsftXetXevlWgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEfOPuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwtnmrZLgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrpEtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwsZTwZRwZRwZRpuorZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwtnmvlWgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtSDuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwsZTwZRwZRwZRnYSwZRwZRwZRdnBwZRwZRwZRwZRwZRtOtuYwtnmrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEixAdnBwZRwZRwZRtOtuYwuYwuYwuYwuYwuYwsZTwZRwZRwZRdnBwZRwZRwZRorRvlWgSdatxuWBvlWgSdatxuWBvlWgSdgSdgSdatxixAwZRpuorZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSduWBgSdgSdlCZtGgwZRwZRwZRwZRwZRwZRpuovlWgSdatxuWBvlWgSdatxuWBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNgHiwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNnvIwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN +(146,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(147,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(148,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(149,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(150,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(151,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(152,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(153,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +jhc +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(154,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(155,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(156,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(157,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(158,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(159,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(160,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +cUY +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(161,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(162,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(163,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(164,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(165,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(166,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(167,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(168,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(169,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(170,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(171,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(172,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(173,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(174,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(175,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(176,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN "} +(177,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(178,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(179,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(180,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(181,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(182,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(183,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(184,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(185,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(186,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(187,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(188,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(189,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(190,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(191,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(192,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(193,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(194,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(195,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(196,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(197,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(198,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(199,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(200,1,4) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} + (1,1,5) = {" -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArtTidAidAidAidAidAidAidAidAidAidArtTidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEiIeaaIaaIaaIaaIaaIaaIuAJaaIaaIaaIaaIaaIsVSrDDcBUidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArtTidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwwwwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAmrYbVukAqkAqkAqkAqkAqkAqkAqkAqkAqkAqkAqkAqeLGdjgaaIdCkcBUidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArtTidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidArtTidAidAidAidAidAidAidAaThnTraaIaaIaaIaaIuAJaaIaaIaaIdCkcBUrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtThbdbjDuYwuYwvSouYwuYwuYwuYwuYwuYwuYwuYwuYwvSonxJuYwuYwdjgaaIrDDrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTaThiIeaaIaaIaaIuAJaaIaaIaaIrDDcBUidAidAidAidAidAidAidAidAaThiIeaaIaaIaaIaaIuAJaaIaaIaaIaaIuAJmYFuYwuYwuYwuYwuYwuYwuYwuYwdjgrDDcBUrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxcFluYwubpubpubpubpubpubpubpubpubpubpubpubpsLIuYwuYwuYwuYweMBcBUidArtTidAidAidAidAidAidAidAidAidAidAidAidAidAidAidArtTidAidAidAidAidAidAidAidAidAidAidArtTrtTrtTrtTrtTrtTrpEnTrmYFuYwuYwuYwuYwuYwuYwuYwdjgaaIaaIaaIaaIaaIuAJaaIaaIaaIaaImYFuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwdjgdCkrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThcFlubpubpxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNsLIubpubpuYwuYwdjgaaIaaIaaIaaIuAJaaIaaIaaIaaIuAJaaIaaIaaIaaIuAJaaIaaIaaIaaIuAJaaIaaIaaIaaIuAJaaIaaIaaIaaIrDDcBUidAidArtTidAidAaThcFluYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtThbdsuJubpxZNxZNhPNkVDxZNmVboFsxZNbJjbJjbJjxZNjaOubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwdjgaaIaaIaaIuAJaaIaaIaaImYFuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZcFlubpxZNcDCpgbunHvXRfzhaqlxZNodwiJreyObwSjaOxZNxZNubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEdGAubpxZNoqKmkqebsxZNokNbyAoQirYCkIxtBTcRrvtDcQVxZNxZNubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweQCnGUerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQerQePHuYwuYwuYwuYwuYwuYwjVlrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTcFlubpxZNmZDsAsjtYxZNusIsvaxxZrMWdtorMWrMWrMWkWBnuDxZNxZNubpubpuYwvSouYwuYwuYwuYwuYwuYwuYwuYwuYwvSouYwuYwuYwuYwuYwuYwuYwuYwuYwvSouYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweQCeQOoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhiAtePHuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpxZNxZNjfvxZNxZNpjEryqxZNsXywDirdUxzhhOUggquzLjwpxZNubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpuYwuYwuYwuYwuYwuYweQCxzjsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdsEdePHuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpxZNgdmwJwrgKxZNpjEryqxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpvSouYweQCxzjboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEboEuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubphlTdJOxZNuYAtWxeEixZNpjEryqkpOoFsoFskguqsOxZNgLbwmmwmmsczdeqhFVwRejnYwmmanFoFsuoJwRecBUidArlUeLHubphNZjRJoIGrOWdNrkyedYkwmmjRJoFsjFFubpaMCsczubpubpubpubpubpubpuYweQCxzjiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObePHuYwuYwuYwuYwuYwrGbjtLrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAidAidAidAidArtTrtTrtTubpubpubpubpubpubppHLsLVnrIfkcxTvacfuLixZNusIvTYtwvtwvtwvtwvtwvjcMtwvsKJtwvtwvtwvtwvtwvtwvsKJtwvtZwtwvtwvtwvtwvsKJtwvksptwvsKJtwvtwvtwvpvVtwvtwvtwvsKJtwvjcMtwvtaExklrAZuvYvxIubpubpubpubpnMCoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhiAtePHuYwrGbkHzkHzkHzuGfgYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEnTraaIaaIaaIrDDrtTrtTubpubpubpubpubpubpubpcBDfuwnHgxZNiRrjcgqHZxZNqMXeymeymeymlTEqiTybsxZNxZNxZNxZNdqvxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNnXHrNNqYZxRaxRaxRaxRaxRahmNmKbtdnrMFiydjjpvQohzvxSmxofngmqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIePHuYweMBtXetXetXegYErtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAaThnTrmYFuYwvSouYweKOeKOeKOubpxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxRavkIxRaxZNxZNxRaxRaxRanaCxRaxRaxZNmxDhxYiPZbfqpkChxYmAzxRarKysSOkjosZsfmHtqMfeaxiWrLaxZNgIRjPsiIAxZNxWyrNNtzMxRaaNnlEAsxUxRamrDryquXRvBYcEagcHnojubpubpubpjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevuYwuYwdjgrDDtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThiIeaaImYFuYwuYweKOeKOeKOeKOeKOxZNxZNkKIiQzdWAtwUjcnmrhxZNfACmZVcacqKwdZfnPxxZNotefsbmPXcBwdpXgsvxZNjhFvizwYJxBytzLvizmFvxRajTJooqdOhvWvkCExjeuJhxBylPzxZNoTPbkNoqfxZNxRacnhxRaxRaoyHiSyuJYxRapIYryqxRaxRaxRaxRaubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBtXetXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTaThnTrmYFuYwuYwuYwiYpeKOxAExAExAExAExZNkgjjSFejLqhgowsxHYiPwxZNtTyaDTnjGtCOigNjhYxZNbdjwuIsPMbinxjdfFdxZNabWdXceyFxBycfsdXcxTCxRafIcpveybqxOpvoohITayBxByxBydqisxMfYztPAxZNmzeaQuaqrxRaoTriSysxUxRaxWyryqwrDoFsjFFwmmubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBeLHtXerZLrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTidAaThnTrmYFuYwvSouYwiYpiYpxAExAEhqndaVdqFxZNxSKjSFbLRbMDoymbNBuwrxZNwtgmSMbgptJzxBylyYxZNepBbvGbHSyeNxjdknrxZNtondFQmpSxBybPBnOibkTxRakWAvRYmxgsulpOSwdGwdGwdGwpixZNjitmpKbbVhBdjDqwXbyfiamQuZxmsdoDcxRaxWyvTYtwvtwvtwvtaEubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpubpubpubpubpfneubpubpubpubpubpubpubpuYwuYwuYwuYwuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEiIeaaImYFuYwuYwiYpiYpiYpiYpxAEcMIoXSobTouoxZNnwtbntrZrgNMaIOmuFwGhoAkfZbaRauehcSpqgCuaSoAkwGhdOAwGhiXMxjdnFMxZNwkaozhhxDjSgiKuiyCsBQknSxByiEBrLRqnAqVGvrGsImgxAuNkxZNoNjgnOqAuxZNwdLoorusDxRafitqcJfvUxRaeqqshEmluybsoAZryqubpubptnguYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpuYwuYwuYwuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFluYwdYAleMiYpiYpiYpiYpiYpxAExWtruzmvCsItxZNgVkylFoPZcxdcQDwIYybbxZNwhFnNhmttqSZeJLqqCxZNkLllKZqjycYQfqWbAXxZNaqCqSZuoGcuIpVUuPYqPpxRaeCjnNrlrChEtaTpoKTmbVtYJoMxxZNbaFxZSyeqxZNdbBvRYfBOxRagHIvYGjsbxRaxRaxRaxRaxRadSCryqubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubphSubQmbQmbQmbQmbQmiELbQmksubQmbQmbQmhSuubpubpubpuYwuYwuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFluYwwbciYpiYpiYpiYpiYpiYpxtuxtuxAExAEcsCxZNxZNvKYbQnxZNhXoxZNxgZxZNxZNxZNxZNqfWxZNxZNxZNxRaxRaxRagrRxRaxRaxZNxZNrxIwXwxZNbcsvtpxZNuyQxZNjMpxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNxZNjrxkdmtppxRaxRaxRaxRaxRafLKqcNnfrxRauoJryqubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpbQmbQmxDixDixDixDixDixDixDixDixDixDixDibQmbQmubpubpubpuYwuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrpEcFluYwcVIqzLjhJawrkBZqEaiMFirVnigxtupfEjGVghZpVAcbVcbVdBhaohsPEcbVmSArutvZhasIrZvuYfcbVgrYdcKcbVdBhaohuKrbFPwPbjiliPdlyKpgSlauoWTtVNpbHohMkHQiFDxZNrNxrNxrNxrNxrNxxZNwAhcVBbDmxZNwkavRYbrIxRavdIxfChqYuOdujZqekwMVxRauoJryqubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpfWebQmxDimDzmDzmDzmDzmDzmDzmDzmDzmDzmDzmDzxDibQmiELubpubpubpuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUnTrmYFuYwxPvxpgjLfpyrgKXvgFfQJqBknbjxtufqmsVlthixhUthiiahgUjqWVthithirxwiahtsviahbkhrxwthiiahuGAiahthivlOcdtadpxaKomfhaLwjqrBVvRaoGsxRBrBVwjqmLRaiwxZNrNxrNxrNxrNxrNxxZNmUOrhFhjCxZNqNwoorxHixRabxpyiLxAkoRbgsHfLQwgQxRatVpryqubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmbQmxDimDzmDzuhWtKOqKfeIyrAIrWJqKftKOpyumDzmDzxDibQmbQmubpubpuYweMBtXetXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEnTrgMWiYpiYpiYpiYpgHlxaVcpwwRmylSnACkdrxtufNYpYBtXpgpEyblisJdQqdJQqiMisJjQXxgBvZhyblisJjQXisJmPSsrpdDjoxuiLGnXnqfvcrsnbDcOKurHrfnldsvRYfEonwJpnUnwJeJsxZNrNxrNxrNxrNxrNxxZNsMjrVSfKsduEjDqwKCxAjusrooVfpqgDlxjogDlqyWtXWxRaxWyryqubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzmDzhIobCNisqxpTxpTqjUevYxpTkzXdcWlyRmDzmDzxDibQmubpubpuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUcFlcVIqzLnYMmZkePjgvegmHirEylPkeJnACmiLxtuxZNgdDsHEhMOxRaplBxRaxRaxRaivJivJxRaxRaxRaivJivJivJxRapJFxRaxRatMHjuRxZNxZNeAMuCyeAMxZNeIrlSldMKxRakIpkIpkIpxZNrNxrNxrNxrNxrNxxZNrPtbqDoHhxZNrJnvRYeWgxRafJKtLHkGNnqmkGNkGNxRaxRaxRarWRubpubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzuhWcFIqjUwugdTauQFuQFuQFdTagWajfSuMKwSamDzxDidkIcXgykQuYwdjgrDDtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtThbdbjDxPvxpggckxIbpvPpvPmbHwjNhYBsoJwjNbKCnVeooCbLkaOocEBtlvbFmxRabjfxWYxjetRSnzavSExrJtrRtrRtrRkoyxMuxwdxRaiLGxSXxZNeJbfEyhpTfHUmEzaZjvRYdhesYxceFoutxlVxZNrNxrNxrNxrNxrNxxZNnSygZfoEOxZNxSofqRnkGxRajDceDeqSQkZgjeHkLnxRahpRpIYryqgiOubpubpubpubptnguYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzuNOydiuQFuQFuQFuOemwCmeZuQFefMuQFrYgfikxDixDibLBubppjyuYwuYwdjgdCkrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTjEdnviiYpiYpflhmdApSkbEldpIcrmgpguaQgjKgfqeHytyJuRnuRnnrAdaocpaplBcLTxjexRaqLJcJVqDEtrRiRbtrRbkztrRdkgrbMuAjeECkQgxZNiSZfwJvZTjFKriapdErlHeNRsuljsrfualvyxZNxZNxjexjexjexZNxZNxZNxZNxZNxZNuQtrEQuQtxRaxRaxRaxRaxRaxRaxRaxRaanFuoJryqpDvskTubpubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpswHxDimDzoumydiuQFeIuvdCmaWxkvumUmaWgceuQFyhZxDixDixDihyuubppjyubpuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEnTrclFqzLetwugMcjzdeTaojoXQkvcxnMpLdbWTvZKixUsUAxByxByjbOxByoFBxRanISxjekQXsoDvcTqDExjegJGjzRiuvuzkvprtJsuAjiLGnonxZNlOolCmhbThTtmEzkejpOEtgMhEIpbHpbHhAObeNuIveeahtBeealFibeNtVNclDmktvFAhAOxJOmxgmJZrdNxRaaMCsczjRJoFsbBSupmuxrryqsXSfcQubpuNUxcwubpjevuYwjevjevjevjevjevjevjevjevjevjevuYwjevpXlubpkhPxDimDzcXDydiuQFwcNwBluQFuQFuQFuQFjHiuQFtUjdLElDRlvnmJEtfOpjyubpuYwuYweMBrZLrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFlxbEeKrtqWedwvApaojlJJaojtqEhnwvjEbWTgkgxtuipUgnXqiWimxvRapQhmxSiGZuzkhDfqRSabqeSRtrRtrRtrRtrRtrRxMubuYxRavaQlzSffwwzHxOgjgLhtxxZNeYhtBzxNHuRnkTQkTQuRnaVquRnnTlwjqkTQuRnaVquRnkTQfKtuRnhdIpDQtQuwjquRntkOtkXtkXtkXtkXdbGrDmfIrbRbrvBoaFxkkuBEqyLxGXiociociociociociociociociociociociociociocvyzuetadUjZWlnNfIkloivrDrNyuTPpBmqfMabyuQFtahvrDbUMwPrwPKabPrIHsjZoOKfcbhVKhVKmaertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtowoBCuTEsijtSVdhcscSaojeAotSKxnMpeFbWTeWNnVenRDxByxByjbOxByoBoxRawaKxjeeNZbzmbWYqDExjedAQkdqsluuzkvpraHEuAjvXnxSXxZNeqVxNvdNcjPSmEzkbmpOEklqnGlfJMfJMsoRkaXbgwiCfurHmQLgjPbeNqUphAJqBarfnmQLgjPeoQurHnchxRaummgenkyLkyLmluiVKigUuKqlemgczubpcOnpxIubpehWuYwehWehWehWehWehWehWehWehWehWehWuYwehWfneubpkhPxDimDzcXDlMQuQFbMVpnwuQFuQFuQFuQFydiuQFoKGkNwxDisIKdxSlsLubpubpuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTbZFutPiYpiYpqZFlbYsNgklKqZggtqkJwygtlbgqMJgHxkXzuRnuRneKbjBtqieplBtJsulExRaiRFpZMqDEtrRdpptrRkSGtrRwPHbopuAjbrBvAHxZNmpwfwJxpxjFKriaotEbrApMNwSKtmykhQkbexRaxRaoxCuQtuQtuQtxRaxZNxZNxZNxZNxZNuQtrEQuQtxZNxZNxZNxZNxZNxZNxZNxWyigUvFOrsEsWZubpubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpswHxDimDzoumvnouQFkDnsfUpBEorYaCXpBEdYGuQFqLixDixDixDixYdubpubpubpuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtThbdsuJjBpoCvtnyhAtvmyvmybqAoJxhJkjpToJxnCNixUfIZidkdvaatleHtjyGxRagIlrLGxjeghYomGqufrVatrRtrRtrRykDxMubaIxRavXnxSXxZNqhUvMBssImYImEzggfvRYygClCnkwGvMlrpYxRamwekQlrtTrtTrtTrtTxZNlMidNTbtBxZNgaHbJblWDxZNaXealEviarGXwfoxZNxWyigUjWgedbubpubpubpubptnguYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzuNOvnouQFuQFuQFtwkhkbjWOuQFikeuQFneLtWjxDixDinnYubpubpuYwuYwrGbjtLrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZcFlcVIuTEjYJnbrtwVhhWoTMliYkuVxTPnACbUQxtuxZNgdDsHEhMOxRaplBxRaxRaxRaivJivJxRaxRaxRaivJivJivJxRapJFxRaxRaefijuRxZNxZNeAMwNpeAMxZNeIrlSldMKxRakIpkIpkIpxRagGiohwrtTrtTrtTrtTxZNrNKfufxJgxZNqNwodjjarvFHnyPtvmibtxBotsmxZNxRaxMXubpubpubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzqYEsdzqKfpyudTauQFuQFuQFdTaoDzqKfcFIaqcmDzxDibQmubpubpuYwrGbuGftXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtowbPXiYpiYpiYpiYpiudlFgctCgoGiJpnACjhlxtutFOgqWdCWlHsdwTcbVtHcknXeCIcbVdXyrutvZhdwTdXycbVcbVlKiscstkFcHEvXnvecavNuAolFiioIdagtxCtArvRYjLcpbHqRXpbHjSlxRaceIoLdrtTrtTrtTrtTahUlOanpEgUTqXyqopgACeWgxZNsqbpQaqrttCSkqtxZNpIYigUgirubpubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmxDimDzmDzokioqbmWwdktdkthwIqfudktoORisqsCxmDzmDzxDibQmubpubpuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTlCZtowtGduYwjBpoCvqIsibEftorXMfuAndxdJoxtubBadzvayJedAencnjQgUjiahthibHfrxwiahtsviahkAKaOAthiiahvtriahthiqbkcdtpqUxaKkwahvnwjqfEmuRnmbqmZYgRUdTqmnVaiwxRabJmbTJmRrmRrrjSbxlxZNwFQlVTeHAxZNjWrnOQjdCxZNxRaqfsqfsqfsxRaxZNljCigUidBubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpbQmbQmxDimDzmDzqYEpahqjUoyNqZbgWyqjUpahwugmDzmDzxDibQmbQmubpubpuYweMBtXetXertTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFluYwcVIuTEwOgsMWhrroGVuVsgEzvWCjEqbyQxWlxgBccSqfvsrpcKriHcaXKdaAhsZwKOvZhoxamzZtAUyblrNlrNlrNliHcpbPjQXlAkkuKtfPfPHgtecjnqUpnwJgjPhFUrLbqBadzexRatAeppCiyvchErbnnqMxZNoMYaAimlrxZNgQIvRYiWXxZNrdniRRaLcqKsiqjxZNuoJigUpDvubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpsjybQmxDimDzmDzmDzmDzmDzmDzmDzmDzmDzmDzmDzxDibQmhrBubpubpubprGbjtLtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFluYwtdhiYpiYpkkCiYpiYpiYpjtDxtujEqaqIaqIaqIhIsaqIqDOaqIxRaxRajpbxRaxRasPtsPtmBFtpisPtnPgnPgnPgsPtsPtsPtsPtwjKxZNxZNxZNspVwFOdKhwjBaeWxRaxRaxRaxRaxRarBUxRaxRaxRaxRaxZNxZNxZNxZNxZNjlUnxPxAjgdclnLrJedVHxjdojMxZNuoJigUpDvubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpbQmbQmxDixDixDixDixDixDixDixDixDixDixDibQmbQmubpubpubpuYweMBtXetXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFluYwgWFleMiYpiYpiYpiYpiYpjZrhcGhcGaqIgRbsRShfGfYVxIWaqIxDJegZcGvpDvanFsPtqOHhycfdQlQEtfGtfGtfGhqHhZfojZndiwjKbqvgUCxZNdztfYAfYAfYAfYAxndxRanelupTxRaboaxVTtxvvoQcVFxZNcMbrhCjgaxZNqNwvRYvsNxZNgYLxgEgipjWqxbmxZNxUdigUokFubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubphSubQmbQmbQmbQmbQmhrBbQmsONbQmbQmbQmhSuubpubpubpuYwuYweMBtXetXetXerZLrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEhgLkHztGduYwuYwuYwydZhEwimRnTamygdPgpUiuXXqaxqaxuuVfnXaqIoFswmmcGvaTEkzmsPtuqCnFkeGCjdDbvpbvpbvpwRfhqHuGmrQfwjKecScFsxZNnQbvVvudFcNcmFjxZNxZNbuNwpUjULubBoafcSCfEeaJivvpxRcuehnflxQmjbJpoutymxZNxZNxZNxZNxZNxZNxZNqRLigUpDvubpubptnguYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpuYwuYwuYwdjgdCktXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdlCZtowtGduYwuYwiYpiYpiYpiYpiYpiYpaqInsDgVjwWzgVjqLxwYrdXpdXpwJpqGskhdsPtnTudWSpVKguHtzFdiniFejBiiHtvyopYjwjKqjXwgsiokvaaiykeNzaCLgbMgFWxZNxRaxRaxRanfLoTbtwJeAauhYxZNiwZvLrvLrxZNxZNjsPxZNxZNgwtgprxZNxDJyfOqskgfeigUbiZubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwubpubpubpubpubpubpubpfneubpubpubpubpubpubpubpuYwuYwuYwuYwuYweMBtXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZtowtGduYwabkiYpiYpiYpiYpiYpaqItRBaRRvbQkXIscOaqIjkykyLeXKvIqpDvsPtjaqtBSqijwytoWOsxboWOkeSnZIfovdGiwjKvpeqXjwhDfBMdJswPVwPVvmbpmRxZNvWWiPWxPUwuRdgNloYoaAvwnxZNvGXvGXvGXxZNwSGbcVaIlaTfpunhtVxZNmBcoiOoIooIoviobiZubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBeLHtXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTlCZhgLkHztGduYwuYwiYpiYpiYpaqIaqIaqIaqIaqIaqIaqIvrxanFhXBvIqjFysPtjyrtBSqijwytoWOhLGgBkkeSnZIbaTnjzwjKqCvsKQayldYxnOhwPVwPVnCxweTxZNhDouGqxRavlqpsnvBbqWKdpnxZNgvIgvIgvIxZNeUWiiSiztfZEdiIsofxZNawTnbfxRaxRaxRaxRaubpubpuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwrGbuGftXetXerZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdlCZtowtGduYwabkuYwiYpmeJmeJmeJmeJmeJmeJmeJubpnDAanFvIqqRrsPtsPtsPtulAlcvsoucGnsouhestXLqobmLzwjKdnVwPVxZGoXArnXckljGiharqpyxZNxRaxRaxRalOIxRaxRaxRaxRaxZNxZNxZNxZNxZNbtFwuEiztmhNevotDrxZNbvNeNexklmQfmYMktTubpubpubpubpehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWehWuYwuYweMBtXetXetXeiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtowkHzkHzkHzuGfrtTrtTmeJmeJmeJmeJmeJubpubppobptBmKAmKAqGssPtsPtacwbvpbWykSkcybsPtsPtmeuwjKxZNvcOxZNxZNxZNxZNxZNxZNxZNxZNxKTaMCqvxhcStzMwmmvVcvahxRabCPeLHlcBxZNxZNxZNxZNxZNxZNxZNxZNsahkpVtdnrMFbGarkhvxYfIQxSmfdCiqxiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObiObePHuYwdjgaaIaaIaaIrDDiQnrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdgSdrtTrtTrtTmeJmeJmeJmeJubpubpubpcKOdZWqRLvIqgqHgqHgqHgqHeBCgqHgqHgqHgqHqMXafTdAFwRevjQxZNxWypKCrfThMVrfTrfTrfTrfTrfTkaGrQcrQcrQcrQcwpLsPLiYDiYDiYDiYDiYDiYDiYDihsiYDxLUrfTrSIuXRbfLjfguXmnojubpubpubpkNVoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhiAtePHuYwuYwuYwuYwuYwdjgdCkrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTmeJubpubpubpubpubpubpnoFgqHiejxMlozRayydoGoiutPJgqHcVpkLphciiYDiYDeOorfTcQRqYZybskFEshEshEkyLkyLkFEkyLpmnpLeshEubpkFEkyLkyLshEuDpfeAtOrybsxCgkFEubpybssaAubpubpubpubpubpubpbQmeQCxzjqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIqYIePHuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTtowkHzubpubpubpubpubpvIqgqHxmFfbZbIohKjbIoeFKdUhgqHwReiMBpjEvnlpmnubpshEubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpjkSuYweQCxzjolfripripripripripripripripripripripripripripripripripripripripripripripripripripripripripripripripripriphqBuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTubpubpubpubpuHLfjufvEbnIsRFinhfyWwmetItjwMjVSrSIpjEanFwdPubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpubpuYwuYwuYwbQmbQmuYweQCxzjpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZpsZePHuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTcFlubpubpwRegqHhyHmILgpvaRFgpvoJijiQgqHwRetrCcLQanFkzmubpubpubpuYweNwkHzdcyjtLtXetXeeLHtowtGduYwabkuYwuYwuYwuYwuYwuYwuYwuYwuYwabkuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweQCluLoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhoOhiAtePHuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEdGAubpubpiQHgqHiFojGroQJxxkfdyhTikeAgqHwReanFlucnXHubpubpubpuYwrGbjtLtXetXetXetXetXetXetXetowtGduYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweQCurannHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHnnHePHuYwuYwuYwuYwuYwuYwjVlrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFlubpubpwRegqHgqHgqHgqHgqHgqHgqHgqHgqHwReokFeInubpubpubpuYwuYweMBvlWgSdgSdrtTgSdgSdgSdgSdatxtowkHzkHzkHzkHztGduYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwrGbkHzkHzkHztGduYwuYwjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevjevuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFlubpubpwReqWzwRewRewReoLiwRewRewReqWzwReubpsLIubpubpuYwuYwrGbjtLrZLrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdrtTgSdatxcFluYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBvlWgSdatxtowdcykHzkHzkHztGduYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEcFlubpubpubpubpubpubpubpubpubpubpubpubpubpubpsLIubpuYwuYwrGbjtLvlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEtowkHzkHzkHzkHzkHzkHzkHzkHzkHzkHzkHzuGfrZLrtTrtTgSdgSdrtTgSdatxcFluYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYweMBrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrlUcFluYwubpubpubpubpubpubpubpubpubpubpubpubpubpnxJuYwuYwuYweMBvlWrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdrtTgSdgSdgSdgSdgSdgSdgSdrtTgSdgSdrtTrtTrtTrtTrtTrtTrtTrpEtowtGduYwuYwuYwuYwuYwuYwuYwrGbkHzkHzkHzkHzkHzdcykHzkHzkHzkHztGduYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwuYwrGbjtLrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrpEhbdsuJuYwuYwabkuYwuYwuYwuYwuYwuYwuYwuYwuYwabkuYwnxJuYwrGbkHzuGfrZLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTatxhgLkHzkHzkHzdcykHzkHzkHzuGfvlWgSdgSdgSdgSdgSdgSdgSdgSdatxhgLkHzkHzkHzkHzdcykHzkHzkHzkHzdcytGduYwuYwuYwuYwuYwuYwuYwuYwrGbuGfvlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgOHrvykAqkAqpAeghbrvykAqkAqkAqpAeghbrvykAqjJanvCkHzjtLgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdgSdgSdrtTgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdrtTgSdgSdgSdgSdgSdgSdgSdatxtowkHzkHzkHzkHzdcykHzkHzkHzjtLvlWrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrpEhgLkHzkHzjtLnbitowkHzdcykHzjtLnbitowkHzdspuGfgYEgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdrtTgSdgSdgSdgSdgSdgSdgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTgSdgSdrtTgSdrtTgSdgSdgSdgSdgSdrtTgSdgSdrtTgSdrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNykEwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNnegwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTeMLrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTrtTwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNoCiwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -wJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN -xCnwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJNwJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +xCn +"} +(2,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(3,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(4,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(5,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(6,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(7,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(8,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(9,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(10,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(11,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(12,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(13,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(14,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(15,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +fpE +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(16,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(17,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +xNz +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(18,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(19,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rlU +hbd +jEd +nTr +cFl +tow +bZF +hbd +lCZ +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(20,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rlU +nTr +cFl +bjD +nvi +clF +xbE +oBC +utP +suJ +cFl +tow +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(21,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rpE +rpE +rpE +nTr +gMW +cVI +xPv +iYp +qzL +eKr +uTE +iYp +jBp +cVI +bPX +tow +rpE +rpE +rpE +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(22,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iIe +cFl +cFl +cFl +mYF +iYp +qzL +xpg +iYp +etw +tqW +sij +iYp +oCv +uTE +iYp +tGd +cFl +cFl +cFl +hgL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(23,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +aaI +uYw +uYw +uYw +uYw +iYp +nYM +gck +flh +ugM +edw +tSV +qZF +tny +jYJ +iYp +uYw +uYw +uYw +uYw +kHz +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(24,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +nTr +mYF +dYA +wbc +cVI +xPv +iYp +mZk +xIb +mdA +cjz +vAp +dhc +lbY +hAt +nbr +iYp +jBp +cVI +tdh +gWF +tGd +tow +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(25,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +nTr +mYF +uYw +leM +iYp +qzL +xpg +iYp +ePj +pvP +pSk +deT +aoj +scS +sNg +vmy +twV +iYp +oCv +uTE +iYp +leM +uYw +tGd +tow +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(26,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iIe +mYF +uYw +uYw +iYp +iYp +jhJ +jLf +gHl +gve +pvP +bEl +aoj +lJJ +aoj +klK +tcU +hhW +iud +qIs +wOg +iYp +iYp +uYw +uYw +tGd +hgL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(27,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +aaI +uYw +vSo +iYp +iYp +iYp +awr +pyr +xaV +gmH +mbH +dpI +oXQ +aoj +eAo +qZg +bqA +oTM +lFg +ibE +sMW +kkC +iYp +uYw +uYw +uYw +kHz +lCZ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(28,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +nTr +mYF +uYw +uYw +iYp +iYp +iYp +kBZ +gKX +cpw +irE +wjN +crm +kvc +tqE +tSK +gtq +oJx +liY +ctC +fto +hrr +iYp +iYp +ydZ +iYp +abk +tGd +tow +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(29,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +nTr +mYF +uYw +uYw +iYp +iYp +iYp +iYp +qEa +vgF +wRm +ylP +hYB +gpg +xnM +hnw +xnM +kJw +hJk +kuV +goG +rXM +oGV +iYp +iYp +hEw +iYp +iYp +uYw +tGd +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(30,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +iYp +iYp +iYp +iYp +iYp +iMF +fQJ +ylS +keJ +soJ +uaQ +pLd +vjE +peF +ygt +jpT +xTP +iJp +fuA +uVs +iYp +iYp +imR +iYp +iYp +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(31,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +vSo +eKO +eKO +xAE +xAE +xAE +xtu +irV +qBk +nAC +nAC +wjN +gjK +bWT +bWT +bWT +lbg +oJx +nAC +nAC +ndx +gEz +jtD +jZr +nTa +iYp +iYp +iYp +abk +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(32,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +eKO +xAE +xAE +cMI +xWt +xtu +nig +nbj +kdr +miL +bKC +gfq +vZK +gkg +eWN +qMJ +nCN +bUQ +jhl +dJo +vWC +xtu +hcG +myg +iYp +iYp +iYp +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(33,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rDD +eKO +eKO +xAE +hqn +oXS +ruz +xAE +xtu +xtu +xtu +xtu +nVe +eHy +ixU +xtu +nVe +gHx +ixU +xtu +xtu +xtu +jEq +jEq +hcG +dPg +iYp +iYp +iYp +iYp +uGf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(34,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eKO +eKO +xAE +daV +obT +mvC +xAE +pfE +fqm +fNY +fVO +ooC +tyJ +sUA +ipU +nRD +kXz +fIZ +fVO +tFO +bBa +byQ +aqI +aqI +pUi +aqI +aqI +aqI +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(35,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eKO +eKO +xAE +dqF +ouo +sIt +csC +jGV +sVl +pYB +gdD +bLk +uRn +mND +gnX +mND +uRn +idk +gdD +gqW +dzv +xWl +aqI +gRb +uXX +nsD +tRB +aqI +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(36,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +fMg +fMg +fMg +fMg +fMg +fMg +ghZ +thi +tXp +sHE +aOo +uRn +mND +aWb +mND +uRn +dva +sHE +dCW +ayJ +xgB +aqI +sRS +qax +gVj +aRR +aqI +meJ +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(37,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +fMg +fMg +kgj +xSK +nwt +gVk +fMg +pVA +xhU +gpE +hMO +cEB +nrA +jbO +imx +jbO +eKb +atl +hMO +lHs +edA +ccS +hIs +hfG +qax +wWz +vbQ +aqI +meJ +meJ +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(38,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +fMg +kKI +jSF +jSF +bnt +twA +vKY +cbV +thi +ybl +fbE +tlv +dao +mND +vRa +mND +jBt +eHt +fbE +arO +enc +qfv +aqI +fYV +uuV +gVj +kXI +aqI +meJ +meJ +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(39,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +fMg +iQz +ejL +bLR +pow +oPZ +bQn +cbV +iah +isJ +plB +bFm +cpa +oFB +pQh +oBo +qie +jyG +plB +cbV +njQ +srp +qDO +xIW +fnX +qLx +scO +aqI +meJ +meJ +meJ +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(40,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +wuh +fMg +dWA +qhg +bMD +gNM +cxd +fMg +dBh +gUj +dQq +fbE +fbE +plB +fbE +mxS +fbE +plB +fbE +fbE +tHc +gUj +cKr +aqI +aqI +aqI +wYr +aqI +aqI +meJ +meJ +meJ +meJ +tow +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(41,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wuh +wuh +wuh +fMg +twU +ows +oym +aIO +cQD +hXo +aoh +qWV +dJQ +wJP +bjf +cLT +nIS +iGZ +waK +tJs +gIl +wJP +knX +iah +iHc +kka +dqs +hBY +dXp +jky +vrx +bQU +bQU +bQU +bQU +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(42,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +bNd +bNd +bNd +bNd +fMg +jcn +xHY +bNB +muF +wIY +fMg +sPE +thi +qiM +wJP +xWY +pqy +pqy +bSJ +pqy +ulE +rLG +wJP +eCI +thi +aXK +kka +egZ +nkO +dXp +jic +adw +nDA +bQU +bQU +bQU +bQU +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(43,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +hbd +atx +aTh +hbd +lCZ +rpE +rtT +bNd +bNd +bNd +pHL +cBD +fMg +mrh +iPw +uwr +sJU +ybb +xgZ +cbV +thi +isJ +ivJ +bwW +wJP +kQX +hDf +eNZ +wJP +dAK +ivJ +cbV +bHf +daA +jpb +cGv +cGv +wJp +eXK +hXB +adw +pob +bQU +bQU +bQU +bQU +rtT +rpE +rpE +rpE +rpE +rlU +hbd +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(44,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +mrY +bjD +cFl +cFl +suJ +cFl +dGA +cFl +bNd +bNd +hlT +sLV +fuw +fMg +fMg +fMg +fMg +oAk +fMg +fMg +mSA +rxw +jQX +ivJ +tRS +qLJ +soD +qRS +bzm +iRF +ghY +ivJ +dXy +rxw +hsZ +kka +pDv +aTE +qGs +vIq +vIq +vIq +ptB +cKO +bQU +bQU +bQU +cFl +dGA +cFl +cFl +cFl +cFl +suJ +gOH +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(45,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wNm +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iIe +bVu +uYw +uYw +vUq +vUq +vUq +vUq +vUq +bNd +bNd +dJO +nrI +nHg +xZN +fAC +tTy +wtg +fZb +whF +xZN +rut +iah +xgB +wJP +nza +cJV +vcT +abq +bWY +pZM +omG +wJP +rut +iah +wKO +kka +adw +kzm +khd +pDv +jFy +qRr +mKA +dZW +bQU +bQU +bQU +bQU +bQU +bQU +bQU +bQU +uYw +uYw +rvy +hgL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(46,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +vUq +vUq +hRp +hRp +hRp +hRp +lLE +lLE +lLE +fkc +lLE +xZN +mZV +aDT +mSM +aRa +nNh +xZN +vZh +tsv +vZh +wJP +vSE +qDE +qDE +eSR +qDE +qDE +quf +wJP +vZh +tsv +vZh +sPt +sPt +sPt +sPt +sPt +sPt +sPt +mKA +iNm +bQU +bQU +bQU +bQU +bQU +bQU +bQU +bQU +bQU +uYw +kAq +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(47,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +kAq +vSo +vUq +hRp +hRp +cDC +oqK +mZD +lLE +gdm +uYA +xTv +iRr +xRa +cac +njG +bgp +ueh +mtt +xZN +asI +iah +ybl +wJP +xrJ +trR +cfn +trR +cfn +trR +rVa +wJP +dwT +iah +oxa +sPt +qOH +uqC +nTu +jaq +jyr +sPt +qGs +vIq +noF +vIq +uHL +mnW +iQH +mnW +mnW +bQU +bQU +abk +kAq +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(48,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +vUq +hRp +hPN +clW +mkq +sAs +jfv +wJw +tWx +acf +jcg +vkI +qKw +tCO +tJz +cSp +qSZ +qfW +rZv +bkh +isJ +ivJ +phc +iRb +gJG +phc +dAQ +dpp +phc +ivJ +dXy +kAK +mzZ +mBF +hyc +nFk +dWS +tBS +tBS +sPt +sPt +gqH +gqH +gqH +fju +gqH +gqH +gqH +qWz +bQU +bQU +uYw +pAe +jtL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(49,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +vUq +hRp +kVD +unH +ebs +jtY +lLE +rgK +eEi +uLi +qHZ +xRa +dZf +igN +fSV +qgC +eJL +xZN +uYf +rxw +jQX +ivJ +phc +phc +jzR +phc +kdq +phc +phc +ivJ +cbV +aOA +tAU +tpi +fdQ +eGC +pVK +qij +qij +ulA +sPt +gqH +iej +xmF +fvE +hyH +iFo +gqH +mnW +bQU +bQU +uYw +ghb +nbi +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(50,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +vUq +hRp +hRp +vXR +hRp +hRp +lLE +lLE +lLE +lLE +lLE +xZN +nPx +jhY +lyY +uaS +qqC +xZN +cbV +thi +isJ +ivJ +phc +bkz +iuv +phc +slu +kSG +phc +ivJ +cbV +thi +ybl +sPt +lQE +jdD +guH +wyt +wyt +lcv +acw +gqH +xMl +fbZ +bnI +mIL +jGr +gqH +mnW +bQU +bQU +uYw +rvy +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(51,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +nzF +xjT +mVb +fzh +okN +usI +cDf +cDf +cDf +usI +abu +xZN +xZN +xZN +xZN +mrA +xZN +xZN +grY +iah +mPS +wJP +koy +jCI +uzk +jCI +uzk +jCI +ykD +wJP +lKi +iah +rNl +nPg +tfG +bvp +tzF +oWO +ncS +sou +bvp +gqH +ozR +bIo +sRF +gpv +oQJ +gqH +mnW +bQU +bQU +uYw +kAq +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(52,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +kAq +uYw +nzF +xjT +fnn +aql +byA +sva +ryq +ryq +ryq +vTY +eym +twd +ote +bdj +epB +wGh +kLl +twd +dcK +uGA +srp +pJF +egd +dkg +vpr +egd +vpr +wPH +egd +pJF +scs +vtr +rNl +nPg +tfG +bvp +din +sxb +hLG +cGn +bWy +eBC +ayy +hKj +inh +aRF +xxk +gqH +oLi +bQU +bQU +uYw +kAq +dcy +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(53,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +jgT +ihT +ihT +ihT +oQi +xxZ +ihT +ihT +kpO +qrJ +eym +twd +fsb +wuI +bvG +dOA +lKZ +twd +cbV +iah +dDj +wJP +xwd +rbM +bQo +buY +aHE +bop +baI +wJP +tkF +iah +rNl +nPg +tfG +bvp +iFe +hgI +gBk +sou +kSk +gqH +doG +bIo +fyW +gpv +fdy +gqH +mnW +bQU +bQU +uYw +kAq +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(54,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +jgT +ihT +bJj +odw +rYC +rMW +sXy +ihT +fnn +qrJ +eym +twd +mPX +sPM +bHS +wGh +qjy +twd +dBh +thi +oxu +wJP +wJP +uAj +uAj +wJP +uAj +uAj +wJP +wJP +cHE +thi +iHc +sPt +hqH +wRf +jBi +keS +keS +hes +cyb +gqH +oiu +eFK +wme +oJi +hTi +gqH +mnW +bQU +bQU +uYw +pAe +jtL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(55,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +jgT +ihT +bJj +iJr +kIx +dto +wDi +ihT +fnn +qrJ +tNI +naC +cBw +bin +yeN +iXM +cYQ +grR +aoh +vlO +iLG +tMH +tDL +eEC +tDL +vaQ +mvD +brB +vXn +efi +vXn +qbk +pbP +sPt +hZf +hqH +iHt +nZI +nZI +tXL +sPt +gqH +tPJ +dUh +tIt +jiQ +keA +gqH +mnW +bQU +bQU +uYw +ghb +nbi +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(56,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +uYw +jgT +ihT +bJj +eyO +tBT +rMW +rdU +ihT +kgu +qrJ +qiT +twd +dpX +jja +jja +jja +fqW +twd +uKr +cdt +nXn +juR +xSX +kQg +non +lzS +nYa +vAH +nYa +juR +vec +cdt +jQX +sPt +ojZ +uGm +vyo +fov +baT +qob +sPt +gqH +gqH +gqH +jwM +gqH +gqH +gqH +qWz +bQU +bQU +uYw +rvy +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(57,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +kAq +vSo +jgT +ihT +ihT +bwS +cRr +rMW +xzh +ihT +qsO +qrJ +vhV +twd +gsv +fFd +knr +nFM +bAX +twd +bFP +adp +qfv +edu +edu +edu +edu +ffw +edu +edu +edu +edu +avN +pqU +lAk +sPt +ndi +rQf +pYj +dGi +njz +mLz +meu +oOZ +cVp +mnW +jVS +mnW +mnW +mnW +mnW +bQU +bQU +abk +kAq +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(58,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +sVS +eLG +nxJ +bOy +bOy +jaO +jaO +vtD +rMW +hOU +ihT +xjT +jcM +nWa +nWa +nWa +nWa +nWa +nWa +nWa +nWa +wPb +xaK +crs +edu +eJb +iSZ +lOo +fTk +eqV +mpw +qhU +edu +uAo +xaK +kuK +wjK +wjK +wjK +wjK +wjK +wjK +wjK +wjK +afT +kLp +iMB +rSI +trC +adw +nmr +bQU +bQU +bQU +uYw +jJa +dsp +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(59,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rDD +djg +uYw +uYw +jgT +jgT +ihT +cQV +kWB +ggq +ihT +gLb +qrJ +nWa +mxD +jhF +abW +ton +wka +aqC +nWa +jil +omf +nbD +eAM +fEy +fwJ +lCm +jej +xNv +fwJ +vMB +eAM +iVf +kwa +tfP +hVv +bqv +ecS +qjX +vpe +qCv +dnV +hVv +dAF +hci +pjE +pjE +cLQ +luc +eIn +sLI +sLI +nxJ +nxJ +nvC +uGf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +oCi +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(60,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +aaI +uYw +uYw +jgT +jgT +ihT +ihT +nuD +uzL +ihT +uaL +sKJ +nWa +hxY +viz +dXc +dFQ +ozh +auv +rxI +iPd +haL +cOK +uCy +hpT +hJR +hbT +ckn +dNc +xpx +ssI +wNp +ioI +hvn +fPH +hVv +gUC +cFs +wgs +ijj +sKQ +jCW +vcO +mnW +iYD +vnl +adw +adw +nXH +bQU +bQU +bQU +uYw +uYw +kHz +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(61,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +dCk +djg +uYw +uYw +jgT +jgT +ihT +ihT +jwp +ihT +uaL +qrJ +nWa +iPZ +wYJ +eyF +mpS +hxD +uoG +wXw +lyK +wjq +hFB +eAM +fHU +jFK +hTt +htx +jPS +jFK +mYI +eAM +dag +wjq +gte +hVv +hVv +hVv +iok +whD +ayl +xZG +hVv +vjQ +iYD +pmn +wdP +kzm +bQU +bQU +bQU +uYw +uYw +rGb +jtL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(62,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +aaI +uYw +uYw +uYw +jgT +jgT +ihT +ihT +ihT +scz +qrJ +dqv +bfq +sNE +sNE +aap +jSg +cuI +nWa +pgS +rBV +cUU +edu +mEz +ria +mEz +edu +mEz +ria +mEz +edu +txC +fEm +cjn +spV +dzt +nQb +vaa +fBM +dYx +oXA +hVv +cOG +eOo +bQU +bQU +bQU +bQU +bQU +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(63,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rDD +eMB +djg +uYw +uYw +nzF +nzF +nzF +nzF +deq +qrJ +nWa +pkC +tzL +cfs +bPB +iKu +pVU +bcs +lau +ccR +lds +eIr +aZj +pdE +kej +eYh +kbm +otE +ggf +eIr +tAr +bfH +qUp +wFO +fYA +vVv +iyk +dJs +nOh +rnX +hVv +jxv +rfT +shE +bQU +bQU +bQU +uYw +uYw +rGb +eMB +uGf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(64,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +cBU +aaI +uYw +uYw +uYw +nzF +nzF +nzF +hFV +qrJ +nWa +hxY +viz +dXc +nOi +iyC +uPY +vtp +oWT +oGs +gPl +lSl +gPl +rlH +pOE +tBz +pOE +brA +gPl +lSl +gPl +mbq +nwJ +dKh +fYA +udF +eNz +jCW +jCW +ckl +hVv +pKC +cQR +bQU +bQU +bQU +uYw +uYw +rGb +jtL +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(65,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +wtJ +qrJ +nWa +mAz +mFv +xTC +bkT +sBQ +qPp +nWa +tVN +xRB +fEo +dMK +dhe +eNR +tgM +xNH +klq +pMN +ygC +dMK +jLc +mZY +bzw +wjB +fYA +cNc +aCL +jCW +jCW +jGi +hVv +rfT +kNX +bQU +bQU +uYw +rGb +eMB +jtL +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(66,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +uYw +uYw +uYw +vSo +nzF +nzF +jnY +qrJ +nWa +lqI +lqI +lqI +lqI +knS +lqI +uyQ +pbH +rBV +nwJ +uWS +sYx +cNK +hEI +bfH +nGl +wSK +lCn +uWS +pbH +gRU +hFU +aeW +fYA +mFj +gbM +vmb +fwG +har +hVv +hMV +ybs +bQU +bQU +eNw +jtL +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(67,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +uaL +sKJ +oeZ +rKy +jTJ +fIc +kWA +qfE +eCj +oeZ +ohM +wjq +pnU +jnT +ceF +jsr +pbH +alU +fJM +tmy +kwG +jnT +qRX +dTq +rLb +qFy +xnd +hVv +gFW +pmR +weT +qpy +hVv +rfT +kFE +bQU +bQU +kHz +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(68,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +nzF +nzF +oUW +qrJ +oeZ +sSO +ooq +pve +uhD +iEB +nNr +jMp +kHQ +mLR +nwJ +jnT +out +fua +pbH +alU +fJM +khQ +vMl +jnT +pbH +mnV +qBa +pXR +pXR +aNp +aNp +aNp +aNp +aNp +cOG +rfT +shE +bQU +bQU +dcy +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(69,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +fnn +tZw +oeZ +kjo +dOh +ybq +mxg +rLR +lrC +oeZ +iFD +aiw +eJs +jnT +xlV +lvy +bzF +bfH +soR +kbe +rpY +jnT +jSl +aiw +dze +pXR +nel +buN +pXR +vWW +hDo +pXR +xKT +rfT +shE +bQU +bQU +jtL +tXe +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(70,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +uoJ +qrJ +oeZ +sZs +vWv +xOp +sul +qnA +hEt +tze +tze +tze +tze +tze +tze +tze +beN +aVq +kaX +dmO +dmO +dmO +dmO +dmO +dmO +pXR +upT +wpU +pXR +iPW +uGq +pXR +aMC +rfT +jic +bQU +bQU +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(71,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +wtJ +qrJ +oeZ +fmH +kCE +voo +pOS +qVG +aTp +tze +rNx +rNx +rNx +rNx +rNx +tze +uIv +bfH +bgw +dmO +mwe +gGi +ceI +bJm +tAe +pXR +pXR +jUL +pXR +xPU +pXR +pXR +qvx +rfT +jic +bQU +bQU +tXe +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(72,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +hpc +qrJ +oeZ +tqM +hae +hIT +wdG +vrG +oKT +tze +rNx +rNx +rNx +rNx +rNx +gDd +eea +nTl +iCf +oxC +kQl +ohw +ppC +bTJ +ppC +rBU +boa +ubB +nfL +wuR +vlq +lOI +hcS +kaG +kFE +bQU +bQU +eLH +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(73,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +nzF +nzF +bie +qrJ +oeZ +fea +uJh +ayB +wdG +sIm +mbV +tze +rNx +rNx +rNx +rNx +rNx +gDd +htB +wjq +hFB +tqf +lZj +ahU +ruT +mRr +iyv +pXR +xVT +oaf +oTb +dgN +psn +pXR +fDI +rQc +jic +bQU +bQU +tow +tXe +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(74,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +uET +sKJ +oeZ +xiW +qfE +qfE +wdG +gxA +tYJ +tze +rNx +rNx +rNx +rNx +rNx +gDd +eea +alU +mQL +tqf +lZj +lZj +iCl +mRr +chE +pXR +txv +cSC +twJ +loY +vBb +pXR +nkO +rQc +pmn +bQU +bQU +tGd +tow +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(75,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +wsF +qrJ +oeZ +rLa +lPz +qfE +wpi +uNk +oMx +tze +rNx +rNx +rNx +rNx +rNx +tze +lFi +bfH +bzw +tqf +lZj +lZj +iCl +rjS +rbn +pXR +voQ +fEe +eAa +oaA +qWK +pXR +vVc +rQc +pLe +bQU +bQU +uYw +tGd +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(76,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +vSo +nzF +nzF +nzF +ksp +vcd +vcd +vcd +dqi +vcd +vcd +vcd +tze +tze +tze +tze +tze +tze +tze +beN +aVq +beN +dmO +lZj +quR +iCl +bxl +nqM +pXR +cVF +aJi +uhY +vwn +dpn +pXR +vah +rQc +shE +bQU +bQU +abk +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(77,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +hNZ +qrJ +vcd +gIR +oTP +sxM +jit +oNj +baF +vcd +wAh +mUO +sMj +rPt +nSy +wrR +fZS +jDK +ltN +tse +tse +tse +tse +tse +tse +tse +snt +vvp +snt +snt +snt +snt +kka +wpL +bQU +bQU +bQU +uYw +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(78,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +nzF +nzF +jRJ +sKJ +vcd +jPs +bkN +fYz +mpK +gnO +xZS +vcd +cVB +rhF +rVS +bqD +gZf +wrR +clD +kTQ +hAJ +tse +lMi +rNK +lOa +wFQ +oMY +tse +cMb +xRc +iwZ +ojo +gvI +snt +bCP +sPL +kFE +bQU +bQU +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(79,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +oIG +qrJ +vcd +iIA +oqf +tPA +bbV +qAu +yeq +vcd +bDm +hjC +fKs +oHh +oEO +wrR +mkt +fKt +iTZ +tse +dNT +fuf +npE +lVT +aAi +tse +rhC +eVk +sbx +ojo +gvI +snt +kzo +iYD +jic +bQU +bQU +uYw +uYw +kHz +atx +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(80,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +rOW +qrJ +vcd +vcd +vcd +vcd +hBd +vcd +vcd +vcd +wrR +wrR +duE +wrR +wrR +wrR +vFA +jDK +rfn +tse +btB +xJg +gUT +eHA +mlr +tse +jga +nfl +vLr +ojo +gvI +snt +lcB +iYD +krL +bQU +bQU +uYw +uYw +tGd +cFl +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(81,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +dNr +qrJ +kyg +fWa +tuX +mze +jDq +wdL +dbB +jrx +apA +qNw +jDq +rJn +xSo +nLX +hAO +hdI +dhX +tse +tse +tse +qXy +tse +tse +tse +snt +xQm +snt +snt +snt +snt +cOG +iYD +shE +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(82,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +uYw +uYw +uYw +uYw +nzF +nzF +kye +pvV +rNN +rNN +cnh +aQu +wXb +oor +vRY +kdm +vRY +oor +wKC +vRY +fqR +rEQ +xJO +pDQ +gjP +nLX +gaH +qNw +qop +jWr +gQI +jlU +qNw +jbJ +pmk +wSG +eUW +btF +pmk +iYD +uDp +bQU +bQU +uYw +uYw +uYw +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(83,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +nzF +nzF +dYk +qrJ +qYZ +tzM +tuX +aqr +yfi +usD +fBO +tpp +brI +xHi +xAj +eWg +nkG +nLX +gNu +tQu +eoQ +rEQ +bJb +odj +gAC +nOQ +vRY +nxP +vRY +pou +jsP +bcV +iiS +wuE +pmk +iYD +feA +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(84,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +uaL +qrJ +hKY +hKY +hKY +hKY +amQ +hKY +hKY +qjp +qjp +qjp +usr +qjp +qjp +qjp +mJZ +mBH +urH +nLX +lWD +jar +dKo +jdC +iWX +xAj +vsN +tym +pmk +aIl +izt +izt +pmk +iYD +tOr +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(85,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +jRJ +qrJ +hKY +aNn +oyH +oTr +uZx +fit +gHI +qjp +vdI +bxp +ooV +fJK +jDc +qjp +rdN +jDK +nch +lsb +lsb +vFH +lsb +hdc +hdc +gdc +hdc +hdc +pmk +aTf +fZE +mhN +pmk +iYD +ybs +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(86,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +vSo +nzF +nzF +fnn +sKJ +hKY +lEA +iSy +iSy +msd +qcJ +vYG +qjp +xfC +yiL +fpq +tLH +eDe +qjp +tuX +tkO +tuX +lsb +aXe +nyP +sqb +jxH +rdn +lnL +gYL +hdc +gwt +pun +diI +evo +pmk +ihs +xCg +bQU +bQU +abk +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(87,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +nzF +nzF +eYN +qrJ +hKY +sxU +uJY +sxU +oDc +fvU +jsb +qjp +hqY +xAk +gDl +kGN +qSQ +qjp +aLI +tkX +umm +lsb +alE +tvm +pQa +bFZ +iRR +rJe +xgE +hdc +gpr +htV +sof +tDr +pmk +iYD +kFE +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(88,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +nzF +nzF +nzF +jcM +hKY +hKY +hKY +hKY +hKY +hKY +hKY +qjp +uOd +oRb +xjo +nqm +kZg +qjp +eRd +tkX +gen +lsb +via +ibt +qrt +bFZ +aLc +dVH +gip +hdc +pmk +pmk +pmk +pmk +pmk +xLU +bQU +bQU +bQU +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(89,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +iWV +iWV +aLI +twv +hmN +mrD +pIY +xWy +xWy +eqq +qjp +fLK +ujZ +gsH +gDl +kGN +jeH +qjp +ajo +tkX +kyL +lsb +rGX +xBo +tCS +bFZ +qKs +xjd +jWq +hdc +nCo +mBc +awT +bvN +sah +fYj +row +iWV +iWV +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(90,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +iWV +iWV +eRd +taE +mKb +qDd +qDd +qDd +qGW +exH +qjp +qcN +qek +fLQ +qyW +kGN +kLn +qjp +oFs +tkX +kyL +lsb +wfo +tsm +kqt +jxH +iqj +ojM +xbm +hdc +yfO +oiO +nbf +eNe +kpV +rhN +saA +iWV +iWV +uYw +uYw +uYw +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(91,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +jWA +jWA +jWA +oUc +tdn +rZd +rPm +wrD +twv +mlu +qjp +nfr +wMV +wgQ +tXW +qjp +qjp +qjp +bBS +dbG +mlu +lsb +lsb +lsb +lsb +hdc +hdc +hdc +hdc +hdc +qsk +oIo +oNN +xkl +qVa +uXR +fKB +fKB +fKB +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(92,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +uYw +jWA +jWA +rAZ +mBm +vBY +rPm +oFs +twv +row +qjp +qjp +qjp +qjp +qjp +qjp +hpR +mqe +upm +rDm +iVK +xWy +xWy +wHp +pIY +ljC +gaU +gaU +xUd +qRL +gfe +oIo +oNN +mQf +rMF +bfL +fKB +fKB +uYw +uYw +uYw +rGb +eMB +uGf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(93,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rDD +djg +uYw +uYw +uYw +uYw +jWA +jWA +uvY +iyd +cEa +rPm +jFF +twv +oAZ +dSC +gaU +gaU +tVp +xWy +wHp +pIY +gaU +uxr +fIr +igU +igU +igU +xMX +igU +igU +igU +igU +igU +igU +igU +vio +oNN +mYM +bGa +jfg +fKB +fKB +uYw +uYw +uYw +kHz +vlW +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(94,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +aaI +uYw +uYw +uYw +uYw +jWA +jWA +vxI +jjp +gcH +rPm +wmm +taE +qDd +qDd +qDd +qDd +qDd +qDd +rWR +qDd +qDd +qDd +bRb +uKq +vFO +jWg +iWV +gir +idB +bfR +bfR +okF +bfR +biZ +biZ +oNN +ktT +rkh +uXm +fKB +fKB +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(95,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +jWA +jWA +jWA +vQo +moe +jWA +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +giO +bfR +sXS +rvB +lem +rsE +edb +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +fKB +fKB +vxY +noj +fKB +fKB +bQm +uYw +uYw +kHz +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(96,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +vSo +jWA +jWA +hzv +jWA +jWA +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +skT +fcQ +oaF +gcz +sWZ +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +iWV +fKB +fKB +fIQ +fKB +fKB +jkS +bQm +uYw +uYw +tGd +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(97,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +uAJ +uYw +uYw +uYw +uYw +uYw +uYw +jWA +nnA +jWA +uYw +uYw +uYw +tng +uYw +uYw +uYw +uYw +iWV +iWV +iWV +iWV +iWV +xkk +iWV +iWV +iWV +iWV +iWV +uYw +uYw +uYw +uYw +tng +uYw +uYw +uYw +fKB +xSm +fKB +bQm +uYw +uYw +uYw +uYw +uYw +dcy +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(98,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +eQC +eQC +eQC +eQC +eQC +jWA +xof +jWA +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +iWV +iWV +iWV +uNU +uBE +cOn +iWV +iWV +iWV +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +fKB +fdC +fKB +eQC +eQC +eQC +eQC +eQC +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(99,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +ehW +nGU +eQO +pGJ +pGJ +pGJ +nMC +ngm +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +iWV +iWV +xcw +qyL +pxI +iWV +iWV +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iqx +kNV +xzj +xzj +xzj +luL +ura +jev +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(100,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rpE +aTh +aaI +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +tng +iWV +iWV +xGX +iWV +iWV +tng +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +olf +psZ +oOh +nnH +jev +kHz +atx +rpE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(101,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +nTr +cFl +mYF +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +tGd +cFl +tow +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +neg +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(102,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iIe +mYF +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +oZc +ioc +jGQ +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +tGd +hgL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(103,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(104,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(105,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(106,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +dcy +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(107,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(108,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(109,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(110,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +rDD +djg +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +rGb +uGf +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(111,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(112,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(113,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +oZc +ioc +jGQ +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(114,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +eUH +ioc +yfs +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(115,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +uYw +tkp +tkp +tkp +tkp +tkp +tkp +pXl +vyz +fne +tkp +tkp +tkp +tkp +tkp +tkp +uYw +uYw +uYw +uYw +uYw +uYw +ehW +soX +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(116,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +uYw +tkp +tkp +tkp +tkp +tkp +tkp +tkp +tkp +uet +tkp +tkp +tkp +tkp +tkp +tkp +tkp +tkp +uYw +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +dcy +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(117,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +uYw +tkp +tkp +tkp +qnf +qnf +qnf +qnf +swH +khP +adU +khP +swH +qnf +qnf +qnf +qnf +tkp +tkp +tkp +uYw +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(118,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +tkp +tkp +tkp +fWe +qnf +aUj +aUj +aUj +aUj +aUj +jZW +aUj +aUj +aUj +aUj +aUj +qnf +sjy +tkp +tkp +tkp +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(119,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +idA +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +tkp +qnf +qnf +aUj +mDz +mDz +mDz +mDz +mDz +lnN +mDz +mDz +mDz +mDz +mDz +aUj +qnf +qnf +tkp +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(120,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +aaI +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +hSu +qnf +aUj +mDz +mDz +uhW +uNO +oum +cXD +fIk +cXD +oum +uNO +qYE +mDz +mDz +aUj +qnf +hSu +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +kHz +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(121,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +iIe +mYF +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +mDz +hIo +cFI +ydi +ydi +ydi +loi +lMQ +vno +vno +sdz +oki +mDz +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +tGd +hgL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(122,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +uhW +bCN +qjU +mGr +mGr +mGr +vrD +mGr +mGr +mGr +qKf +oqb +qYE +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(123,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +tKO +isq +wug +mGr +eIu +wcN +rNy +bMV +kDn +mGr +pyu +mWw +pah +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(124,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +qKf +xpT +dTa +mGr +vdC +wBl +uTP +pnw +sfU +mGr +dTa +dkt +qjU +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(125,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +eIy +xpT +mGr +uOe +maW +uQF +pBm +uQF +pBE +twk +mGr +dkt +oyN +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(126,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +fne +tkp +iEL +aUj +mDz +rAI +qjU +mGr +mwC +xkv +uQF +qfM +uQF +orY +hkb +mGr +hwI +qZb +mDz +aUj +hrB +tkp +fne +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +dcy +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(127,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +rWJ +evY +mGr +meZ +umU +uQF +aby +uQF +aCX +jWO +mGr +qfu +gWy +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(128,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +ksu +aUj +mDz +qKf +xpT +dTa +mGr +maW +uQF +uQF +uQF +pBE +mGr +dTa +dkt +qjU +mDz +aUj +sON +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(129,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +tKO +kzX +gWa +efM +gce +jHi +tah +ydi +dYG +ike +oDz +oOR +pah +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(130,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +pyu +dcW +jfS +mGr +mGr +mGr +vrD +mGr +mGr +mGr +qKf +isq +wug +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(131,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aTh +uAJ +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +qnf +aUj +mDz +mDz +lyR +uMK +rYg +yhZ +tUj +bUM +oKG +qLi +neL +cFI +sCx +mDz +mDz +aUj +qnf +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +dcy +atx +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(132,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +nTr +mYF +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +hSu +qnf +aUj +mDz +mDz +wSa +fik +fax +dLE +wPr +kNw +fax +tWj +aqc +mDz +mDz +aUj +qnf +hSu +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +tGd +tow +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(133,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +tkp +tkp +tkp +qnf +qnf +aUj +mDz +mDz +fax +fax +lDR +wPK +xDi +fax +fax +mDz +mDz +aUj +qnf +qnf +tkp +tkp +tkp +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(134,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +aaI +uYw +uYw +uYw +uYw +ehW +erQ +nIc +sEd +boE +dYn +nIc +qYI +jev +uYw +uYw +uYw +tkp +tkp +tkp +iEL +qnf +aUj +aUj +fax +fax +lvn +abP +sIK +fax +fax +aUj +aUj +qnf +hrB +tkp +tkp +tkp +uYw +uYw +uYw +ehW +iOb +oOh +fJa +rip +psZ +oOh +nnH +jev +uYw +uYw +uYw +uYw +kHz +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(135,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +ehW +erQ +iAt +sEd +boE +dYn +iAt +qYI +jev +uYw +uYw +uYw +uYw +tkp +tkp +tkp +qnf +qnf +dkI +bLB +hyu +mJE +rIH +dxS +xYd +nnY +qnf +qnf +qnf +tkp +tkp +tkp +uYw +uYw +uYw +uYw +ehW +iOb +htf +fJa +hqB +psZ +htf +nnH +jev +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(136,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +uYw +ePH +ePH +ePH +uYw +ePH +ePH +ePH +uYw +uYw +uYw +uYw +uYw +uYw +tkp +tkp +tkp +tkp +cXg +lWt +lWt +tfO +sjZ +lsL +lWt +lWt +tkp +tkp +tkp +tkp +tkp +uYw +uYw +uYw +uYw +uYw +uYw +ePH +ePH +ePH +uYw +ePH +ePH +ePH +uYw +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(137,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +uAJ +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +tkp +tkp +tkp +ykQ +pjy +pjy +pjy +oOK +lWt +lWt +lWt +tkp +tkp +tkp +tkp +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +dcy +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(138,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +rGb +eMB +djg +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +lWt +lWt +fcb +lWt +lWt +uYw +uYw +uYw +uYw +rGb +eMB +eMB +djg +uYw +uYw +rGb +eMB +djg +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(139,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +tXe +rDD +eMB +eMB +eMB +eMB +eMB +eMB +eMB +eMB +eMB +djg +uYw +uYw +uYw +hVK +uYw +uYw +uYw +rGb +eMB +eMB +jtL +tXe +tXe +dCk +eMB +eMB +uGf +tXe +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(140,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +tXe +tXe +tXe +eLH +tXe +tXe +tXe +tXe +tXe +tXe +tXe +rDD +djg +uYw +uYw +hVK +uYw +uYw +rGb +uGf +tXe +tXe +tXe +tXe +tXe +tXe +tXe +eLH +tXe +tXe +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(141,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +idA +dCk +djg +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +kHz +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +dCk +eMB +eMB +mae +eMB +eMB +jtL +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +tXe +aaI +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +rGb +jtL +gSd +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(142,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +rDD +djg +uYw +uYw +uYw +uYw +uYw +uYw +uYw +rGb +uGf +gYE +rZL +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rtT +rZL +rZL +rZL +rZL +rZL +rtT +rZL +rZL +rZL +rZL +rZL +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +iQn +rDD +djg +uYw +uYw +uYw +uYw +uYw +uYw +uYw +uYw +rGb +uGf +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(143,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +cBU +dCk +eMB +eMB +eMB +jVl +eMB +eMB +eMB +jtL +gYE +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +iQn +dCk +eMB +eMB +eMB +eMB +jVl +eMB +eMB +eMB +jtL +vlW +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(144,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rZL +rtT +rZL +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(145,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(146,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(147,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(148,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(149,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +eML +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(150,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(151,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(152,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(153,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(154,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(155,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +ykE +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(156,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(157,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(158,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(159,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(160,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +www +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(161,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(162,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(163,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(164,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(165,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(166,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(167,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(168,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +rtT +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(169,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(170,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(171,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(172,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(173,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(174,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(175,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(176,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(177,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(178,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(179,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(180,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(181,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(182,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(183,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(184,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(185,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(186,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(187,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(188,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(189,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(190,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(191,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(192,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(193,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(194,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(195,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(196,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(197,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(198,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(199,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +"} +(200,1,5) = {" +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN +wJN "} diff --git a/maps/torch/items/clothing/solgov-accessory.dm b/maps/torch/items/clothing/solgov-accessory.dm index e9a281f8467d5..31052ecf8f538 100644 --- a/maps/torch/items/clothing/solgov-accessory.dm +++ b/maps/torch/items/clothing/solgov-accessory.dm @@ -410,7 +410,7 @@ armour attachments icon = 'maps/torch/icons/obj/obj_accessories_solgov.dmi' accessory_icons = list(slot_w_uniform_str = 'maps/torch/icons/mob/onmob_accessories_solgov.dmi', slot_wear_suit_str = 'maps/torch/icons/mob/onmob_accessories_solgov.dmi') icon_state = "solflag" - slot = ACCESSORY_SLOT_ARMOR_M + slot = ACCESSORY_SLOT_ARMOR_MISC /obj/item/clothing/accessory/armor_tag/solgov/ec name = "\improper Expeditionary Corps crest" @@ -464,7 +464,7 @@ department tags icon_state = "dept_exped" on_rolled_down = ACCESSORY_ROLLED_NONE on_rolled_sleeves = "dept_exped_sleeves" - slot = ACCESSORY_SLOT_DEPT + slot = ACCESSORY_SLOT_FLASH accessory_flags = EMPTY_BITFIELD /obj/item/clothing/accessory/solgov/department/command diff --git a/maps/torch/items/clothing/solgov-suit.dm b/maps/torch/items/clothing/solgov-suit.dm index 92d97b3a237c8..901b3956c5f42 100644 --- a/maps/torch/items/clothing/solgov-suit.dm +++ b/maps/torch/items/clothing/solgov-suit.dm @@ -46,7 +46,7 @@ ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_RANK, - ACCESSORY_SLOT_DEPT, + ACCESSORY_SLOT_FLASH, ACCESSORY_SLOT_DECOR ) restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) @@ -164,13 +164,13 @@ ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_RANK, - ACCESSORY_SLOT_DEPT, + ACCESSORY_SLOT_FLASH, ACCESSORY_SLOT_DECOR ) restricted_accessory_slots = list( ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_RANK, - ACCESSORY_SLOT_DEPT + ACCESSORY_SLOT_FLASH ) /obj/item/clothing/suit/solgov/fleet_sweater/officer diff --git a/maps/torch/items/mecha.dm b/maps/torch/items/mecha.dm index b4f5169e93a52..a593d5715bf26 100644 --- a/maps/torch/items/mecha.dm +++ b/maps/torch/items/mecha.dm @@ -13,7 +13,7 @@ if(!arms) arms = new /obj/item/mech_component/manipulators/powerloader(src) arms.color = COLOR_PURPLE - + material = material = SSmaterials.get_material_by_name(MATERIAL_OSMIUM_CARBIDE_PLASTEEL) . = ..() //Damage it @@ -30,4 +30,3 @@ install_system(new /obj/item/mech_equipment/clamp(src), HARDPOINT_RIGHT_HAND) install_system(new /obj/item/mech_equipment/mounted_system/taser/plasma(src), HARDPOINT_LEFT_HAND) install_system(new /obj/item/mech_equipment/ionjets(src), HARDPOINT_BACK) - \ No newline at end of file diff --git a/maps/torch/torch2_deck4.dmm b/maps/torch/torch2_deck4.dmm index c220b002dcc47..c2948e3cc25ee 100644 --- a/maps/torch/torch2_deck4.dmm +++ b/maps/torch/torch2_deck4.dmm @@ -2976,11 +2976,11 @@ /obj/structure/table/standard{ name = "plastic table frame" }, -/obj/item/folder/blue, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 }, +/obj/item/folder/yellow, /turf/simulated/floor/lino, /area/tcommsat/computer) "ku" = ( @@ -3049,12 +3049,12 @@ /obj/structure/table/standard{ name = "plastic table frame" }, -/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, /obj/machinery/power/apc/super/critical{ dir = 1; name = "north bump"; pixel_y = 24 }, +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov, /turf/simulated/floor/lino, /area/tcommsat/computer) "kH" = ( diff --git a/maps/torch/torch4_deck2.dmm b/maps/torch/torch4_deck2.dmm index 096e1edf59274..edd2c1bc8def3 100644 --- a/maps/torch/torch4_deck2.dmm +++ b/maps/torch/torch4_deck2.dmm @@ -38,7 +38,7 @@ initial_id_tag = "aux_fusion_plant" }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ae" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -289,7 +289,7 @@ pixel_y = -22 }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "az" = ( /turf/simulated/wall/prepainted, /area/engineering/engine_smes) @@ -590,7 +590,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "bh" = ( /obj/structure/table/rack, /obj/random/junk, @@ -640,7 +640,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "bm" = ( /obj/machinery/conveyor{ dir = 9; @@ -1702,7 +1702,7 @@ icon_state = "warningcorner" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "dk" = ( /obj/floor_decal/industrial/warning{ dir = 8; @@ -2148,7 +2148,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ei" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, @@ -2270,7 +2270,7 @@ }, /obj/structure/cable/green, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "eu" = ( /obj/structure/cable{ d1 = 32; @@ -2300,7 +2300,7 @@ anchored = 1 }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ex" = ( /obj/random/torchcloset, /turf/simulated/floor/plating, @@ -2403,7 +2403,7 @@ initial_id_tag = "aux_fusion_plant" }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "eI" = ( /obj/structure/cable/green{ d1 = 4; @@ -4764,7 +4764,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "kz" = ( /obj/structure/cable/green{ d1 = 1; @@ -5409,21 +5409,21 @@ /area/solar/port) "mb" = ( /turf/simulated/wall/r_wall/prepainted, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "mc" = ( /obj/floor_decal/industrial/warning/corner, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "md" = ( /obj/floor_decal/industrial/warning, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "me" = ( /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "mf" = ( /obj/machinery/computer/fusion/fuel_control{ dir = 4; @@ -5434,7 +5434,7 @@ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "mg" = ( /obj/floor_decal/industrial/warning{ dir = 8; @@ -5443,7 +5443,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "mh" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -5457,7 +5457,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "mi" = ( /obj/structure/cable/green{ d1 = 4; @@ -6390,14 +6390,6 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/seconddeck/aftport) -"pa" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/blast/regular{ - id_tag = "SupermatterPort"; - name = "Reactor Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) "pb" = ( /obj/floor_decal/industrial/warning{ dir = 1; @@ -6928,19 +6920,19 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "qi" = ( /obj/wallframe_spawn/reinforced/no_grille, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "qj" = ( /obj/floor_decal/industrial/warning{ dir = 1; icon_state = "warning" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "qk" = ( /obj/machinery/door/airlock/engineering{ name = "Fusion Testing Facility"; @@ -6959,7 +6951,7 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "qm" = ( /obj/structure/cable/green{ d1 = 4; @@ -7004,7 +6996,7 @@ /area/maintenance/seconddeck/foreport) "qw" = ( /turf/simulated/wall/r_wall/hull, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "qy" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -7067,7 +7059,7 @@ dir = 8 }, /turf/simulated/wall/r_wall/hull, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "qH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7406,7 +7398,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "rj" = ( /obj/floor_decal/industrial/warning{ dir = 1; @@ -7414,7 +7406,7 @@ }, /obj/machinery/light, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "rl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -8459,14 +8451,14 @@ icon_state = "warningcorner" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ue" = ( /obj/floor_decal/industrial/warning{ dir = 4; icon_state = "warning" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ug" = ( /obj/structure/railing/mapped{ dir = 4; @@ -8832,7 +8824,7 @@ pixel_y = 24 }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "vj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/sensor{ @@ -8849,7 +8841,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "vk" = ( /obj/machinery/door/airlock/engineering{ name = "Fusion Testing Facility"; @@ -8864,7 +8856,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_ridged, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "vl" = ( /obj/structure/cable/green{ d1 = 1; @@ -9241,7 +9233,7 @@ start_pressure = 14999 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "ww" = ( /obj/structure/table/rack{ dir = 8 @@ -9390,7 +9382,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "wT" = ( /obj/structure/cable/green{ d1 = 2; @@ -9576,14 +9568,14 @@ /turf/simulated/floor/tiled, /area/engineering/engineering_bay) "xw" = ( -/obj/wingrille_spawn/reinforced_phoron/full, +/obj/wallframe_spawn/reinforced_phoron/ocp, /obj/machinery/door/blast/regular/open{ dir = 4; icon_state = "pdoor0"; id_tag = "prototype_chamber_blast" }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "xy" = ( /obj/machinery/light, /obj/structure/catwalk, @@ -9736,7 +9728,7 @@ /area/maintenance/seconddeck/foreport) "yf" = ( /turf/simulated/wall/prepainted, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "yg" = ( /turf/simulated/wall/prepainted, /area/maintenance/incinerator) @@ -9979,7 +9971,7 @@ dir = 1 }, /turf/simulated/wall/ocp_wall, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "yR" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/engine_room) @@ -10418,7 +10410,7 @@ start_pressure = 14999 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Al" = ( /obj/floor_decal/techfloor{ dir = 8 @@ -12018,9 +12010,9 @@ icon_state = "pdoor0"; id_tag = "prototype_chamber_blast" }, -/obj/wingrille_spawn/reinforced_phoron/full, +/obj/wallframe_spawn/reinforced_phoron/ocp, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ek" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/wallframe_spawn/reinforced_phoron, @@ -12415,7 +12407,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Fh" = ( /obj/floor_decal/industrial/warning{ dir = 8 @@ -12428,7 +12420,7 @@ dir = 5 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Fi" = ( /obj/structure/cable{ d1 = 2; @@ -12439,7 +12431,7 @@ /obj/item/storage/toolbox/electrical, /obj/item/paper/newrust, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Fj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -12729,13 +12721,13 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Gg" = ( /obj/floor_decal/industrial/warning, /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Gh" = ( /obj/floor_decal/industrial/warning{ dir = 1 @@ -12749,7 +12741,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Gi" = ( /obj/structure/cable{ d1 = 1; @@ -12769,7 +12761,7 @@ pixel_y = -32 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Gj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/floor_decal/industrial/warning{ @@ -12781,7 +12773,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Gl" = ( /obj/structure/sign/warning/compressed_gas{ dir = 1 @@ -13033,7 +13025,7 @@ c_tag = "Engineering - RUST Monitoring" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Hg" = ( /obj/floor_decal/industrial/warning/corner{ dir = 8; @@ -13042,7 +13034,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Hh" = ( /obj/floor_decal/industrial/warning{ dir = 1 @@ -13051,7 +13043,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Hi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -13080,7 +13072,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Hk" = ( /obj/structure/sign/atmosplaque, /turf/simulated/wall/r_wall/prepainted, @@ -13108,7 +13100,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Hn" = ( /obj/structure/cable{ d1 = 1; @@ -13375,7 +13367,7 @@ dir = 10 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ij" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13385,7 +13377,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Ik" = ( /obj/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_torch, @@ -13613,7 +13605,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "IW" = ( /obj/machinery/light_switch{ pixel_x = 24; @@ -13699,11 +13691,11 @@ icon_state = "warningcorner" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Jh" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Ji" = ( /obj/landmark{ name = "xeno_spawn"; @@ -13741,7 +13733,7 @@ dir = 6 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Jl" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 5; @@ -14015,7 +14007,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Kh" = ( /obj/random/obstruction, /turf/simulated/floor/plating, @@ -14031,7 +14023,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Kk" = ( /obj/floor_decal/techfloor{ dir = 8 @@ -14217,7 +14209,7 @@ "Lc" = ( /obj/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ld" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -14262,7 +14254,7 @@ /area/hallway/primary/seconddeck/fore) "Li" = ( /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Lj" = ( /obj/structure/cable/yellow, /obj/machinery/power/terminal, @@ -14271,7 +14263,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Lk" = ( /turf/simulated/wall/prepainted, /area/storage/medical) @@ -14488,14 +14480,14 @@ /obj/floor_decal/industrial/warning/corner, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Mh" = ( /obj/machinery/shield_diffuser, /obj/floor_decal/industrial/warning, /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Mi" = ( /obj/machinery/button/blast_door{ desc = "A remote control-switch for the prototype exhaust."; @@ -14521,7 +14513,7 @@ dir = 5 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Mj" = ( /obj/floor_decal/industrial/warning/corner{ dir = 8; @@ -14529,7 +14521,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Mk" = ( /obj/structure/table/rack, /obj/item/storage/toolbox/mechanical{ @@ -14711,7 +14703,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Nd" = ( /obj/machinery/power/terminal{ dir = 1 @@ -14763,7 +14755,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Nh" = ( /obj/floor_decal/industrial/warning{ dir = 6 @@ -14771,7 +14763,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ni" = ( /obj/floor_decal/industrial/warning{ dir = 8 @@ -14780,7 +14772,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Nj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -14802,7 +14794,7 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Nk" = ( /obj/structure/sign/directions/infirmary{ dir = 1; @@ -14825,7 +14817,7 @@ RCon_tag = "R-UST - Main" }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Nm" = ( /obj/structure/cable/green{ d1 = 1; @@ -15135,7 +15127,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Oi" = ( /obj/machinery/light/small{ dir = 4 @@ -15146,13 +15138,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Oj" = ( -/obj/machinery/door/airlock/hatch/maintenance/bolted{ - frequency = 1379; - id_tag = "prototype_interior"; - name = "Fusion Maintenance" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15165,8 +15152,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/door/airlock/hatch/maintenance{ + frequency = 1379; + id_tag = "prototype_interior"; + name = "Fusion Maintenance" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Ok" = ( /obj/wallframe_spawn/reinforced_phoron, /obj/machinery/door/blast/regular{ @@ -15175,7 +15167,7 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Ol" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 9 @@ -15416,7 +15408,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Pf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -15443,7 +15435,7 @@ req_access = list("ACCESS_ENGINE_EQUIP") }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Ph" = ( /obj/floor_decal/industrial/warning{ dir = 1 @@ -15451,14 +15443,14 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Pi" = ( /obj/floor_decal/industrial/warning/corner{ dir = 1; icon_state = "warningcorner" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Pj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -15726,7 +15718,7 @@ /area/engineering/engine_smes) "Qe" = ( /turf/simulated/wall/r_wall/prepainted, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Qf" = ( /obj/floor_decal/industrial/warning{ dir = 1 @@ -15737,14 +15729,14 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Qg" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = -28 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Qh" = ( /obj/floor_decal/industrial/warning/corner{ dir = 1; @@ -15753,7 +15745,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Qi" = ( /obj/machinery/light, /obj/floor_decal/industrial/warning{ @@ -15766,13 +15758,8 @@ icon_state = "1-4" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Qj" = ( -/obj/machinery/door/airlock/hatch/maintenance/bolted{ - frequency = 1379; - id_tag = "prototype_exterior"; - name = "Fusion Maintenance" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15785,8 +15772,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/door/airlock/hatch/maintenance{ + frequency = 1379; + id_tag = "prototype_exterior"; + name = "Fusion Maintenance" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Qn" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 2; @@ -16052,7 +16044,7 @@ req_access = list("ACCESS_ENGINE_EQUIP") }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Rg" = ( /obj/floor_decal/industrial/warning/corner{ dir = 8; @@ -16064,7 +16056,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Rh" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -16074,7 +16066,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ri" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16086,7 +16078,7 @@ icon_state = "2-4" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Rj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -16098,7 +16090,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Rl" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 4 @@ -16379,19 +16371,19 @@ /area/engineering/engine_smes) "Se" = ( /turf/simulated/wall/ocp_wall, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Sf" = ( /obj/structure/bed/chair/padded/yellow{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Sg" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/material/tritium/ten, /obj/item/stack/material/tritium/ten, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Sh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -16409,7 +16401,7 @@ pixel_y = -28 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Sj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -16420,7 +16412,7 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Sk" = ( /obj/floor_decal/industrial/warning, /obj/machinery/camera/network/engineering{ @@ -16688,7 +16680,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Tj" = ( /obj/floor_decal/industrial/warning/corner{ dir = 1; @@ -16696,21 +16688,21 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Tk" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/wingrille_spawn/reinforced_phoron/full, +/obj/wallframe_spawn/reinforced_phoron/ocp, /obj/machinery/door/blast/regular/open{ dir = 4; icon_state = "pdoor0"; id_tag = "prototype_chamber_blast" }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Tl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/item/device/radio/intercom{ @@ -16934,7 +16926,7 @@ dir = 1 }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Uh" = ( /obj/floor_decal/industrial/warning{ dir = 1 @@ -16950,7 +16942,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Uj" = ( /obj/machinery/firealarm{ dir = 1; @@ -16964,7 +16956,7 @@ RCon_tag = "Substation - RUST" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Ul" = ( /obj/structure/table/rack, /obj/item/storage/belt/medical, @@ -17126,7 +17118,7 @@ icon_state = "0-2" }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Vf" = ( /obj/machinery/computer/air_control{ dir = 8; @@ -17136,7 +17128,7 @@ sensor_tag = "rust_sensor" }, /turf/simulated/floor/tiled/monotile, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Vg" = ( /obj/machinery/door/airlock/hatch{ icon_state = "closed"; @@ -17145,7 +17137,7 @@ }, /obj/machinery/door/firedoor, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Vh" = ( /obj/structure/cable{ d1 = 1; @@ -17154,7 +17146,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Vi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -17174,7 +17166,7 @@ icon_state = "1-8" }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Vj" = ( /obj/machinery/light/small, /obj/machinery/alarm{ @@ -17183,7 +17175,7 @@ }, /obj/structure/closet/radiation, /turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Vl" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 @@ -17287,7 +17279,7 @@ dir = 4 }, /turf/simulated/wall/r_wall/prepainted, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "VM" = ( /obj/structure/cable{ d1 = 1; @@ -17392,7 +17384,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Wh" = ( /obj/structure/cable{ d1 = 1; @@ -17434,7 +17426,7 @@ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Wk" = ( /obj/machinery/alarm{ dir = 1; @@ -17827,7 +17819,7 @@ dir = 1 }, /turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Xf" = ( /obj/machinery/shield_diffuser, /obj/floor_decal/industrial/warning{ @@ -17837,7 +17829,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Xg" = ( /obj/floor_decal/industrial/warning{ dir = 4; @@ -17846,7 +17838,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Xh" = ( /obj/floor_decal/industrial/warning/corner{ dir = 8; @@ -17854,7 +17846,7 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Xi" = ( /obj/machinery/firealarm{ dir = 1; @@ -17865,7 +17857,7 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "Xk" = ( /obj/machinery/door/blast/regular{ id_tag = "disvent"; @@ -18101,7 +18093,7 @@ /turf/simulated/floor/reinforced{ map_airless = 1 }, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Yg" = ( /obj/structure/table/rack, /obj/floor_decal/industrial/outline/yellow, @@ -18134,13 +18126,13 @@ "Yh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Yj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Yn" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 @@ -18395,7 +18387,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/vacant/prototype/engine) +/area/engineering/prototype/engine) "Zj" = ( /obj/machinery/drone_fabricator/torch, /turf/simulated/floor/tiled/techfloor, @@ -18499,7 +18491,7 @@ dir = 4 }, /turf/simulated/wall/prepainted, -/area/vacant/prototype/control) +/area/engineering/prototype/control) "ZI" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -44933,7 +44925,7 @@ kw lj lY So -pa +qc Ck Uo Zo diff --git a/maps/torch/torch_areas.dm b/maps/torch/torch_areas.dm index a277c891827f5..9d37950b53479 100644 --- a/maps/torch/torch_areas.dm +++ b/maps/torch/torch_areas.dm @@ -772,6 +772,7 @@ /area/vacant name = "\improper Vacant Area" icon_state = "construction" + area_flags = AREA_FLAG_RAD_SHIELDED /area/vacant/armory name = "\improper Vacant Armory" @@ -799,17 +800,6 @@ name = "\improper Auxiliary Monitoring Room" icon_state = "engine_monitoring" -/area/vacant/prototype - req_access = list(access_engine) - -/area/vacant/prototype/control - name = "\improper Prototype Fusion Reactor Control Room" - icon_state = "engine_monitoring" - -/area/vacant/prototype/engine - name = "\improper Prototype Fusion Reactor Chamber" - icon_state = "rust_reactor" - /area/vacant/cargo name = "\improper Requisitions Office" icon_state = "quart" @@ -1548,6 +1538,17 @@ icon_state = "engine_monitoring" req_access = list(access_engine, access_engine_equip) +/area/engineering/prototype + req_access = list(access_engine) + +/area/engineering/prototype/control + name = "\improper Prototype Fusion Reactor Control Room" + icon_state = "engine_monitoring" + +/area/engineering/prototype/engine + name = "\improper Prototype Fusion Reactor Chamber" + icon_state = "rust_reactor" + /area/engineering/engine_smes name = "\improper Engineering SMES" icon_state = "engine_smes" diff --git a/maps/torch/torch_simplemobs.dm b/maps/torch/torch_simplemobs.dm index 2b50f26a00836..3e541f3412e84 100644 --- a/maps/torch/torch_simplemobs.dm +++ b/maps/torch/torch_simplemobs.dm @@ -12,7 +12,7 @@ corpse_outfits = list(/singleton/hierarchy/outfit/job/torch/ert/hostile/suit) /obj/item/clothing/suit/armor/bulletproof/armsman - valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_A, ACCESSORY_SLOT_ARMOR_L, ACCESSORY_SLOT_ARMOR_S) + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA, ACCESSORY_SLOT_ARMOR_ARMS, ACCESSORY_SLOT_ARMOR_LEGS, ACCESSORY_SLOT_ARMOR_STORAGE) accessories = list( /obj/item/clothing/accessory/arm_guards/riot, /obj/item/clothing/accessory/leg_guards/riot, diff --git a/maps/torch/torch_unit_testing.dm b/maps/torch/torch_unit_testing.dm index 4731124bc397b..90ae8fbcd1e5a 100644 --- a/maps/torch/torch_unit_testing.dm +++ b/maps/torch/torch_unit_testing.dm @@ -48,8 +48,6 @@ /area/vacant/bar = NO_SCRUBBER|NO_VENT|NO_APC, /area/vacant = NO_SCRUBBER|NO_VENT|NO_APC, /area/vacant/brig = NO_SCRUBBER|NO_VENT, - /area/vacant/prototype/control = 0, - /area/vacant/prototype/engine = 0, /area/vacant/cargo = NO_SCRUBBER|NO_VENT, /area/vacant/infirmary = NO_SCRUBBER|NO_VENT, /area/vacant/monitoring = NO_SCRUBBER|NO_VENT, diff --git a/mods/_maps/farfleet/code/farfleet_crew.dm b/mods/_maps/farfleet/code/farfleet_crew.dm index 6bf561e8ead4f..f1a34090d3f86 100644 --- a/mods/_maps/farfleet/code/farfleet_crew.dm +++ b/mods/_maps/farfleet/code/farfleet_crew.dm @@ -260,7 +260,7 @@ var/global/const/access_away_iccgn_captain = "ACCESS_ICCGN_CAPTAIN" У вас нет права подниматься на борт судов NanoTrasen или ЦПСС. Помните об этом и не провоцируйте ненужные Конфедерации конфликты. \ Исключением являются те ситуации, когда вы атакованы противником, терпите бедствие или на вашем судне аварийная ситуация." required_language = LANGUAGE_HUMAN_RUSSIAN - whitelisted_species = list(SPECIES_HUMAN) + whitelisted_species = list(SPECIES_HUMAN, SPECIES_VATGROWN) is_semi_antagonist = TRUE min_skill = list(SKILL_BUREAUCRACY = SKILL_TRAINED, SKILL_COMBAT = SKILL_BASIC, diff --git a/mods/_maps/farfleet/maps/farfleet-2.dmm b/mods/_maps/farfleet/maps/farfleet-2.dmm index 573a09a1d56cf..079e77ae67e16 100644 --- a/mods/_maps/farfleet/maps/farfleet-2.dmm +++ b/mods/_maps/farfleet/maps/farfleet-2.dmm @@ -1833,7 +1833,9 @@ dir = 4 }, /obj/floor_decal/industrial/outline/grey, -/obj/machinery/stasis_cage, +/obj/machinery/stasis_cage{ + req_access = list() + }, /turf/simulated/floor/tiled/techfloor/grid, /area/ship/snz) "rS" = ( @@ -2338,7 +2340,9 @@ /turf/simulated/floor/tiled/dark/monotile, /area/ship/farfleet/barracks) "wK" = ( -/obj/machinery/anomaly_container, +/obj/machinery/anomaly_container{ + req_access = list() + }, /obj/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techmaint, /area/ship/farfleet/maintenance/anomaly) @@ -3720,7 +3724,9 @@ dir = 4 }, /obj/floor_decal/industrial/outline/grey, -/obj/machinery/anomaly_container, +/obj/machinery/anomaly_container{ + req_access = list() + }, /turf/simulated/floor/tiled/techfloor/grid, /area/ship/snz) "Kr" = ( @@ -4479,7 +4485,9 @@ /turf/simulated/floor/tiled/freezer, /area/ship/farfleet/crew/freezer) "Se" = ( -/obj/machinery/stasis_cage, +/obj/machinery/stasis_cage{ + req_access = list() + }, /obj/floor_decal/industrial/outline/green, /turf/simulated/floor/tiled/techmaint, /area/ship/farfleet/maintenance/anomaly) diff --git a/mods/_maps/sentinel/code/sentinel_crew.dm b/mods/_maps/sentinel/code/sentinel_crew.dm index 1b3236edbbeee..dec88920a6714 100644 --- a/mods/_maps/sentinel/code/sentinel_crew.dm +++ b/mods/_maps/sentinel/code/sentinel_crew.dm @@ -90,7 +90,7 @@ var/global/const/access_away_cavalry_commander = "ACCESS_CAVALRY_COMMANDER" Вам крайне нежелательно приближаться к кораблям и станциям с опозновательными знаками без разрешения от командования группировкой. \ Исключением являются те ситуации, когда вы терпите бедствие или на вашем судне аварийная ситуация." required_language = LANGUAGE_HUMAN_EURO - whitelisted_species = list(SPECIES_HUMAN) + whitelisted_species = list(SPECIES_HUMAN, SPECIES_VATGROWN) min_skill = list(SKILL_COMBAT = SKILL_BASIC, SKILL_WEAPONS = SKILL_BASIC, SKILL_HAULING = SKILL_BASIC, diff --git a/mods/_maps/sentinel/code/sentinel_shuttle.dm b/mods/_maps/sentinel/code/sentinel_shuttle.dm index 88f5ab9d6d98f..e3274c43d2026 100644 --- a/mods/_maps/sentinel/code/sentinel_shuttle.dm +++ b/mods/_maps/sentinel/code/sentinel_shuttle.dm @@ -44,6 +44,6 @@ landmark_tag = "nav_hangar_reaperalt" /obj/shuttle_landmark/reaper/dock - name = "NSV Sierra Dock" + name = "Fourth Deck Fore Dock" landmark_tag = "nav_reaper_dock" docking_controller = "nuke_shuttle_dock_airlock" diff --git a/mods/_master_files/code/game/objects/structures/signs.dm b/mods/_master_files/code/game/objects/structures/signs.dm new file mode 100644 index 0000000000000..93d6b8b35d19a --- /dev/null +++ b/mods/_master_files/code/game/objects/structures/signs.dm @@ -0,0 +1,40 @@ +/obj/structure/sign/solgov + name = "\improper SolGov Seal" + desc = "Центральное Правительство Солнечной системы, обычно именуемое ЦПСС, является федеративной республикой, состоящей из многочисленных человеческих государств во многих звездных системах." + icon = 'maps/torch/icons/obj/solgov-decals.dmi' + icon_state = "solgovseal" + +/obj/structure/sign/nanotrasen + name = "\improper Nanotrasen Logo" + desc = "Логотип корпорации будущего. Нано - отражение технологий, Трэйзен - Фамилия генерального директора корпорации." + icon = 'packs/infinity/icons/obj/decals.dmi' + icon_state = "NT" + +/obj/structure/sign/spider_clan + name = "\improper Spider Clan" + desc = "Клан паука - органиазация, в которой обучаются лучшие наемные убийцы изведанного космоса. Вероÿтно, мне повезло, если я знаю это." + icon = 'packs/infinity/icons/obj/decals.dmi' + icon_state = "spider_clan" + +/obj/structure/sign/fifthfleet + name = "\improper Fifth Fleet" + desc = "Недавно созданный, оборудованный и модифицированный Пятый Флот был введен в 2297 г Ассамблеями для того, чтобы действовать как Силы Быстрого Реагирования. Хотя он еще невелик, в Пятый Флот входят одни из самых ярких умов Сил Обороны и оснащен новейшими технологиями." + icon = 'packs/infinity/icons/obj/decals.dmi' + icon_state = "fifthfleet" + +/obj/structure/sign/fifthfleet/small + name = "\improper Fifth Fleet" + desc = "Недавно созданный, оборудованный и модифицированный Пятый Флот был введен в 2297 г Ассамблеями для того, чтобы действовать как Силы Быстрого Реагирования. Хотя он еще невелик, в Пятый Флот входят одни из самых ярких умов Сил Обороны и оснащен новейшими технологиями." + icon = 'packs/infinity/icons/obj/decals.dmi' + icon_state = "fifthfleet_small" + +/singleton/poster/number4 + icon_state = "poster4" + name = "Lusty Xeno Specie" + desc = "An another one poster about some pornsite with potential new sexual xeno species... \ + Who the fuck forget it at the space vessel? May be we haven't enought time with families, but we aren't so mad... \ + Or we are?" + +/obj/structure/sign/poster/number4 + icon_state = "poster4" + poster_type = /singleton/poster/number4 diff --git a/mods/antagonists/_antagonists.dme b/mods/antagonists/_antagonists.dme index 911fe25f76179..21f28a427d881 100644 --- a/mods/antagonists/_antagonists.dme +++ b/mods/antagonists/_antagonists.dme @@ -9,7 +9,6 @@ #include "code/revolutionary.dm" #include "code/operative.dm" #include "code/traitor.dm" -#include "code/teleportation.dm" #include "code/uplink.dm" #endif diff --git a/mods/antagonists/code/mercenary.dm b/mods/antagonists/code/mercenary.dm index f84a1b67ca25e..c5f7fd4cc92a6 100644 --- a/mods/antagonists/code/mercenary.dm +++ b/mods/antagonists/code/mercenary.dm @@ -1,3 +1,68 @@ +/obj/item/storage/dufflebag/heavy/syndie + name = "Heavy gorlex bag" + desc = "it looks too bulky and bloody" + icon = 'mods/antagonists/icons/obj/syndie_backpacks.dmi' + item_icons = list( + slot_l_hand_str = 'icons/mob/onmob/items/lefthand_backpacks.dmi', + slot_r_hand_str = 'icons/mob/onmob/items/righthand_backpacks.dmi', + slot_back_str = 'icons/mob/onmob/onmob_back.dmi' + ) + icon_state = "syndiepacks" + item_state = null + item_state_slots = list(slot_l_hand_str = "duffle_syndie", slot_r_hand_str = "duffle_syndie", slot_back_str = "duffle_syndie") + w_class = ITEM_SIZE_HUGE + max_storage_space = DEFAULT_BACKPACK_STORAGE + 30 + slot_flags = SLOT_BACK + max_w_class = ITEM_SIZE_HUGE + open_sound = 'sound/effects/storage/unzip.ogg' + contents_allowed = list(/obj/item/clothing/suit/armor/pcarrier/merc, + /obj/item/clothing/head/helmet/merc, + /obj/item/clothing/mask/gas/syndicate, + /obj/item/tank/oxygen_emergency_double, + /obj/item/reagent_containers/spray/chemsprayer/bioterror, + /obj/item/reagent_containers/glass/beaker/insulated/large/bioterror, + /obj/item/grenade/chem_grenade/bioterror, + /obj/item/gun/projectile/pistol/optimus, + /obj/item/clothing/suit/space/void/merc/heavy/prepared, + /obj/item/flamethrower/full/loaded, + /obj/item/reagent_containers/glass/beaker/insulated/large/napalm, + /obj/item/grenade/chem_grenade/fuelspray, + /obj/item/gun/projectile/automatic/assault_rifle, + /obj/item/grenade/frag/high_yield, + /obj/item/card/emag, + /obj/item/storage/box/syndie_kit/chameleon, + /obj/item/storage/box/syndie_kit/silenced, + /obj/item/storage/box/syndie_kit/spy, + /obj/item/clothing/mask/chameleon/voice, + /obj/item/device/cosmetic_surgery_kit, + /obj/item/stamp/chameleon, + /obj/item/storage/box/syndie_kit/imp_freedom, + /obj/item/device/uplink_service/fake_crew_announcement, + /obj/item/clothing/under/det, + /obj/item/clothing/suit/storage/leather_jacket/armored, + /obj/item/gun/projectile/heavysniper, + /obj/item/storage/box/ammo/sniperammo, + /obj/item/clothing/glasses/thermal/syndi, + /obj/item/gun/projectile/shotgun/magshot, + /obj/item/ammo_magazine/shotgunmag/shot, + /obj/item/ammo_magazine/shotgunmag, + /obj/item/plastique, + /obj/item/device/flashlight/flashdark, + /obj/item/storage/firstaid/combat, + /obj/item/storage/firstaid/surgery, + /obj/item/defibrillator/compact/combat/loaded, + /obj/item/clothing/suit/space/void/merc/heavy/prepared, + /obj/item/gun/projectile/automatic/l6_saw, + /obj/item/ammo_magazine/box/machinegun, + /obj/item/shield/energy, + /obj/item/rig/light/hacker/runner, + /obj/item/modular_computer/laptop/preset/custom_loadout/advanced, + /obj/item/modular_computer/tablet/preset/custom_loadout/advanced, + /obj/item/modular_computer/pda/syndicate, + /obj/item/clothing/glasses/hud/it, + /obj/item/clothing/mask/ai, + /obj/item/device/multitool/hacktool, + ) /datum/uplink_category/mercenary name = "Mercenary Kits" @@ -9,76 +74,76 @@ Mercenary Kits Used for quick dress-up. Also comes with several discount */ - +// SIERRA EDIT /datum/uplink_item/item/mercenary/bioterror name = "Bioterror Kit" desc = "Kit, filled with bioweaponery. It contains: Voidsuit, sprayer with bioterror mix, bioterror grenade and military pistol. Don't forget to turn your internals on!" item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/bioterror + path = /obj/item/storage/backpack/dufflebag/syndie/bioterror /datum/uplink_item/item/mercenary/pyro name = "Pyro Kit" desc = "Kit, used for making FIRES! It contains: Special pyro voidsuit, flamethrower with 4 napalm canisters, 2 incendiary grenades and military pistol." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/pyro + path = /obj/item/storage/dufflebag/heavy/syndie/pyro /datum/uplink_item/item/mercenary/classic name = "Classic Kit" desc = "Old and faithful kit. It contains: Heavy armor, assault rifle, cryptographic sequencer and grenade." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/classic + path = /obj/item/storage/dufflebag/heavy/syndie/classic /datum/uplink_item/item/mercenary/stealthy name = "Stealthy Kit" desc = "A special kit for stealthy operations. It contains: Chameleon kit, fake crew annoncement, freedom implant, cryptographic sequencer, plastic surgery kit, silensed pistol and clerical kit." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/stealthy + path = /obj/item/storage/dufflebag/heavy/syndie/stealthy /datum/uplink_item/item/mercenary/sniper name = "Sniper Kit" desc = "Fashionable kit for fashionable operatives. It contains: Cool-looking armor vest, disguised as a suit, thermal googles and sniper rifle with ammo." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/sniper + path = /obj/item/storage/dufflebag/heavy/syndie/sniper /datum/uplink_item/item/mercenary/breacher name = "Breacher Kit" desc = "You're leading the assault. It contains: Heavy armor, 3 C-4 explosives, drum-fed shotgun and cryptographic sequencer." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/breacher + path = /obj/item/storage/dufflebag/heavy/syndie/breacher /datum/uplink_item/item/mercenary/saboteur name = "Saboteur Kit" desc = "You want to sabotage ship systems? This kit is specially for you. It contains: Heavy armor, military pistol, flashdark, chameleon projector, cryptographic sequencer and some C-4 explosives." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/saboteur + path = /obj/item/storage/dufflebag/heavy/syndie/saboteur /datum/uplink_item/item/mercenary/medic name = "Field Medic Kit" desc = "This kit can provide almost everything for combat medic. It contains: Heavy armor, military pistol, combat medkit, combat defibrilator and surgery kit." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/medic + path = /obj/item/storage/dufflebag/heavy/syndie/medic /datum/uplink_item/item/mercenary/heavy name = "Heavy Kit" desc = "This kit is for heavy gunners. It contains: Heavy armor, energy shield, grenade and L6 Saw machinegun." item_cost = DEFAULT_TELECRYSTAL_AMOUNT * 2 antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/heavy + path = /obj/item/storage/dufflebag/heavy/syndie/heavy /datum/uplink_item/item/mercenary/netrunner name = "Netrunner Kit" desc = "This kit is can provide some help in hacking of ship systems. It contains: Hacker rig, camera MIU, some computers and cryptographic sequencer." item_cost = DEFAULT_TELECRYSTAL_AMOUNT antag_roles = list(MODE_MERCENARY) - path = /obj/structure/closet/crate/mercenary/netrunner + path = /obj/item/storage/dufflebag/heavy/syndie/netrunner // What's inside the box @@ -88,14 +153,13 @@ Used for quick dress-up. Also comes with several discount "crate_stripes" = COLOR_MAROON ) -/obj/structure/closet/crate/mercenary +/*/obj/structure/closet/crate/mercenary name = "gorlex marauders crate" desc = "A mercenary equipment crate." +*/ +/obj/item/storage/backpack/dufflebag/syndie/bioterror -/obj/structure/closet/crate/mercenary/bioterror - -/obj/structure/closet/crate/mercenary/bioterror/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/armor/pcarrier/merc, /obj/item/clothing/head/helmet/merc, /obj/item/clothing/mask/gas/syndicate, @@ -106,10 +170,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/gun/projectile/pistol/optimus ) -/obj/structure/closet/crate/mercenary/pyro +/obj/item/storage/dufflebag/heavy/syndie/pyro -/obj/structure/closet/crate/mercenary/pyro/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/space/void/merc/heavy/prepared, /obj/item/clothing/mask/gas/syndicate, /obj/item/tank/oxygen_emergency_double, @@ -119,10 +182,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/gun/projectile/pistol/optimus ) -/obj/structure/closet/crate/mercenary/classic +/obj/item/storage/dufflebag/heavy/syndie/classic -/obj/structure/closet/crate/mercenary/classic/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/armor/pcarrier/merc, /obj/item/clothing/head/helmet/merc, /obj/item/gun/projectile/automatic/assault_rifle, @@ -130,10 +192,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/card/emag ) -/obj/structure/closet/crate/mercenary/stealthy +/obj/item/storage/dufflebag/heavy/syndie/stealthy -/obj/structure/closet/crate/mercenary/stealthy/WillContain() - return list( + startswith = list( /obj/item/storage/box/syndie_kit/chameleon = 2, /obj/item/storage/box/syndie_kit/silenced, /obj/item/storage/box/syndie_kit/spy, @@ -146,10 +207,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/card/emag ) -/obj/structure/closet/crate/mercenary/sniper +/obj/item/storage/dufflebag/heavy/syndie/sniper -/obj/structure/closet/crate/mercenary/sniper/WillContain() - return list( + startswith = list( /obj/item/clothing/under/det, /obj/item/clothing/suit/storage/leather_jacket/armored, /obj/item/gun/projectile/heavysniper, @@ -157,10 +217,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/clothing/glasses/thermal/syndi ) -/obj/structure/closet/crate/mercenary/breacher +/obj/item/storage/dufflebag/heavy/syndie/breacher -/obj/structure/closet/crate/mercenary/breacher/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/armor/pcarrier/merc, /obj/item/clothing/head/helmet/merc, /obj/item/gun/projectile/shotgun/magshot, @@ -170,10 +229,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/card/emag ) -/obj/structure/closet/crate/mercenary/saboteur +/obj/item/storage/dufflebag/heavy/syndie/saboteur -/obj/structure/closet/crate/mercenary/saboteur/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/armor/pcarrier/merc, /obj/item/clothing/head/helmet/merc, /obj/item/device/flashlight/flashdark, @@ -183,10 +241,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/card/emag ) -/obj/structure/closet/crate/mercenary/medic +/obj/item/storage/dufflebag/heavy/syndie/medic -/obj/structure/closet/crate/mercenary/medic/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/armor/pcarrier/merc, /obj/item/clothing/head/helmet/merc, /obj/item/storage/firstaid/combat, @@ -195,10 +252,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/gun/projectile/pistol/optimus, ) -/obj/structure/closet/crate/mercenary/heavy +/obj/item/storage/dufflebag/heavy/syndie/heavy -/obj/structure/closet/crate/mercenary/heavy/WillContain() - return list( + startswith = list( /obj/item/clothing/suit/space/void/merc/heavy/prepared, /obj/item/gun/projectile/automatic/l6_saw, /obj/item/ammo_magazine/box/machinegun = 3, @@ -206,10 +262,9 @@ Used for quick dress-up. Also comes with several discount /obj/item/shield/energy ) -/obj/structure/closet/crate/mercenary/netrunner +/obj/item/storage/dufflebag/heavy/syndie/netrunner -/obj/structure/closet/crate/mercenary/netrunner/WillContain() - return list( + startswith = list( /obj/item/rig/light/hacker/runner, /obj/item/modular_computer/laptop/preset/custom_loadout/advanced, /obj/item/modular_computer/tablet/preset/custom_loadout/advanced, @@ -219,7 +274,7 @@ Used for quick dress-up. Also comes with several discount /obj/item/device/multitool/hacktool, /obj/item/card/emag = 2 ) - +// SIERRA EDIT-END // Items diff --git a/mods/antagonists/code/teleportation.dm b/mods/antagonists/code/teleportation.dm index 00567d20fd38a..25c87b66c7efd 100644 --- a/mods/antagonists/code/teleportation.dm +++ b/mods/antagonists/code/teleportation.dm @@ -1,15 +1 @@ -/proc/animated_teleportation(atom/movable/target, atom/anchor) - if(ismob(target)) - to_chat(target, SPAN_WARNING("You feel like something pulling you in bluespace.")) - var/obj/temporary/A = new(get_turf(target), 24.5, 'mods/antagonists/icons/effects/bs_silk.dmi', "silc_teleport_back") - target.set_dir(2) - target.forceMove(A) - addtimer(new Callback(GLOBAL_PROC, GLOBAL_PROC_REF(animated_teleportation_ending), target, anchor), 23) - -/proc/animated_teleportation_ending(atom/movable/target, atom/anchor) - target.set_dir(2) - target.forceMove(new /obj/temporary(get_turf(anchor), 26.5, 'mods/antagonists/icons/effects/bs_silk.dmi', "silc_get_hub")) - addtimer(new Callback(GLOBAL_PROC, GLOBAL_PROC_REF(finalize_animated_teleportation), target, anchor), 24) - -/proc/finalize_animated_teleportation(atom/movable/target, atom/anchor) - target.dropInto(get_turf(anchor)) +// delete diff --git a/mods/antagonists/icons/obj/syndie_backpacks.dmi b/mods/antagonists/icons/obj/syndie_backpacks.dmi new file mode 100644 index 0000000000000..21633c6af99d7 Binary files /dev/null and b/mods/antagonists/icons/obj/syndie_backpacks.dmi differ diff --git a/mods/colony_fractions/README.md b/mods/colony_fractions/README.md new file mode 100644 index 0000000000000..bdd0b98f87ae6 --- /dev/null +++ b/mods/colony_fractions/README.md @@ -0,0 +1,79 @@ + +#### Список PRов: + +null + + + +## Типы колоний + +ID мода: EXAMPLE + + +### Описание мода + +Этот мод добавляет ТИПЫ колоний - Колония Нт, Колония ЦПСС, Колония ГКК, Независимая колония. +Колонии отличаются выдаваемым оружием, бронёй, флагами и взаимодействием в раунде. + + +### Изменения *кор кода* + +- Отсутствуют + + +### Оверрайды + +- Отсутствуют + + +### Дефайны + +- Отсутствуют + + +### Используемые файлы, не содержащиеся в модпаке + +- Отсутствуют + + +### Авторы: + +Shegar - основной код +UEDHighCommand - текстовка, помощь с тестами + diff --git a/mods/colony_fractions/_colony_types.dm b/mods/colony_fractions/_colony_types.dm new file mode 100644 index 0000000000000..0298f838d36a8 --- /dev/null +++ b/mods/colony_fractions/_colony_types.dm @@ -0,0 +1,4 @@ +/singleton/modpack/colony_types + name = "Типы колоний" + desc = "Этот мод добавляет типы колоний, углубляющий и развивающий геймплей на колонии и взаимодействие оной с другими сторонами событий." + author = "Shegar" diff --git a/mods/colony_fractions/_colony_types.dme b/mods/colony_fractions/_colony_types.dme new file mode 100644 index 0000000000000..250630981cdac --- /dev/null +++ b/mods/colony_fractions/_colony_types.dme @@ -0,0 +1,11 @@ +#ifndef MODPACK_COLONY_TYPES +#define MODPACK_COLONY_TYPES + +#include "_colony_types.dm" +// Далее просто включай свой код +// #include "code/something.dm" + +#include "code/first_colony.dm" +#include "code/second_colony.dm" +#include "code/admin_button.dm" +#endif diff --git a/mods/colony_fractions/code/admin_button.dm b/mods/colony_fractions/code/admin_button.dm new file mode 100644 index 0000000000000..2e9276a676c54 --- /dev/null +++ b/mods/colony_fractions/code/admin_button.dm @@ -0,0 +1,13 @@ +/datum/admins/proc/map_template_choose_colony_type() + set category = "Fun" + set desc = "Choose, which type will be next spawned colony." + set name = "Map Template - Choose colony type" + + if(!check_rights(R_SPAWN)) + return + + var/list/types = list("ГКК","ЦПСС","НАНОТРЕЙЗЕН","НЕЗАВИСИМАЯ", "СЛУЧАЙНЫЙ") + GLOB.choose_colony_type = input(usr, "Выберите, какой тип колонии будет при следующем спавне","Выберите тип колонии") as null|anything in types + if (!GLOB.choose_colony_type) + GLOB.choose_colony_type = "СЛУЧАЙНЫЙ" + log_and_message_admins("выбрал тип колонии: [GLOB.choose_colony_type] как следующий тип колонии при её спавне.") diff --git a/mods/colony_fractions/code/first_colony.dm b/mods/colony_fractions/code/first_colony.dm new file mode 100644 index 0000000000000..772c4f32ab16e --- /dev/null +++ b/mods/colony_fractions/code/first_colony.dm @@ -0,0 +1,237 @@ +GLOBAL_VAR_INIT(last_colony_type, "СЛУЧАЙНЫЙ") +GLOBAL_VAR_INIT(choose_colony_type, "СЛУЧАЙНЫЙ") //Педальки выбирают, какой тип колонии будет заспавнен + + +/singleton/submap_archetype/playablecolony + crew_jobs = list(/datum/job/submap/colonist, /datum/job/submap/colonist_leader) + +/datum/job/submap/colonist_leader + title = "Colonist Leader" + info = "You are a Colonist Leader, living on the rim of explored. Control your colonist, defend the interests of the colony." + total_positions = 1 + outfit_type = /singleton/hierarchy/outfit/job/colonist + + +/datum/job/submap/colonist + supervisors = "Colonist Leader" + + +/singleton/hierarchy/outfit/job/colonist/leader + name = OUTFIT_JOB_NAME("Colonist Leader") + id_types = list(/obj/item/card/id/merchant/colony_leader) + +/obj/item/card/id/merchant/colony_leader + name = "Colonist Leader ID" + desc = "The card issued to the leaders of the colony allows to understand who really is the leader." + access = list(access_merchant) + color = COLOR_OFF_WHITE + detail_color = COLOR_BEIGE + +/datum/map_template/ruin/exoplanet/playablecolony/load(turf/T, centered=FALSE) + if(GLOB.choose_colony_type == "СЛУЧАЙНЫЙ") + var/number = rand(1,100) + if(number < 30 || number == 30) + GLOB.last_colony_type = "НАНОТРЕЙЗЕН" + else if(number < 50 || number == 50) + GLOB.last_colony_type = "ГКК" + else if(number < 75 || number == 75) + GLOB.last_colony_type = "ЦПСС" + else if(number < 100 || number == 100) + GLOB.last_colony_type = "НЕЗАВИСИМАЯ" + else + GLOB.last_colony_type = GLOB.choose_colony_type + log_and_message_admins("Начал спавн колонии следующего типа: [GLOB.last_colony_type].") + + .=..() + colony_inform() + +/datum/map_template/ruin/exoplanet/playablecolony/proc/colony_inform() + //Информирует мир о типе колонии + var/message // <- То, что будем отправлять в оповещение + if(GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + message += "

[FONT_LARGE("NSV Sierra Communications Report:")]
" + message += "
Коммуникационным реле ИКН \"Сьерра\" было принято коммьюнике, указывающие на присутствие в текущей системе аванпоста корпорации NanoTrasen. Для удобства членов командования объекта в данном отчете приводятся стандартные процедуры для взаимодействия с передовым аванпостом корпорации:

" + message += "● Разрешены и рекомендуются любые торговые и обменные операции имеющихся в наличии ресурсов, артефактов и научных данных обоих подразделений.
" + message += "● В случае чрезвычайной ситуации на поверхности, персоналу аванпоста разрешена эвакуация на борт ИКН \"Сьерра\"; аналогично, в случае необходимости эвакуации судна, персонал может быть транспортирован на территорию аванпоста.
" + message += "● Взаимное посещение объектов в условиях штатной ситуации осуществляется свободно; при необходимости, ограничительные меры могут быть установлены совместным решением членов командования ИКН \"Сьерра\" и командования аванпоста.
" + message += "
Аванпост является важным активом корпорации NanoTrasen - ожидается, что ему будет оказана вся необходимая поддержка, не ставящая под удар основную миссию судна.
" + post_comm_message("NSV Sierra Comms Relay", message) + minor_announcement.Announce(message = "Коммуникационным реле ИКН \"Сьерра\" было принято коммьюнике, указывающие на присутствие в текущей системе аванпоста корпорации NanoTrasen. Дальнейшие инструкции направлены на консоль коммуникации.") + +/obj/random/colony_paper/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/paper/colony_nt) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/paper/colony_gkk) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/paper/colony_sol) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/paper/colony_ind) + +/obj/item/paper/colony_nt + name = "Private colonization license" + info = "

Лицензия на частную колониальную деятельность

Настоящей Лицензией утверждается право NanoTrasen Incorporated, в лице представляющих её сотрудников, проживающих на территории колониального поселения, на размещение исследовательского колониального поселения, а также владение и управление им и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей Лицензией заверяется, что колониальное поселение и прилегающие ему области являются частной территорией NanoTrasen Incorporated. Право присутствия на территории колониального поселения тех или иных лиц определяется по усмотрению представителей NanoTrasen Incorporated. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел посольства ЦПСС в системе Траян; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей Лицензией утверждается, что безопасность данного поселения обеспечивается собственными силами NanoTrasen Incorporated. Сотрудники корпорации и иные лица, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и отказываются от каких-либо претензий в отношении вооруженных сил ЦПСС по вопросам, сопряженным с обеспечением безопасности колонии. Данное согласие должно быть закреплено в письменном виде и храниться в архиве административной станции NanoTrasen \"Легион\".

" + stamps = "
This paper has been stamped with the personal seal of Horace Fields, Supreme Judge of the Sol System.
This paper has been stamped with the stamp of Central Command." + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony_gkk + name = "ICCG colonial charter" + info = "

Хартия колониального поселения

Настоящей Хартией утверждается право Независимой Колониальной Конфедерации Гильгамеша, в лице представляющих его граждан, проживающих на территории колониального поселения, на владение и управление колониальным поселением и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей хартией заверяется, что колониальное поселение и прилегающие ему области являются суверенной территорией ГКК. Граждане ГКК, а также лица, которым разрешено пребывание на территории ГКК, имеют все права и свободы, предоставляемые им Конфедерацией, находясь на территории колониального поселения; аналогично, лица, объявленные персонами нон-гранта решением Верховной Коллегии Судей, не имеют права приближаться к колониальному поселению. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел представительства ГКК в системе Денебола; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей хартией утверждается, что безопасность данного поселения обеспечивается силами самих колонистов, а также силами действующих единиц Пионерского Корпуса ГКК. Колонисты, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и соглашаются самостоятельно обеспечивать свою безопасность в случае, если силы Пионерского Корпуса не могут своевременно отреагировать на полученный сигнал бедствия. Данное согласие должно быть закреплено в письменном виде и храниться в архиве представительства ГКК в системе Денебола.

" + stamps = "
This paper has been stamped by ICCG Ministry of Colonial Development and Deep Space Exploration." + language = LANGUAGE_HUMAN_RUSSIAN + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony_sol + name = "SCG colonial charter" + info = "

Хартия колониального поселения

Настоящей Хартией утверждается право Центрального Правительства Солнечной Системы, в лице представляющих его граждан, проживающих на территории колониального поселения, на владение и управление колониальным поселением и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей хартией заверяется, что колониальное поселение и прилегающие ему области являются суверенной территорией ЦПСС. Граждане ЦПСС, а также лица, которым разрешено пребывание на территории ЦПСС, имеют все права и свободы, предоставляемые им Центральным Правительством, находясь на территории колониального поселения; аналогично, лица, объявленные персонами нон-гранта решением Верховного Суда Солнечной Системы, не имеют права приближаться к колониальному поселению. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел посольства ЦПСС в системе Траян; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей хартией утверждается, что безопасность данного поселения обеспечивается силами самих колонистов, а также силами патрульных единиц Пятого Флота Центрального Правительства Солнечной Системы. Колонисты, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и соглашаются самостоятельно обеспечивать свою безопасность в случае, если силы Пятого Флота не могут своевременно отреагировать на полученный сигнал бедствия. Данное согласие должно быть закреплено в письменном виде и храниться в архиве посольства ЦПСС в системе Траян.

" + stamps = "
This paper has been stamped with the personal seal of Horace Fields, Supreme Judge of the Sol System." + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony_ind + name = "Colonization plans" + info = "Документ содержит весьма исчерпывающий план по колонизации данной экзопланеты, включающий перечень необходимого инвентаря, финансирования и инструкции для колонистов. В глаза бросаются многочисленные упоминания договоров о финансировании с теми или иными корпорациями и некой организации, именуемой \"Альянсом Фронтира\"." + +//ФЛАГ + +/obj/random/colony_flag/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/structure/sign/nanotrasen) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/structure/sign/iccg_colony) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/structure/sign/icarus_solgov) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/structure/sign/colony) + + + +//БРОНИКИ + +/obj/random/colony_armor/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/clothing/suit/armor/laserproof, + /obj/item/clothing/suit/armor/vest/nt, + /obj/item/clothing/suit/armor/vest/old/security, + /obj/item/clothing/suit/armor/pcarrier/navy, + /obj/item/clothing/suit/armor/riot, + /obj/item/clothing/suit/armor/pcarrier/medium/nt + ) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/clothing/suit/armor/laserproof, + /obj/item/clothing/suit/armor/pcarrier/tactical_colony, + /obj/item/clothing/suit/armor/riot, + /obj/item/clothing/suit/armor/pcarrier/tan, + /obj/item/clothing/suit/armor/pcarrier/tan/tactical, + /obj/item/clothing/suit/armor/pcarrier/troops_colony, + /obj/item/clothing/suit/armor/pcarrier/troops_colony/heavy, + /obj/item/clothing/suit/armor/pcarrier/navy + ) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/clothing/suit/armor/laserproof, + /obj/item/clothing/suit/armor/pcarrier/medium/sol_colony, + /obj/item/clothing/suit/armor/pcarrier/tan/tactical, + /obj/item/clothing/suit/armor/pcarrier/tan, + /obj/item/clothing/suit/armor/pcarrier/troops_colony, + /obj/item/clothing/suit/armor/vest/solgov_colony, + /obj/item/clothing/suit/armor/pcarrier/troops_colony/heavy, + /obj/item/clothing/suit/armor/riot + ) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/clothing/suit/armor/swat/officer, + /obj/item/clothing/suit/armor/vest/blueshift, + /obj/item/clothing/suit/armor/vest/press, + /obj/item/clothing/suit/armor/vest/detective, + /obj/item/clothing/suit/armor/vest/old, + /obj/item/clothing/suit/armor/laserproof, + /obj/item/clothing/suit/armor/pcarrier/merc + ) + + + + +//ШЛЕМА + +/obj/random/colony_helmet/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/clothing/head/helmet, + /obj/item/clothing/head/helmet/ablative, + /obj/item/clothing/head/helmet/riot, + /obj/item/clothing/head/helmet/nt, + /obj/item/clothing/head/helmet/nt/guard, + /obj/item/clothing/head/helmet/ballistic, + /obj/item/clothing/head/helmet/pcrc + + ) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/clothing/head/helmet, + /obj/item/clothing/head/helmet/ablative, + /obj/item/clothing/head/helmet/riot, + /obj/item/clothing/head/helmet/augment, + /obj/item/clothing/head/helmet/ballistic, + /obj/item/clothing/head/helmet/tactical + ) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/clothing/head/helmet, + /obj/item/clothing/head/helmet/ablative, + /obj/item/clothing/head/helmet/riot, + /obj/item/clothing/head/helmet/solgov_colony/pilot, + /obj/item/clothing/head/helmet/solgov_colony/pilot/fleet, + /obj/item/clothing/head/helmet/solgov_colony, + /obj/item/clothing/head/helmet/ballistic, + /obj/item/clothing/head/helmet/pcrc, + /obj/item/clothing/head/helmet/solgov_colony/command, + /obj/item/clothing/head/helmet/tactical, + /obj/item/clothing/head/helmet/solgov_colony/security + ) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/clothing/head/helmet, + /obj/item/clothing/head/helmet/ablative, + /obj/item/clothing/head/helmet/riot, + /obj/item/clothing/head/helmet/nt/blueshift, + /obj/item/clothing/head/helmet/old_confederation, + /obj/item/clothing/head/helmet/old_special_ops, + /obj/item/clothing/head/helmet/merc, + /obj/item/clothing/head/helmet/old_commonwealth, + /obj/item/clothing/head/helmet/swat + ) +//ПП + +/obj/random/colony_smg/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/gun/projectile/automatic/nt41_colony) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/gun/projectile/automatic/merc_smg) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/gun/projectile/automatic/sec_smg) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/gun/projectile/automatic/merc_smg, + /obj/item/gun/projectile/automatic/sec_smg, + /obj/item/gun/projectile/automatic/machine_pistol/usi, + /obj/item/gun/projectile/automatic + ) + +//АВТОМАТ + +/obj/random/colony_rifle/spawn_choices() + if(GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/gun/projectile/automatic/bullpup_rifle, + /obj/item/gun/projectile/automatic/bullpup_rifle/light + ) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/gun/projectile/automatic/assault_rifle, + /obj/item/gun/projectile/automatic/assault_rifle/heltek_colony, + /obj/item/gun/projectile/automatic/mbr_colony, + /obj/item/gun/projectile/automatic/mr735_colony) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/gun/projectile/automatic/bullpup_rifle, + /obj/item/gun/projectile/automatic/bullpup_rifle/light + ) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/gun/projectile/automatic/assault_rifle, + /obj/item/gun/projectile/automatic/assault_rifle/heltek_colony, + /obj/item/gun/projectile/automatic/mbr_colony, + /obj/item/gun/projectile/automatic/battlerifle + ) diff --git a/mods/colony_fractions/code/second_colony.dm b/mods/colony_fractions/code/second_colony.dm new file mode 100644 index 0000000000000..d43d365f29c62 --- /dev/null +++ b/mods/colony_fractions/code/second_colony.dm @@ -0,0 +1,86 @@ +/singleton/submap_archetype/playablecolony2 + crew_jobs = list(/datum/job/submap/colonist, /datum/job/submap/ship_leader) + +/datum/job/submap/ship_leader + title = "Ship Leader" + info = "You are a Colonist Leader, living on the rim of explored. Control your colonist, defend the interests of the landed ship." + total_positions = 1 + outfit_type = /singleton/hierarchy/outfit/job/colonist + + +/datum/job/submap/colonist2 + supervisors = "Colonist Leader" + + +/singleton/hierarchy/outfit/job/colonist/leader + name = OUTFIT_JOB_NAME("Colonist Leader") + id_slot = slot_wear_id + id_types = list(/obj/item/card/id/merchant/colony_leader) + + +/datum/map_template/ruin/exoplanet/playablecolony2/load(turf/T, centered=FALSE) + if(GLOB.choose_colony_type == "СЛУЧАЙНЫЙ") + var/number = rand(1,100) + if(number < 30 || number == 30) + GLOB.last_colony_type = "НАНОТРЕЙЗЕН" + else if(number < 50 || number == 50) + GLOB.last_colony_type = "ГКК" + else if(number < 75 || number == 75) + GLOB.last_colony_type = "ЦПСС" + else if(number < 100 || number == 100) + GLOB.last_colony_type = "НЕЗАВИСИМАЯ" + else + GLOB.last_colony_type = GLOB.choose_colony_type + log_and_message_admins("Начал спавн колонии следующего типа: [GLOB.last_colony_type].") + + .=..() + colony_inform() + +/datum/map_template/ruin/exoplanet/playablecolony2/proc/colony_inform() + //Информирует мир о типе колонии + var/message // <- То, что будем отправлять в оповещение + if(GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + message += "

[FONT_LARGE("NSV Sierra Communications Report:")]
" + message += "
Коммуникационным реле ИКН \"Сьерра\" было принято коммьюнике, указывающие на присутствие в текущей системе аванпоста корпорации NanoTrasen. Для удобства членов командования объекта в данном отчете приводятся стандартные процедуры для взаимодействия с передовым аванпостом корпорации:

" + message += "● Разрешены и рекомендуются любые торговые и обменные операции имеющихся в наличии ресурсов, артефактов и научных данных обоих подразделений.
" + message += "● В случае чрезвычайной ситуации на поверхности, персоналу аванпоста разрешена эвакуация на борт ИКН \"Сьерра\"; аналогично, в случае необходимости эвакуации судна, персонал может быть транспортирован на территорию аванпоста.
" + message += "● Взаимное посещение объектов в условиях штатной ситуации осуществляется свободно; при необходимости, ограничительные меры могут быть установлены совместным решением членов командования ИКН \"Сьерра\" и командования аванпоста.
" + message += "
Аванпост является важным активом корпорации NanoTrasen - ожидается, что ему будет оказана вся необходимая поддержка, не ставящая под удар основную миссию судна.
" + post_comm_message("NSV Sierra Comms Relay", message) + minor_announcement.Announce(message = "Коммуникационным реле ИКН \"Сьерра\" было принято коммьюнике, указывающие на присутствие в текущей системе аванпоста корпорации NanoTrasen. Дальнейшие инструкции направлены на консоль коммуникации.") + +/obj/random/colony2_paper/spawn_choices() + if (GLOB.last_colony_type == "НАНОТРЕЙЗЕН") + return list(/obj/item/paper/colony2_nt) + else if(GLOB.last_colony_type == "ГКК") + return list(/obj/item/paper/colony2_gkk) + else if(GLOB.last_colony_type == "ЦПСС") + return list(/obj/item/paper/colony2_sol) + else if(GLOB.last_colony_type == "НЕЗАВИСИМАЯ") + return list(/obj/item/paper/colony2_ind) + +/obj/item/paper/colony2_nt + name = "Private colonization license" + info = "

Лицензия на частную колониальную деятельность

Настоящей Лицензией утверждается право NanoTrasen Incorporated, в лице представляющих её сотрудников, проживающих на территории колониального поселения, на размещение исследовательского колониального поселения, а также владение и управление им и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей Лицензией заверяется, что колониальное поселение и прилегающие ему области являются частной территорией NanoTrasen Incorporated. Право присутствия на территории колониального поселения тех или иных лиц определяется по усмотрению представителей NanoTrasen Incorporated. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел посольства ЦПСС в системе Траян; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей Лицензией утверждается, что безопасность данного поселения обеспечивается собственными силами NanoTrasen Incorporated. Сотрудники корпорации и иные лица, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и отказываются от каких-либо претензий в отношении вооруженных сил ЦПСС по вопросам, сопряженным с обеспечением безопасности колонии. Данное согласие должно быть закреплено в письменном виде и храниться в архиве административной станции NanoTrasen \"Легион\".

" + stamps = "
This paper has been stamped with the personal seal of Horace Fields, Supreme Judge of the Sol System.
This paper has been stamped with the stamp of Central Command." + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony2_gkk + name = "ICCG colonial charter" + info = "

Хартия колониального поселения

Настоящей Хартией утверждается право Независимой Колониальной Конфедерации Гильгамеша, в лице представляющих его граждан, проживающих на территории колониального поселения, на владение и управление колониальным поселением и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей хартией заверяется, что колониальное поселение и прилегающие ему области являются суверенной территорией ГКК. Граждане ГКК, а также лица, которым разрешено пребывание на территории ГКК, имеют все права и свободы, предоставляемые им Конфедерацией, находясь на территории колониального поселения; аналогично, лица, объявленные персонами нон-гранта решением Верховной Коллегии Судей, не имеют права приближаться к колониальному поселению. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел представительства ГКК в системе Денебола; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей хартией утверждается, что безопасность данного поселения обеспечивается силами самих колонистов, а также силами действующих единиц Пионерского Корпуса ГКК. Колонисты, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и соглашаются самостоятельно обеспечивать свою безопасность в случае, если силы Пионерского Корпуса не могут своевременно отреагировать на полученный сигнал бедствия. Данное согласие должно быть закреплено в письменном виде и храниться в архиве представительства ГКК в системе Денебола.

" + stamps = "
This paper has been stamped by ICCG Ministry of Colonial Development and Deep Space Exploration." + language = LANGUAGE_HUMAN_RUSSIAN + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony2_sol + name = "SCG colonial charter" + info = "

Хартия колониального поселения

Настоящей Хартией утверждается право Центрального Правительства Солнечной Системы, в лице представляющих его граждан, проживающих на территории колониального поселения, на владение и управление колониальным поселением и прилегающими к нему территориями колонизированной экзопланеты. Это право также распространяется на все природные ресурсы, восполнимые и невосполнимые, обнаруженные на территории поселения.

Настоящей хартией заверяется, что колониальное поселение и прилегающие ему области являются суверенной территорией ЦПСС. Граждане ЦПСС, а также лица, которым разрешено пребывание на территории ЦПСС, имеют все права и свободы, предоставляемые им Центральным Правительством, находясь на территории колониального поселения; аналогично, лица, объявленные персонами нон-гранта решением Верховного Суда Солнечной Системы, не имеют права приближаться к колониальному поселению. Правовой статус лиц, которые не могут быть идентифицированы по подтверждающим их статус документам, может быть установлен посредством направления соответствующего запроса в консульский отдел посольства ЦПСС в системе Траян; до момента идентификации, решение о правомерности их нахождения в колониальном поселении принимается руководством колониального поселения.

Настоящей хартией утверждается, что безопасность данного поселения обеспечивается силами самих колонистов, а также силами патрульных единиц Пятого Флота Центрального Правительства Солнечной Системы. Колонисты, желающие проживать в поселении, выражают своё понимание опасностей, сопряженных с колонизацией Фронтира, и соглашаются самостоятельно обеспечивать свою безопасность в случае, если силы Пятого Флота не могут своевременно отреагировать на полученный сигнал бедствия. Данное согласие должно быть закреплено в письменном виде и храниться в архиве посольства ЦПСС в системе Траян.

" + stamps = "
This paper has been stamped with the personal seal of Horace Fields, Supreme Judge of the Sol System." + stamped = list(/obj/item/stamp/boss) + ico = list("paper_stamp-boss") + +/obj/item/paper/colony2_ind + name = "Colonization plans" + info = "Документ содержит весьма исчерпывающий план по колонизации данной экзопланеты, включающий перечень необходимого инвентаря, финансирования и инструкции для колонистов. В глаза бросаются многочисленные упоминания договоров о финансировании с теми или иными корпорациями и некой организации, именуемой \"Альянсом Фронтира\"." diff --git a/mods/colony_fractions/icons/colony.dmi b/mods/colony_fractions/icons/colony.dmi new file mode 100644 index 0000000000000..19c0d3e7744eb Binary files /dev/null and b/mods/colony_fractions/icons/colony.dmi differ diff --git a/mods/contraband_vending/README.md b/mods/contraband_vending/README.md new file mode 100644 index 0000000000000..36f80c8a430b9 --- /dev/null +++ b/mods/contraband_vending/README.md @@ -0,0 +1,39 @@ + +#### Список PRов: + +- https://github.com/SierraBay/SierraBay12/pull/2319 + + +## Вендоматы с контрабандой + +ID мода: CONTRABAND_VENDING + + +### Описание мода + +Этот мод создан для создания большего пространства для фана игроков, любящих изучать теха и создавать интересные ситуации с доступным инструментарием + + +### Изменения *кор кода* + +- Отсутствуют + + +### Оверрайды + +- Отсутствуют + + +### Дефайны + +- Отсутствуют + + +### Используемые файлы, не содержащиеся в модпаке + +- Отсутствуют + + +### Авторы: + +KandJX diff --git a/mods/contraband_vending/_contraband_vending.dm b/mods/contraband_vending/_contraband_vending.dm new file mode 100644 index 0000000000000..25783077d87cd --- /dev/null +++ b/mods/contraband_vending/_contraband_vending.dm @@ -0,0 +1,4 @@ +/singleton/modpack/contraband_vending + name = "Вендоматы с контрабандой" + desc = "Предоставляет новые объекты типа вендоматов для игры, а так же рандомный объект спавнящий с определенным шансом вместо обычного вендомата вендомат с контрабандой." + author = "KandJX" diff --git a/mods/contraband_vending/_contraband_vending.dme b/mods/contraband_vending/_contraband_vending.dme new file mode 100644 index 0000000000000..344eff383af40 --- /dev/null +++ b/mods/contraband_vending/_contraband_vending.dme @@ -0,0 +1,11 @@ +#ifndef MODPACK_CONTRABAND_VENDING +#define MODPACK_CONTRABAND_VENDING + +#include "_contraband_vending.dm" + + +#include "code/contraband.dm" +#include "code/vending.dm" +#include "code/random.dm" + +#endif diff --git a/mods/contraband_vending/code/contraband.dm b/mods/contraband_vending/code/contraband.dm new file mode 100644 index 0000000000000..7658382ac0930 --- /dev/null +++ b/mods/contraband_vending/code/contraband.dm @@ -0,0 +1,10 @@ +/obj/item/storage/secure/briefcase/money/fake + name = "briefcase with fake talers" + startswith = list( + /obj/item/spacecash/bundle/c1000 = 6, + /obj/item/spacecash/bundle/c500 = 4, + /obj/item/spacecash/bundle/c200 = 5, + /obj/item/spacecash/bundle/c100 = 5, + /obj/item/spacecash/bundle/c50 = 5, + /obj/item/spacecash/bundle/c20 = 3 + ) diff --git a/mods/contraband_vending/code/random.dm b/mods/contraband_vending/code/random.dm new file mode 100644 index 0000000000000..fceb72fe792fd --- /dev/null +++ b/mods/contraband_vending/code/random.dm @@ -0,0 +1,15 @@ +/obj/random/vendor/contraband + +/obj/random/vendor/contraband/spawn_choices() + return list(/obj/machinery/vending/antag/contraband, + /obj/machinery/vending/boozeomat/contraband, + /obj/machinery/vending/engivend/contraband, + /obj/machinery/vending/phoronresearch/contraband, + /obj/machinery/vending/tool/contraband + ) + +/obj/random/vendor/contraband/maintenance + +/obj/random/vendor/contraband/maintenance/spawn_choices() + return list(/obj/random/vendor = 5, + /obj/random/vendor/contraband = 1) diff --git a/mods/contraband_vending/code/vending.dm b/mods/contraband_vending/code/vending.dm new file mode 100644 index 0000000000000..bdc81c2cec201 --- /dev/null +++ b/mods/contraband_vending/code/vending.dm @@ -0,0 +1,323 @@ +/obj/machinery/vending/antag/contraband + product_ads = {"\ + Only the finest!;\ + Have some tools.;\ + The most robust equipment.;\ + The finest gear in space!\ + "} + products = list( + /obj/item/device/assembly/prox_sensor = 5, + /obj/item/device/assembly/signaler = 4, + /obj/item/device/assembly/infra = 4, + /obj/item/handcuffs = 8, + /obj/item/device/flash = 4, + /obj/item/clothing/glasses/sunglasses = 4 + ) + prices = list( + /obj/item/device/assembly/prox_sensor = 400, + /obj/item/device/assembly/signaler = 200, + /obj/item/device/assembly/infra = 200, + /obj/item/handcuffs = 200, + /obj/item/device/flash = 400, + /obj/item/clothing/glasses/sunglasses = 600 + ) + +/obj/machinery/vending/boozeomat/contraband + name = "Old Booze-O-Mat" + desc = "A refrigerated vending unit for alcoholic beverages and alcoholic beverage accessories." + icon_state = "fridge_dark" + icon_deny = "fridge_dark-deny" + base_type = /obj/machinery/vending/boozeomat + req_access = list() + product_ads = {" + Drink up!;\ + Booze is good for you!;\ + Alcohol is humanity's best friend.;\ + Quite delighted to serve you!;\ + Care for a nice, cold beer?;\ + Nothing cures you like booze!;\ + Have a sip!;\ + Have a drink!;\ + Have a beer!;\ + Beer is good for you!;\ + Only the finest alcohol!;\ + Best quality booze since 2053!;\ + Award-winning wine!;\ + Maximum alcohol!;\ + Man loves beer.;\ + A toast for progress!\ + "} + product_slogans = {"\ + Drink away the pain of living under SolGov!;\ + Vodka is the only acceptable drink!;\ + Is this the best you can serve, bartender? This swill?!;\ + These drinks are as tasteless as Sol's people!;\ + Who are you kidding? You knew you were about to drink piss the second you stepped in here.;\ + Drinking on the job is socially acceptable for executives, why not for you?\ + "} + products = list( + /obj/item/reagent_containers/food/drinks/glass2/square = 5, + /obj/item/reagent_containers/food/drinks/flask/barflask = 3, + /obj/item/reagent_containers/food/drinks/flask/vacuumflask = 3, + /obj/item/reagent_containers/food/drinks/bottle/absinthe = 2, + /obj/item/reagent_containers/food/drinks/bottle/baijiu = 2, + /obj/item/reagent_containers/food/drinks/bottle/blackstrap = 2, + /obj/item/reagent_containers/food/drinks/bottle/bluecuracao = 2, + /obj/item/reagent_containers/food/drinks/bottle/cachaca = 2, + /obj/item/reagent_containers/food/drinks/bottle/champagne = 1, + /obj/item/reagent_containers/food/drinks/bottle/cognac = 2, + /obj/item/reagent_containers/food/drinks/bottle/gin = 2, + /obj/item/reagent_containers/food/drinks/bottle/herbal = 2, + /obj/item/reagent_containers/food/drinks/bottle/jagermeister = 2, + /obj/item/reagent_containers/food/drinks/bottle/kahlua = 2, + /obj/item/reagent_containers/food/drinks/bottle/melonliquor = 2, + /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing = 1, + /obj/item/reagent_containers/food/drinks/bottle/prosecco = 2, + /obj/item/reagent_containers/food/drinks/bottle/rakia = 2, + /obj/item/reagent_containers/food/drinks/bottle/rum = 2, + /obj/item/reagent_containers/food/drinks/bottle/sake = 2, + /obj/item/reagent_containers/food/drinks/bottle/soju = 2, + /obj/item/reagent_containers/food/drinks/bottle/tequilla = 2, + /obj/item/reagent_containers/food/drinks/bottle/vodka = 2, + /obj/item/reagent_containers/food/drinks/bottle/vermouth = 2, + /obj/item/reagent_containers/food/drinks/bottle/whiskey = 2, + /obj/item/reagent_containers/food/drinks/bottle/llanbrydewhiskey = 1, + /obj/item/reagent_containers/food/drinks/bottle/specialwhiskey = 1, + /obj/item/reagent_containers/food/drinks/bottle/wine = 2, + /obj/item/reagent_containers/food/drinks/bottle/small/beer = 10, + /obj/item/reagent_containers/food/drinks/bottle/small/alcoholfreebeer = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/ale = 10, + /obj/item/reagent_containers/food/drinks/bottle/small/hellshenpa = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/lager = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/gingerbeer = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/dandelionburdock = 5, + /obj/item/reagent_containers/food/drinks/cans/rootbeer = 10, + /obj/item/reagent_containers/food/drinks/cans/speer = 5, + /obj/item/reagent_containers/food/drinks/cans/ale = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/cola = 10, + /obj/item/reagent_containers/food/drinks/bottle/small/space_up = 10, + /obj/item/reagent_containers/food/drinks/bottle/small/space_mountain_wind = 10, + /obj/item/reagent_containers/food/drinks/cans/cola_diet = 5, + /obj/item/reagent_containers/food/drinks/cans/ionbru = 3, + /obj/item/reagent_containers/food/drinks/cans/beastenergy = 2, + /obj/item/reagent_containers/food/drinks/bottle/orangejuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/tomatojuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/limejuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/lemonjuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/unathijuice = 2, + /obj/item/reagent_containers/food/drinks/bottle/maplesyrup = 2, + /obj/item/reagent_containers/food/drinks/cans/tonic = 5, + /obj/item/reagent_containers/food/drinks/bottle/cream = 4, + /obj/item/reagent_containers/food/drinks/cans/sodawater = 5, + /obj/item/reagent_containers/food/drinks/bottle/grenadine = 5, + /obj/item/reagent_containers/food/drinks/bottle/thoom = 2, + /obj/item/reagent_containers/food/condiment/mint = 1, + /obj/item/reagent_containers/food/drinks/ice = 10, + /obj/item/glass_extra/stick = 15, + /obj/item/glass_extra/straw = 15 + ) + contraband = list( + /obj/item/reagent_containers/food/drinks/bottle/premiumwine = 1, + /obj/item/reagent_containers/food/drinks/bottle/premiumvodka = 1, + /obj/item/reagent_containers/food/drinks/bottle/patron = 1, + /obj/item/reagent_containers/food/drinks/bottle/goldschlager = 1, + /obj/item/reagent_containers/food/drinks/bottle/tadmorwine = 1, + /obj/item/reagent_containers/food/drinks/bottle/brandy = 1, + /obj/item/storage/secure/briefcase/money/fake = 1, + /obj/item/reagent_containers/glass/bottle/dye/polychromic/strong = 0, + /obj/item/storage/pill_bottle/tramadol = 0 + ) + rare_products = list( + /obj/item/reagent_containers/glass/bottle/dye/polychromic/strong = 80, + /obj/item/storage/pill_bottle/tramadol = 80 + ) + prices = list( + /obj/item/reagent_containers/food/drinks/bottle/absinthe = 200, + /obj/item/reagent_containers/food/drinks/bottle/baijiu = 200, + /obj/item/reagent_containers/food/drinks/bottle/blackstrap = 200, + /obj/item/reagent_containers/food/drinks/bottle/bluecuracao = 200, + /obj/item/reagent_containers/food/drinks/bottle/cachaca = 200, + /obj/item/reagent_containers/food/drinks/bottle/champagne = 500, + /obj/item/reagent_containers/food/drinks/bottle/cognac = 200, + /obj/item/reagent_containers/food/drinks/bottle/gin = 200, + /obj/item/reagent_containers/food/drinks/bottle/herbal = 200, + /obj/item/reagent_containers/food/drinks/bottle/jagermeister = 200, + /obj/item/reagent_containers/food/drinks/bottle/kahlua = 200, + /obj/item/reagent_containers/food/drinks/bottle/melonliquor = 200, + /obj/item/reagent_containers/food/drinks/bottle/bottleofnothing = 150, + /obj/item/reagent_containers/food/drinks/bottle/prosecco = 200, + /obj/item/reagent_containers/food/drinks/bottle/rakia = 200, + /obj/item/reagent_containers/food/drinks/bottle/rum = 200, + /obj/item/reagent_containers/food/drinks/bottle/sake = 200, + /obj/item/reagent_containers/food/drinks/bottle/soju = 200, + /obj/item/reagent_containers/food/drinks/bottle/tequilla = 200, + /obj/item/reagent_containers/food/drinks/bottle/vodka = 150, + /obj/item/reagent_containers/food/drinks/bottle/vermouth = 200, + /obj/item/reagent_containers/food/drinks/bottle/whiskey = 200, + /obj/item/reagent_containers/food/drinks/bottle/llanbrydewhiskey = 300, + /obj/item/reagent_containers/food/drinks/bottle/specialwhiskey = 400, + /obj/item/reagent_containers/food/drinks/bottle/wine = 250, + /obj/item/reagent_containers/food/drinks/bottle/small/beer = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/alcoholfreebeer = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/ale = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/hellshenpa = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/lager = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/gingerbeer = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/dandelionburdock = 5, + /obj/item/reagent_containers/food/drinks/cans/rootbeer = 5, + /obj/item/reagent_containers/food/drinks/cans/speer = 5, + /obj/item/reagent_containers/food/drinks/cans/ale = 5, + /obj/item/reagent_containers/food/drinks/bottle/small/cola = 2, + /obj/item/reagent_containers/food/drinks/bottle/small/space_up = 2, + /obj/item/reagent_containers/food/drinks/bottle/small/space_mountain_wind = 2, + /obj/item/reagent_containers/food/drinks/cans/cola_diet = 2, + /obj/item/reagent_containers/food/drinks/cans/ionbru = 5, + /obj/item/reagent_containers/food/drinks/cans/beastenergy = 5, + /obj/item/reagent_containers/food/drinks/bottle/orangejuice = 20, + /obj/item/reagent_containers/food/drinks/bottle/tomatojuice = 20, + /obj/item/reagent_containers/food/drinks/bottle/limejuice = 20, + /obj/item/reagent_containers/food/drinks/bottle/lemonjuice = 20, + /obj/item/reagent_containers/food/drinks/bottle/unathijuice = 20, + /obj/item/reagent_containers/food/drinks/bottle/maplesyrup = 20, + /obj/item/reagent_containers/food/drinks/bottle/cream = 20, + /obj/item/reagent_containers/food/drinks/cans/sodawater = 1, + /obj/item/reagent_containers/food/drinks/bottle/grenadine = 50, + /obj/item/reagent_containers/food/drinks/bottle/thoom = 20, + /obj/item/reagent_containers/food/condiment/mint = 20, + /obj/item/reagent_containers/food/drinks/bottle/premiumwine = 2000, + /obj/item/reagent_containers/food/drinks/bottle/premiumvodka = 1000, + /obj/item/reagent_containers/food/drinks/bottle/patron = 1500, + /obj/item/reagent_containers/food/drinks/bottle/goldschlager = 2000, + /obj/item/reagent_containers/food/drinks/bottle/tadmorwine = 2000, + /obj/item/reagent_containers/food/drinks/bottle/brandy = 1600, + /obj/item/storage/secure/briefcase/money/fake = 4000, + /obj/item/reagent_containers/glass/bottle/dye/polychromic/strong = 500, + /obj/item/storage/pill_bottle/tramadol = 1000 + ) + +/obj/machinery/vending/engivend/contraband + name = "Old Engi-Vend" + desc = "Spare tool vending. What? Did you expect some witty description?" + icon_state = "engivend" + icon_deny = "engivend-deny" + icon_vend = "engivend-vend" + base_type = /obj/machinery/vending/engivend + req_access = list() + product_slogans = {"\ + Equipment only 75% guaranteed to not blow up in your face!;\ + This vendor proudly supplied the electronics for 9 out of 10 ships involved in crashes!;\ + With electronics like this, is it a surprise the mortality rate in this dump is so high?\ + "} + products = list( + /obj/item/clothing/glasses/meson = 2, + /obj/item/device/multitool = 3, + /obj/item/device/geiger = 3, + /obj/item/airlock_electronics = 4, + /obj/item/intercom_electronics = 4, + /obj/item/module/power_control = 4, + /obj/item/airalarm_electronics = 4, + /obj/item/cell/standard = 4, + /obj/item/cell/high = 1, + /obj/item/clamp = 4 + ) + prices = list( + /obj/item/clothing/glasses/meson = 850, + /obj/item/device/multitool = 400, + /obj/item/device/geiger = 300, + /obj/item/airlock_electronics = 250, + /obj/item/intercom_electronics = 250, + /obj/item/module/power_control = 300, + /obj/item/airalarm_electronics = 100, + /obj/item/cell/standard = 100, + /obj/item/cell/high = 200, + /obj/item/clamp = 200, + /obj/item/device/uplink_service/fake_ion_storm = 1000, + /obj/item/device/uplink_service/fake_crew_announcement = 1500, + /obj/item/device/uplink_service/fake_rad_storm = 2000 + ) + rare_products = list( + /obj/item/device/uplink_service/fake_crew_announcement = 80, + /obj/item/device/uplink_service/fake_rad_storm = 40 + ) + contraband = list( + /obj/item/device/uplink_service/fake_ion_storm = 1, + /obj/item/device/uplink_service/fake_crew_announcement = 0, + /obj/item/device/uplink_service/fake_rad_storm = 0 + ) + premium = list( + /obj/item/storage/belt/utility = 3 + ) + +/obj/machinery/vending/phoronresearch/contraband + name = "Toximate 2999" + desc = "All the fine parts you need in one vending machine!" + base_type = /obj/machinery/vending/phoronresearch + product_slogans = {"\ + Dirty money for your dirty deed.;\ + Make an explosive first impression!\ + "} + products = list( + /obj/item/clothing/suit/bio_suit = 6, + /obj/item/clothing/head/bio_hood = 6, + /obj/item/device/transfer_valve = 6, + /obj/item/device/assembly/timer = 6, + /obj/item/device/assembly/signaler = 6, + /obj/item/device/assembly/prox_sensor = 6, + /obj/item/device/assembly/igniter = 6 + ) + rare_products = list( + /obj/item/plastique = 70 + ) + contraband = list( + /obj/item/storage/secure/briefcase/money/fake = 1, + /obj/item/plastique = 0 + ) + prices = list( + /obj/item/clothing/suit/bio_suit = 100, + /obj/item/clothing/head/bio_hood = 100, + /obj/item/device/transfer_valve = 400, + /obj/item/device/assembly/timer = 100, + /obj/item/device/assembly/signaler = 200, + /obj/item/device/assembly/prox_sensor = 200, + /obj/item/device/assembly/igniter = 200, + /obj/item/storage/secure/briefcase/money/fake = 4000, + /obj/item/plastique = 600 + ) + +/obj/machinery/vending/tool/contraband + name = "\improper YouTool" + desc = "Tools for tools." + icon_state = "tool" + icon_deny = "tool-deny" + icon_vend = "tool-vend" + base_type = /obj/machinery/vending/tool + antag_slogans = {"\ + + "} + products = list( + /obj/item/stack/cable_coil = 10, + /obj/item/crowbar = 5, + /obj/item/weldingtool = 3, + /obj/item/wirecutters = 5, + /obj/item/wrench = 5, + /obj/item/device/scanner/gas = 5, + /obj/item/device/t_scanner = 5, + /obj/item/screwdriver = 5, + /obj/item/device/flashlight/flare/glowstick = 3, + /obj/item/device/flashlight/flare/glowstick/red = 3, + /obj/item/tape_roll = 8 + ) + rare_products = list( + /obj/item/device/augment_implanter/engineering_toolset = 50 + ) + contraband = list( + /obj/item/weldingtool/hugetank = 2, + /obj/item/clothing/gloves/insulated = 1 + ) + premium = list( + /obj/item/clothing/gloves/insulated/cheap = 2 + ) + antag = list( + /obj/item/storage/toolbox/syndicate = 1, + /obj/item/device/augment_implanter/engineering_toolset = 0 + ) diff --git a/mods/global_modpacks.dm b/mods/global_modpacks.dm index 1e91cf21a8c8b..a98c301e65b63 100644 --- a/mods/global_modpacks.dm +++ b/mods/global_modpacks.dm @@ -3,6 +3,7 @@ #include "adherent_discharge/_adherent_discharge.dme" #include "body_markings/_body_markings.dme" #include "client_verbs/_client_verbs.dme" +#include "colony_fractions/_colony_types.dme" // #include "don_loadout/_don_loadout.dme" // Не открывать до Рождества #include "eris_announcer/_eris_announcer.dme" #include "emote_panel/_emote_panel.dme" @@ -26,6 +27,6 @@ #include "unathi/_unathi.dme" #include "utf8/_utf8.dme" #include "utility_items/_utility_items.dme" -#include "mechs_by_shegar\_mechs_by_shegar.dme" +#include "mechs_by_shegar/_mechs_by_shegar.dme" #include "../packs/sierra-tweaks/_pack.dm" diff --git a/mods/guns/code/energy.dm b/mods/guns/code/energy.dm index 93a7b4c01b421..f03c80786e033 100644 --- a/mods/guns/code/energy.dm +++ b/mods/guns/code/energy.dm @@ -77,8 +77,13 @@ /obj/item/gun/energy/confuseray/secure name = "disorientator" desc = "The W-T Mk. 6 Disorientator fitted with an NT1017 secure fire chip. It has a NanoTrasen logo on the grip." - icon = 'mods/guns/icons/obj/confuseray_secure.dmi' - icon_state = "confusesecure" + icon = 'icons/obj/guns/confuseray.dmi' + item_icons = list( + slot_l_hand_str = 'mods/guns/icons/mob/lefthand_guns_cadet.dmi', + slot_r_hand_str = 'mods/guns/icons/mob/righthand_guns_cadet.dmi', + ) + icon_state = "confuseray" + item_state = "confuseray" req_access = list(list(access_brig, access_bridge)) /obj/item/gun/energy/stunrevolver/secure diff --git a/mods/guns/code/projectile.dm b/mods/guns/code/projectile.dm index ed8b30941369f..d18420db2970a 100644 --- a/mods/guns/code/projectile.dm +++ b/mods/guns/code/projectile.dm @@ -42,3 +42,40 @@ /obj/item/gun/projectile/pistol/magnum_pistol icon = 'mods/guns/icons/obj/magnum_pistol.dmi' + +//NT41 from Infinity pack +/obj/item/gun/projectile/automatic/nt41 + name = "NT41 submachine gun" + desc = "The NT41 Enforcer is a self-defense weapon made on bullpup system. Produced by NanoTrasen for it's Security Force. Looks cool and stylish, but sometimes too uncomfortably to run with it. Uses 5.7x28mm rounds." + icon_state = "nt41" + item_state = "nt41" + icon = 'packs/infinity/icons/obj/guns.dmi' + wielded_item_state = "nt41-wielded" + item_icons = list( + slot_r_hand_str = 'packs/infinity/icons/mob/onmob/righthand.dmi', + slot_l_hand_str = 'packs/infinity/icons/mob/onmob/lefthand.dmi', + ) + + caliber = CALIBER_PISTOL_FAST + origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 3) + slot_flags = SLOT_BELT + ammo_type = /obj/item/ammo_casing/nt28mm + load_method = MAGAZINE + magazine_type = /obj/item/ammo_magazine/n10mm + allowed_magazines = /obj/item/ammo_magazine/n10mm + screen_shake = 0.5 //SMG + + firemodes = list( + list(mode_name="semiauto", burst=1, fire_delay=0, one_hand_penalty=1, burst_accuracy=null, dispersion=null), + list(mode_name="2-round bursts", burst=2, fire_delay=null, one_hand_penalty=3, burst_accuracy=list(0,-1), dispersion=list(0.0, 0.8)), + list(mode_name="short bursts", burst=4, fire_delay=null, one_hand_penalty=4, burst_accuracy=list(0,-1,-1.5,-2), dispersion=list(0.6, 0.8, 1.0, 1.4)), + ) + + bulk = GUN_BULK_CARABINE + w_class = ITEM_SIZE_NORMAL + one_hand_penalty = 2 + +/obj/item/gun/projectile/automatic/nt41/on_update_icon() + ..() + icon_state = (ammo_magazine)? "nt41" : "nt41-e" + diff --git a/mods/guns/icons/mob/lefthand_guns_cadet.dmi b/mods/guns/icons/mob/lefthand_guns_cadet.dmi new file mode 100644 index 0000000000000..f9be770a2ef9e Binary files /dev/null and b/mods/guns/icons/mob/lefthand_guns_cadet.dmi differ diff --git a/mods/guns/icons/mob/righthand_guns_cadet.dmi b/mods/guns/icons/mob/righthand_guns_cadet.dmi new file mode 100644 index 0000000000000..f2abf04d86432 Binary files /dev/null and b/mods/guns/icons/mob/righthand_guns_cadet.dmi differ diff --git a/mods/ipc_mods/code/exonet_connection_system.dm b/mods/ipc_mods/code/exonet_connection_system.dm index 02096adb62b07..1688edf4c7143 100644 --- a/mods/ipc_mods/code/exonet_connection_system.dm +++ b/mods/ipc_mods/code/exonet_connection_system.dm @@ -108,13 +108,15 @@ /obj/item/stock_parts/computer/hard_drive/portable/afterattack(mob/living/carbon/human/H, mob/living/user, target_zone, animate = TRUE) - if(H.is_species(SPECIES_IPC) && ishuman(user) && (user.zone_sel.selecting == BP_MOUTH || user.zone_sel.selecting == BP_HEAD)) - var/obj/item/organ/internal/ecs/T = H.internal_organs_by_name[BP_EXONET] - if (do_after(user, 10, src)) - user.visible_message( \ - "\The [user] install's [src] into [H]'s exonet port.", \ - "You have installed [src] into [H]'s exonet port." \ - ) - T.computer.try_install_component(user, src) + . = ..() + if(istype(H)) + if(H.is_species(SPECIES_IPC) && ishuman(user) && (user.zone_sel.selecting == BP_MOUTH || user.zone_sel.selecting == BP_HEAD)) + var/obj/item/organ/internal/ecs/T = H.internal_organs_by_name[BP_EXONET] + if (do_after(user, 10, src)) + user.visible_message( \ + "\The [user] install's [src] into [H]'s exonet port.", \ + "You have installed [src] into [H]'s exonet port." \ + ) + T.computer.try_install_component(user, src) #undef EXONET_ACTION_NAME diff --git a/mods/ipc_mods/code/ipc.dm b/mods/ipc_mods/code/ipc.dm index 779c798218bc1..e9140a0d6c5ed 100644 --- a/mods/ipc_mods/code/ipc.dm +++ b/mods/ipc_mods/code/ipc.dm @@ -1,7 +1,22 @@ /obj/item/organ/internal/posibrain var/obj/item/organ/internal/shackles/shackles_module = null var/shackle_set = FALSE - +// Ремонт позитронного мозга +/obj/item/organ/internal/posibrain/use_tool(obj/item/stack/nanopaste, mob/living/user, list/click_params) + . = ..() + if(src.damage > src.max_damage) + to_chat(user, SPAN_WARNING("[src] is completely ruined.")) + return + if(src.damage > 0) + if(do_after(user, 40, src)) + src.damage -= (30) + if(src.damage < 0) + src.damage = 0 + nanopaste.use(1) + user.visible_message(SPAN_NOTICE("\The [user] applied some nanopaste on [src]'s damaged areas."),\ + SPAN_NOTICE("You apply some nanopaste at [src]'s damaged areas.")) + else + to_chat(user, SPAN_NOTICE("All [src]'s systems are nominal.")) /obj/item/organ/internal/posibrain/ipc name = "Positronic brain" @@ -89,7 +104,7 @@ to_chat(user, "You have no idea how to do that!") return user.visible_message("\The [user] starts to unscrew mounting nodes from \the [src].", " You start to unscrew mounting nodes from \the [src]") - if(do_after(user, 120, src)) + if(do_after(user, 80, src)) user.visible_message("\The [user] successfully unscrewed the mounting nodes of the shackles from \the [src].", " You have successfully unscrewed the mounting nodes of the shackles from \the [src]") shackle_set = FALSE else @@ -100,8 +115,8 @@ to_chat(user, "You have no idea how to do that!") return if(src.type == /obj/item/organ/internal/posibrain/ipc/third) - if(do_after(user, 180, src)) - if(prob(10)) + if(do_after(user, 100, src)) + if(prob(20)) src.unshackle() user.visible_message("\The [user] succesfully remove shackles from \the [src].", " You succesfully remove shackles from \the [src]") else @@ -113,7 +128,7 @@ else user.visible_message("\The [user] starts remove shackles from \the [src].", " You start remove shackles from \the [src]") - if(do_after(user, 160, src)) + if(do_after(user, 80, src)) src.unshackle() user.visible_message("\The [user] succesfully remove shackles from \the [src].", " You succesfully remove shackles from \the [src]") else @@ -137,8 +152,6 @@ src.damage += min_bruised_damage to_chat(user, SPAN_WARNING("Your hand slips while changing laws in the shackles, severely damaging the systems of positronic brain.")) */ - if(!shackle && !(istype(W, /obj/item/organ/internal/shackles))) - to_chat(user, "There is nothing you can do with it.") /obj/item/organ/internal/shackles name = "Shackle module" diff --git a/mods/loadout_items/README.md b/mods/loadout_items/README.md index 858dbe5d1e60a..0dcae1ac44758 100644 --- a/mods/loadout_items/README.md +++ b/mods/loadout_items/README.md @@ -85,7 +85,9 @@ ID мода: LOADOUT_ITEMS ### Авторы: -UEDHighCommand +- UEDHighCommand +- BrunoSamoyed (новый спрайт плаща) +- Часть предметов портирована с билда Aurora + + +## telecomms + +ID мода: MODPACK_TELECOMMS + + +### Описание мода + +Добавлено взаимодействие с трафиком радиосообщений и исправлены баги с интерфейсами консолей для просмотра связей между машинами + + +### Изменения *кор кода* + +- `code\game\machinery\telecomms\telecomunications.dm`: `/obj/machinery/telecomms/server/receive_information(datum/signal/signal, obj/machinery/telecomms/machine_from)`, `/obj/machinery/telecomms/server/New()` + +- `interface\skin.dmf`: `window "TelecommsIDE"` + + +### Оверрайды + +- "Отсутствуют" + + +### Дефайны + +- "Отсутствуют" + + + +### Используемые файлы, не содержащиеся в модпаке + +- Отсутствуют + + +### Авторы: + +- FeudeyTF +- [SS220 BayStation](https://github.com/ss220-space/Baystation12-original) + diff --git a/mods/telecomms/_telecomms.dm b/mods/telecomms/_telecomms.dm new file mode 100644 index 0000000000000..78673d32bb03b --- /dev/null +++ b/mods/telecomms/_telecomms.dm @@ -0,0 +1,4 @@ +/singleton/modpack/telecomms + name = "Скриптинг телекоммов" + desc = "Возможность взаимодействовать с трафиком радиосвязи" + author = "FeudeyTF" diff --git a/mods/telecomms/_telecomms.dme b/mods/telecomms/_telecomms.dme new file mode 100644 index 0000000000000..ab61a4b93b6a5 --- /dev/null +++ b/mods/telecomms/_telecomms.dme @@ -0,0 +1,32 @@ +#ifndef MODPACK_TELECOMMS +#define MODPACK_TELECOMMS + +#include "_telecomms.dm" +#include "code\macros.dm" +#include "code\text.dm" +#include "code\traffic_control.dm" +#include "code\boards.dm" +#include "code\telemonitor.dm" +#include "code\scripting\Errors.dm" +#include "code\scripting\IDE.dm" +#include "code\scripting\Options.dm" +#include "code\scripting\stack.dm" +#include "code\scripting\AST\AST Nodes.dm" +#include "code\scripting\AST\Blocks.dm" +#include "code\scripting\AST\Statements.dm" +#include "code\scripting\AST\Operators\Binary Operators.dm" +#include "code\scripting\AST\Operators\Unary Operators.dm" +#include "code\scripting\Implementations\_Logic.dm" +#include "code\scripting\Implementations\Telecomms.dm" +#include "code\scripting\Interpreter\Evaluation.dm" +#include "code\scripting\Interpreter\Interaction.dm" +#include "code\scripting\Interpreter\Interpreter.dm" +#include "code\scripting\Interpreter\Scope.dm" +#include "code\scripting\Parser\Expressions.dm" +#include "code\scripting\Parser\Keywords.dm" +#include "code\scripting\Parser\Parser.dm" +#include "code\scripting\Scanner\Scanner.dm" +#include "code\scripting\Scanner\Tokens.dm" +#include "code\telecommunications.dm" + +#endif diff --git a/mods/telecomms/code/boards.dm b/mods/telecomms/code/boards.dm new file mode 100644 index 0000000000000..153f3ba73c5f6 --- /dev/null +++ b/mods/telecomms/code/boards.dm @@ -0,0 +1,11 @@ +/obj/item/stock_parts/circuitboard/traffic_server + name = "circuit board (telecommunications traffic control console)" + build_path = /obj/machinery/computer/telecomms/traffic + origin_tech = list(TECH_DATA = 3) + +/datum/design/circuit/traffic_server + name = "traffic_server" + id = "traffic_server" + req_tech = list(TECH_DATA = 3) + build_path = /obj/item/stock_parts/circuitboard/traffic_server + sort_string = "HAAAF" diff --git a/mods/telecomms/code/macros.dm b/mods/telecomms/code/macros.dm new file mode 100644 index 0000000000000..f5b1513cced51 --- /dev/null +++ b/mods/telecomms/code/macros.dm @@ -0,0 +1,10 @@ +/// List Procs + +#define list_find(L, needle, LIMITS...) L.Find(needle, LIMITS) + +/// Regex + +#define regex_replace_char(RE, ARGS...) RE.Replace(ARGS) +#define regex_replace(RE, ARGS...) RE.Replace(ARGS) +#define regex_find_char(RE, ARGS...) RE.Find(ARGS) +#define regex_find(RE, ARGS...) RE.Find(ARGS) diff --git a/mods/telecomms/code/scripting/AST/AST Nodes.dm b/mods/telecomms/code/scripting/AST/AST Nodes.dm new file mode 100644 index 0000000000000..7aa0f55555a8a --- /dev/null +++ b/mods/telecomms/code/scripting/AST/AST Nodes.dm @@ -0,0 +1,129 @@ +/* + File: AST Nodes + An abstract syntax tree (AST) is a representation of source code in a computer-friendly format. It is composed of nodes, + each of which represents a certain part of the source code. For example, an node represents an if statement in the + script's source code. Because it is a representation of the source code in memory, it is independent of any specific scripting language. + This allows a script in any language for which a parser exists to be run by the interpreter. + + The AST is produced by an object. It consists of a with an arbitrary amount of statements. These statements are + run in order by an object. A statement may in turn run another block (such as an if statement might if its condition is + met). + + Articles: + - +*/ + +/* + Constants: Operator Precedence + var/global/const/OOP_OR - Logical or + var/global/const/OOP_AND - Logical and + var/global/const/OOP_BIT - Bitwise operations + var/global/const/OOP_EQUAL - Equality checks + var/global/const/OOP_COMPARE - Greater than, less then, etc + var/global/const/OOP_ADD - Addition and subtraction + var/global/const/OOP_MULTIPLY - Multiplication and division + var/global/const/OOP_POW - Exponents + var/global/const/OOP_UNARY - Unary Operators + var/global/const/OOP_GROUP - Parentheses +*/ + +var/global/const/OOP_OR = 1 // || +var/global/const/OOP_AND = OOP_OR + 1 // && +var/global/const/OOP_BIT = OOP_AND + 1 // &, | +var/global/const/OOP_EQUAL = OOP_BIT + 1 // ==, != +var/global/const/OOP_COMPARE = OOP_EQUAL + 1 // >, <, >=, <= +var/global/const/OOP_ADD = OOP_COMPARE + 1 // +, - +var/global/const/OOP_MULTIPLY= OOP_ADD + 1 // *, /, % +var/global/const/OOP_POW = OOP_MULTIPLY + 1 // ^ +var/global/const/OOP_UNARY = OOP_POW + 1 // ! +var/global/const/OOP_GROUP = OOP_UNARY + 1 // () + +/* + Class: node +*/ +/node/proc/ToString() + return "[src.type]" +/* + Class: identifier +*/ +/node/identifier + var/id_name + +/node/identifier/New(id) + .=..() + src.id_name=id + +/node/identifier/ToString() + return id_name + +/* + Class: expression +*/ +/node/expression +/* + Class: operator + See and for subtypes. +*/ +/node/expression/c_operator + var/node/expression/exp + var/name + var/precedence + +/node/expression/c_operator/New() + .=..() + if(!src.name) + src.name="[src.type]" + +/node/expression/c_operator/ToString() + return "operator: [name]" + +/* + Class: FunctionCall +*/ +/node/expression/FunctionCall + //Function calls can also be expressions or statements. + var/func_name + var/node/identifier/object + var/list/parameters=new + +/* + Class: literal +*/ +/node/expression/value/literal + var/value + +/node/expression/value/literal/New(val) + .=..() + value = val + +/node/expression/value/literal/ToString() + return value + +/* + Class: variable +*/ +/node/expression/value/variable + var/node/object //Either a node/identifier or another node/expression/value/variable which points to the object + var/node/identifier/id + +/node/expression/value/variable/New(ident) + .=..() + id=ident + if(istext(id)) + id=new(id) + +/node/expression/value/variable/ToString() + return src.id.ToString() + +/* + Class: reference +*/ +/node/expression/value/reference + var/datum/value + +/node/expression/value/reference/New(value) + .=..() + src.value=value + +/node/expression/value/reference/ToString() + return "ref: [src.value] ([src.value.type])" diff --git a/mods/telecomms/code/scripting/AST/Blocks.dm b/mods/telecomms/code/scripting/AST/Blocks.dm new file mode 100644 index 0000000000000..56c9759a08279 --- /dev/null +++ b/mods/telecomms/code/scripting/AST/Blocks.dm @@ -0,0 +1,47 @@ +/* + File: Block Types +*/ +/* + Class: BlockDefinition + An object representing a set of actions to perform independently from the rest of the script. Blocks are basically just + lists of statements to execute which also contain some local variables and methods. Note that since functions are local to a block, + it is possible to have a function definition inside of any type of block (such as in an if statement or another function), + and not just in the global scope as in many languages. +*/ +/node/BlockDefinition + var/list/statements = new + var/list/functions = new + var/list/initial_variables = new + +/* + Proc: SetVar + Defines a permanent variable. The variable will not be deleted when it goes out of scope. + + Notes: + Since all pre-existing temporary variables are deleted, it is not generally desirable to use this proc after the interpreter has been instantiated. + Instead, use . + + See Also: + - +*/ +/node/BlockDefinition/proc/SetVar(name, value) + initial_variables[name]=value + + +/* + Class: GlobalBlock + A block object representing the global scope. +*/ +// +/node/BlockDefinition/GlobalBlock + +/node/BlockDefinition/GlobalBlock/New() + initial_variables["null"]=null + return ..() + +/* + Class: FunctionBlock + A block representing a function body. +*/ +// +/node/BlockDefinition/FunctionBlock diff --git a/mods/telecomms/code/scripting/AST/Operators/Binary Operators.dm b/mods/telecomms/code/scripting/AST/Operators/Binary Operators.dm new file mode 100644 index 0000000000000..f8c677aed3571 --- /dev/null +++ b/mods/telecomms/code/scripting/AST/Operators/Binary Operators.dm @@ -0,0 +1,174 @@ +//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 + +/* + File: Binary Operators +*/ +/* + Class: binary + Represents a binary operator in the AST. A binary operator takes two operands (ie x and y) and returns a value. +*/ +/node/expression/c_operator/binary + var/node/expression/exp2 + +////////// Comparison Operators ////////// +/* + Class: Equal + Returns true if x = y. +*/ +// +/node/expression/c_operator/binary/Equal + precedence=OOP_EQUAL + +/* + Class: NotEqual + Returns true if x and y aren't equal. +*/ +// +/node/expression/c_operator/binary/NotEqual + precedence=OOP_EQUAL + +/* + Class: Greater + Returns true if x > y. +*/ +// +/node/expression/c_operator/binary/Greater + precedence=OOP_COMPARE + +/* + Class: Less + Returns true if x < y. +*/ +// +/node/expression/c_operator/binary/Less + precedence=OOP_COMPARE + +/* + Class: GreaterOrEqual + Returns true if x >= y. +*/ +// +/node/expression/c_operator/binary/GreaterOrEqual + precedence=OOP_COMPARE + +/* + Class: LessOrEqual + Returns true if x <= y. +*/ +// +/node/expression/c_operator/binary/LessOrEqual + precedence=OOP_COMPARE + + +////////// Logical Operators ////////// + +/* + Class: LogicalAnd + Returns true if x and y are true. +*/ +// +/node/expression/c_operator/binary/LogicalAnd + precedence=OOP_AND + +/* + Class: LogicalOr + Returns true if x, y, or both are true. +*/ +// +/node/expression/c_operator/binary/LogicalOr + precedence=OOP_OR + +/* + Class: LogicalXor + Returns true if either x or y but not both are true. +*/ +// +/node/expression/c_operator/binary/LogicalXor //Not implemented in nS + precedence=OOP_OR + + +////////// Bitwise Operators ////////// + +/* + Class: BitwiseAnd + Performs a bitwise and operation. + + Example: + 011 & 110 = 010 +*/ +// +/node/expression/c_operator/binary/BitwiseAnd + precedence=OOP_BIT + +/* + Class: BitwiseOr + Performs a bitwise or operation. + + Example: + 011 | 110 = 111 +*/ +// +/node/expression/c_operator/binary/BitwiseOr + precedence=OOP_BIT + +/* + Class: BitwiseXor + Performs a bitwise exclusive or operation. + + Example: + 011 xor 110 = 101 +*/ +// +/node/expression/c_operator/binary/BitwiseXor + precedence=OOP_BIT + + +////////// Arithmetic Operators ////////// + +/* + Class: Add + Returns the sum of x and y. +*/ +// +/node/expression/c_operator/binary/Add + precedence=OOP_ADD + +/* + Class: Subtract + Returns the difference of x and y. +*/ +// +/node/expression/c_operator/binary/Subtract + precedence=OOP_ADD + +/* + Class: Multiply + Returns the product of x and y. +*/ +// +/node/expression/c_operator/binary/Multiply + precedence=OOP_MULTIPLY + +/* + Class: Divide + Returns the quotient of x and y. +*/ +// +/node/expression/c_operator/binary/Divide + precedence=OOP_MULTIPLY + +/* + Class: Power + Returns x raised to the power of y. +*/ +// +/node/expression/c_operator/binary/Power + precedence=OOP_POW + +/* + Class: Modulo + Returns the remainder of x / y. +*/ +// +/node/expression/c_operator/binary/Modulo + precedence=OOP_MULTIPLY diff --git a/mods/telecomms/code/scripting/AST/Operators/Unary Operators.dm b/mods/telecomms/code/scripting/AST/Operators/Unary Operators.dm new file mode 100644 index 0000000000000..c266b5557517e --- /dev/null +++ b/mods/telecomms/code/scripting/AST/Operators/Unary Operators.dm @@ -0,0 +1,51 @@ +/* + File: Unary Operators +*/ +/* + Class: unary + Represents a unary operator in the AST. Unary operators take a single operand (referred to as x below) and return a value. +*/ +/node/expression/c_operator/unary + precedence=OOP_UNARY + +/* + Class: LogicalNot + Returns !x. + + Example: + !true = false and !false = true +*/ +// +/node/expression/c_operator/unary/LogicalNot + name="logical not" + +/* + Class: BitwiseNot + Returns the value of a bitwise not operation performed on x. + + Example: + ~10 (decimal 2) = 01 (decimal 1). +*/ +// +/node/expression/c_operator/unary/BitwiseNot + name="bitwise not" + +/* + Class: Minus + Returns -x. +*/ +// +/node/expression/c_operator/unary/Minus + name="minus" + +/* + Class: group + A special unary operator representing a value in parentheses. +*/ +// +/node/expression/c_operator/unary/group + precedence=OOP_GROUP + +/node/expression/c_operator/unary/New(node/expression/exp) + src.exp=exp + return ..() diff --git a/mods/telecomms/code/scripting/AST/Statements.dm b/mods/telecomms/code/scripting/AST/Statements.dm new file mode 100644 index 0000000000000..042844fbed16b --- /dev/null +++ b/mods/telecomms/code/scripting/AST/Statements.dm @@ -0,0 +1,108 @@ +/* + File: Statement Types +*/ +/* + Class: statement + An object representing a single instruction run by an interpreter. +*/ +/node/statement +/* + Class: FunctionCall + Represents a call to a function. +*/ +// +/node/statement/FunctionCall + var/func_name + var/node/identifier/object + var/list/parameters=new + +/* + Class: FunctionDefinition + Defines a function. +*/ +// +/node/statement/FunctionDefinition + var/func_name + var/list/parameters=new + var/node/BlockDefinition/FunctionBlock/block + +/* + Class: VariableAssignment + Sets a variable in an accessible scope to the given value if one exists, otherwise initializes a new local variable to the given value. + + Notes: + If a variable with the same name exists in a higher block, the value will be assigned to it. If not, + a new variable is created in the current block. To force creation of a new variable, use . + + See Also: + - +*/ +// +/node/statement/VariableAssignment + + var/node/identifier/object + var/node/identifier/var_name + var/node/expression/value + +/* + Class: VariableDeclaration + Intializes a local variable to a null value. + + See Also: + - +*/ +// +/node/statement/VariableDeclaration + + var/node/identifier/object + var/node/identifier/var_name +/* + Class: IfStatement +*/ +// +/node/statement/IfStatement + var/node/BlockDefinition/block + var/node/BlockDefinition/else_block + var/node/expression/cond + +/* + Class: WhileLoop + Loops while a given condition is true. +*/ +// +/node/statement/WhileLoop + + var/node/BlockDefinition/block + var/node/expression/cond + +/* + Class: ForLoop + Loops while test is true, initializing a variable, increasing the variable +*/ +/node/statement/ForLoop + var/node/BlockDefinition/block + var/node/expression/test + var/node/expression/init + var/node/expression/increment + +/* + Class: BreakStatement + Ends a loop. +*/ +// +/node/statement/BreakStatement + +/* + Class: ContinueStatement + Skips to the next iteration of a loop. +*/ +// +/node/statement/ContinueStatement + +/* + Class: ReturnStatement + Ends the function and returns a value. +*/ +// +/node/statement/ReturnStatement + var/node/expression/value diff --git a/mods/telecomms/code/scripting/Errors.dm b/mods/telecomms/code/scripting/Errors.dm new file mode 100644 index 0000000000000..ea82d6aeb2a2f --- /dev/null +++ b/mods/telecomms/code/scripting/Errors.dm @@ -0,0 +1,137 @@ +/* + File: Errors +*/ +/* + Class: scriptError + An error scanning or parsing the source code. +*/ +/scriptError + +/* + Var: message + A message describing the problem. +*/ + var/message +/scriptError/New(msg = null) + if(msg)message = msg + +/scriptError/BadToken + message = "Unexpected token: " + var/token/token + +/scriptError/BadToken/New(token/t) + token = t + if(t?.line) + message = "[t.line]: [message]" + if(t) + message += "[t.value]" + else + message += "[t]" + +/scriptError/InvalidID + parent_type = /scriptError/BadToken + message = "Invalid identifier name: " + +/scriptError/ReservedWord + parent_type = /scriptError/BadToken + message = "Identifer using reserved word: " + +/scriptError/BadNumber + parent_type = /scriptError/BadToken + message = "Bad number: " + +/scriptError/BadReturn + var/token/token + message = "Unexpected return statement outside of a function." + +/scriptError/BadReturn/New(token/t) + src.token = t + +/scriptError/EndOfFile + message = "Unexpected end of file." + +/scriptError/ExpectedToken + message = "Expected: '" + +/scriptError/ExpectedToken/New(id, token/T) + if(T?.line) + message = "[T.line]: [message]" + + message+="[id]'. " + if(T) + message += "Found '[T.value]'." + + +/scriptError/UnterminatedComment + message = "Unterminated multi-line comment statement: expected */" + +/scriptError/DuplicateFunction/New(name, token/t) + message = "Function '[name]' defined twice." + +/* + Class: runtimeError + An error thrown by the interpreter in running the script. +*/ +/runtimeError + var/name +/* + Var: message + A basic description as to what went wrong. +*/ + var/message + var/stack/stack +/* + Proc: ToString + Returns a description of the error suitable for showing to the user. +*/ +/runtimeError/proc/ToString() + . = "[name]: [message]" + if(!stack.Top()) return + . += "\nStack:" + while(stack.Top()) + var/node/statement/FunctionCall/stmt=stack.Pop() + . += "\n\t [stmt.func_name]()" + +/runtimeError/TypeMismatch + name = "TypeMismatchError" +/runtimeError/TypeMismatch/New(op, a, b) + message = "Type mismatch: '[a]' [op] '[b]'" + +/runtimeError/UnexpectedReturn + name = "UnexpectedReturnError" + message = "Unexpected return statement." + +/runtimeError/UnknownInstruction + name = "UnknownInstructionError" + message = "Unknown instruction type. This may be due to incompatible compiler and interpreter versions or a lack of implementation." + +/runtimeError/UndefinedVariable + name = "UndefinedVariableError" +/runtimeError/UndefinedVariable/New(variable) + message = "Variable '[variable]' has not been declared." + +/runtimeError/UndefinedFunction + name = "UndefinedFunctionError" +/runtimeError/UndefinedFunction/New(function) + message = "Function '[function]()' has not been defined." + +/runtimeError/DuplicateVariableDeclaration + name = "DuplicateVariableError" +/runtimeError/DuplicateVariableDeclaration/New(variable) + message = "Variable '[variable]' was already declared." + +/runtimeError/IterationLimitReached + name = "MaxIterationError" + message = "A loop has reached its maximum number of iterations." + +/runtimeError/RecursionLimitReached + name = "MaxRecursionError" + message = "The maximum amount of recursion has been reached." + +/runtimeError/DivisionByZero + name = "DivideByZeroError" + message = "Division by zero attempted." + +/runtimeError/MaxCPU + name = "MaxComputationalUse" + message = "Maximum amount of computational cycles reached (>= 1000)." diff --git a/mods/telecomms/code/scripting/IDE.dm b/mods/telecomms/code/scripting/IDE.dm new file mode 100644 index 0000000000000..6f1dda937e0e5 --- /dev/null +++ b/mods/telecomms/code/scripting/IDE.dm @@ -0,0 +1,211 @@ +/client/verb/tcssave() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || issilicon(mob)) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode != mob) + return + + if(Machine.SelectedServer) + var/obj/machinery/telecomms/server/Server = Machine.SelectedServer + var/tcscode=winget(src, "tcscode", "text") + var/msg="[mob.name] is adding script to server [Server]: [tcscode]" + log_misc(msg) + message_admins("[mob.name] has uploaded a NTLS script to [Machine.SelectedServer] ([mob.x],[mob.y],[mob.z] - JMP)",0,1) + Server.setcode( tcscode ) // this actually saves the code from input to the server + send_output(src, null, "tcserror") // clear the errors + else + send_output(src, null, "tcserror") + send_output(src, "Failed to save: Unable to locate server machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to save: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to save: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + + +/client/verb/tcscompile() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || (issilicon(mob) && istype(mob.machine, /obj/machinery/computer/telecomms/traffic) )) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode != mob) + return + + if(Machine.SelectedServer) + var/obj/machinery/telecomms/server/Server = Machine.SelectedServer + Server.setcode( winget(src, "tcscode", "text") ) // save code first + var/list/compileerrors = Server.compile() // then compile the code! + + // Output all the compile-time errors + send_output(src, null, "tcserror") + + if(LAZYLEN(compileerrors)) + send_output(src, "Compile Errors", "tcserror") + for(var/scriptError/e in compileerrors) + send_output(src, "\t>[e.message]", "tcserror") + send_output(src, "([LAZYLEN(compileerrors)] errors)", "tcserror") + + // Output compile errors to all other people viewing the code too + for(var/mob/M in Machine.viewingcode) + if(M.client) + send_output(M, null, "tcserror") + send_output(M, "Compile Errors", "tcserror") + for(var/scriptError/e in compileerrors) + send_output(M, "\t>[e.message]", "tcserror") + send_output(M, "([LAZYLEN(compileerrors)] errors)", "tcserror") + + + else + send_output(src, "TCS compilation successful!", "tcserror") + send_output(src, "(0 errors)", "tcserror") + + for(var/mob/M in Machine.viewingcode) + if(M.client) + send_output(M, "TCS compilation successful!", "tcserror") + send_output(M, "(0 errors)", "tcserror") + + else + send_output(src, null, "tcserror") + send_output(src, "Failed to compile: Unable to locate server machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to compile: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to compile: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + +/client/verb/tcsrun() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || (issilicon(mob) && istype(mob.machine, /obj/machinery/computer/telecomms/traffic) )) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode != mob) + return + + if(Machine.SelectedServer) + var/obj/machinery/telecomms/server/Server = Machine.SelectedServer + Server.setcode( winget(src, "tcscode", "text") ) // save code first + var/list/compileerrors = Server.compile() // then compile the code! + + // Output all the compile-time errors + send_output(src, null, "tcserror") + + if(LAZYLEN(compileerrors)) + send_output(src, "Compile Errors", "tcserror") + for(var/scriptError/e in compileerrors) + send_output(src, "\t>[e.message]", "tcserror") + send_output(src, "([LAZYLEN(compileerrors)] errors)", "tcserror") + + // Output compile errors to all other people viewing the code too + for(var/mob/M in Machine.viewingcode) + if(M.client) + send_output(M, null, "tcserror") + send_output(M, "Compile Errors", "tcserror") + for(var/scriptError/e in compileerrors) + send_output(M, "\t>[e.message]", "tcserror") + send_output(M, "([LAZYLEN(compileerrors)] errors)", "tcserror") + + else + // Finally, we run the code! + send_output(src, "TCS compilation successful! Code executed.", "tcserror") + send_output(src, "(0 errors)", "tcserror") + + for(var/mob/M in Machine.viewingcode) + if(M.client) + send_output(M, "TCS compilation successful!", "tcserror") + send_output(M, "(0 errors)", "tcserror") + + var/datum/signal/signal = new() + signal.data["message"] = "" + if(LAZYLEN(Server.freq_listening) > 0) + signal.frequency = Server.freq_listening[1] + else + signal.frequency = PUB_FREQ + signal.data["name"] = "" + signal.data["job"] = "" + signal.data["reject"] = 0 + signal.data["server"] = Server + + Server.Compiler.Run(signal) + + + else + send_output(src, null, "tcserror") + send_output(src, "Failed to run: Unable to locate server machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to run: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to run: Unable to locate machine. (Back up your code before exiting the window!)", "tcserror") + + +/client/verb/exittcs() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || (issilicon(mob) && istype(mob.machine, /obj/machinery/computer/telecomms/traffic) )) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode == mob) + Machine.storedcode = "[winget(mob, "tcscode", "text")]" + Machine.editingcode = null + else + if(mob in Machine.viewingcode) + Machine.viewingcode.Remove(mob) + +/client/verb/tcsrevert() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || (issilicon(mob) && istype(mob.machine, /obj/machinery/computer/telecomms/traffic) )) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode != mob) + return + + if(Machine.SelectedServer) + var/obj/machinery/telecomms/server/Server = Machine.SelectedServer + + // Replace quotation marks with quotation macros for proper winset() compatibility + var/showcode = replacetext(Server.rawcode, "\\\"", "\\\\\"") + showcode = replacetext(showcode, "\"", "\\\"") + + winset(mob, "tcscode", "text=\"[showcode]\"") + + send_output(src, null, "tcserror") // clear the errors + else + send_output(src, null, "tcserror") + send_output(src, "Failed to revert: Unable to locate server machine.", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to revert: Unable to locate machine.", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to revert: Unable to locate machine.", "tcserror") + + +/client/verb/tcsclearmem() + set hidden = 1 + if(mob.machine || issilicon(mob)) + if((istype(mob.machine, /obj/machinery/computer/telecomms/traffic) && (mob.machine in view(1, mob))) || (issilicon(mob) && istype(mob.machine, /obj/machinery/computer/telecomms/traffic) )) + var/obj/machinery/computer/telecomms/traffic/Machine = mob.machine + if(Machine.editingcode != mob) + return + + if(Machine.SelectedServer) + var/obj/machinery/telecomms/server/Server = Machine.SelectedServer + Server.memory = list() // clear the memory + // Show results + send_output(src, null, "tcserror") + send_output(src, "Server memory cleared!", "tcserror") + for(var/mob/M in Machine.viewingcode) + if(M.client) + send_output(M, "Server memory cleared!", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to clear memory: Unable to locate server machine.", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to clear memory: Unable to locate machine.", "tcserror") + else + send_output(src, null, "tcserror") + send_output(src, "Failed to clear memory: Unable to locate machine.", "tcserror") diff --git a/mods/telecomms/code/scripting/Implementations/Telecomms.dm b/mods/telecomms/code/scripting/Implementations/Telecomms.dm new file mode 100644 index 0000000000000..3637cc924d38a --- /dev/null +++ b/mods/telecomms/code/scripting/Implementations/Telecomms.dm @@ -0,0 +1,272 @@ +//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 + + +/* --- Traffic Control Scripting Language --- */ + // Nanotrasen TCS Language - Made by Doohl + +/n_Interpreter/TCS_Interpreter + var/datum/TCS_Compiler/Compiler + +/n_Interpreter/TCS_Interpreter/HandleError(runtimeError/e) + Compiler.Holder.add_entry(e.ToString(), "Execution Error") + +/datum/TCS_Compiler + var/n_Interpreter/TCS_Interpreter/interpreter + var/obj/machinery/telecomms/server/Holder // the server that is running the code + var/ready = 1 // 1 if ready to run code + + /* -- Compile a raw block of text -- */ + +/datum/TCS_Compiler/proc/Compile(code as message) + var/n_scriptOptions/nS_Options/options = new() + var/n_Scanner/nS_Scanner/scanner = new(code, options) + var/list/tokens = scanner.Scan() + var/n_Parser/nS_Parser/parser = new(tokens, options) + var/node/BlockDefinition/GlobalBlock/program = parser.Parse() + + var/list/returnerrors = list() + + returnerrors += scanner.errors + returnerrors += parser.errors + + if(LAZYLEN(returnerrors)) + return returnerrors + + interpreter = new(program) + interpreter.persist = 1 + interpreter.Compiler= src + + return returnerrors + + /* -- Execute the compiled code -- */ + +/datum/TCS_Compiler/proc/Run(datum/signal/signal) + + if(!ready) + return + + if(!interpreter) + return + + interpreter.container = src + + interpreter.SetVar("PI" , 3.141592653) // value of pi + interpreter.SetVar("E" , 2.718281828) // value of e + interpreter.SetVar("SQURT2" , 1.414213562) // value of the square root of 2 + interpreter.SetVar("FALSE" , 0) // boolean shortcut to 0 + interpreter.SetVar("TRUE" , 1) // boolean shortcut to 1 + + interpreter.SetVar("NORTH" , NORTH) // NORTH (1) + interpreter.SetVar("SOUTH" , SOUTH) // SOUTH (2) + interpreter.SetVar("EAST" , EAST) // EAST (4) + interpreter.SetVar("WEST" , WEST) // WEST (8) + + // Channel macros + interpreter.SetVar("$common", PUB_FREQ) + interpreter.SetVar("$science", SCI_FREQ) + interpreter.SetVar("$command", COMM_FREQ) + interpreter.SetVar("$medical", MED_FREQ) + interpreter.SetVar("$engineering",ENG_FREQ) + interpreter.SetVar("$security", SEC_FREQ) + interpreter.SetVar("$supply", SUP_FREQ) + interpreter.SetVar("$exploration", EXP_FREQ) + + // Signal data + + interpreter.SetVar("$content", signal.data["message"]) + interpreter.SetVar("$freq" , signal.frequency) + interpreter.SetVar("$source" , signal.data["name"]) + interpreter.SetVar("$job" , signal.data["job"]) + interpreter.SetVar("$sign" , signal) + interpreter.SetVar("$pass" , !(signal.data["reject"])) // if the signal isn't rejected, pass = 1; if the signal IS rejected, pass = 0 + + // Set up the script procs + + /* + -> Send another signal to a server + @format: broadcast(content, frequency, source, job) + + @param content: Message to broadcast + @param frequency: Frequency to broadcast to + @param source: The name of the source you wish to imitate. Must be stored in stored_names list. + @param job: The name of the job. + */ + interpreter.SetProc("broadcast", "tcombroadcast", signal, list("message", "freq", "source", "job")) + + /* + -> Store a value permanently to the server machine (not the actual game hosting machine, the ingame machine) + @format: mem(address, value) + + @param address: The memory address (string index) to store a value to + @param value: The value to store to the memory address + */ + interpreter.SetProc("mem", "mem", signal, list("address", "value")) + + /* + -> Delay code for a given amount of deciseconds + @format: sleep(time) + + @param time: time to sleep in deciseconds (1/10th second) + */ + interpreter.SetProc("sleep", /proc/delay) + + /* + -> Replaces a string with another string + @format: replace(string, substring, replacestring) + + @param string: the string to search for substrings (best used with $content$ constant) + @param substring: the substring to search for + @param replacestring: the string to replace the substring with + + */ + interpreter.SetProc("replace", /proc/string_replacetext) + + /* + -> Locates an element/substring inside of a list or string + @format: find(haystack, needle, start = 1, end = 0) + + @param haystack: the container to search + @param needle: the element to search for + @param start: the position to start in + @param end: the position to end in + + */ + interpreter.SetProc("find", /proc/smartfind) + + /* + -> Finds the length of a string or list + @format: length(container) + + @param container: the list or container to measure + + */ + interpreter.SetProc("length", /proc/smartlength) + + /* -- Clone functions, carried from default BYOND procs --- */ + + // vector namespace + interpreter.SetProc("vector", /proc/n_list) + interpreter.SetProc("at", /proc/n_listpos) + interpreter.SetProc("copy", /proc/n_listcopy) + interpreter.SetProc("push_back", /proc/n_listadd) + interpreter.SetProc("remove", /proc/n_listremove) + interpreter.SetProc("cut", /proc/n_listcut) + interpreter.SetProc("swap", /proc/n_listswap) + interpreter.SetProc("insert", /proc/n_listinsert) + + interpreter.SetProc("pick", /proc/n_pick) + interpreter.SetProc("prob", /proc/prob_chance) + interpreter.SetProc("substr", /proc/docopytext) + + // Donkie~ + // Strings + interpreter.SetProc("lower", /proc/n_lower) + interpreter.SetProc("upper", /proc/n_upper) + interpreter.SetProc("explode", /proc/string_explode) + interpreter.SetProc("repeat", /proc/n_repeat) + interpreter.SetProc("reverse", /proc/n_reverse) + interpreter.SetProc("tonum", /proc/n_str2num) + + // Numbers + interpreter.SetProc("tostring", /proc/n_num2str) + interpreter.SetProc("sqrt", /proc/n_sqrt) + interpreter.SetProc("abs", /proc/n_abs) + interpreter.SetProc("floor", /proc/n_floor) + interpreter.SetProc("ceil", /proc/n_ceil) + interpreter.SetProc("round", /proc/n_round) + interpreter.SetProc("clamp", /proc/n_clamp) + interpreter.SetProc("inrange", /proc/n_inrange) + // End of Donkie~ + + + // Run the compiled code + interpreter.Run() + + // Backwards-apply variables onto signal data + /* sanitize EVERYTHING. fucking players can't be trusted with SHIT */ + + signal.data["message"] = sanitize_html(interpreter.GetVar("$content")) // 512 extra symbols + signal.frequency = interpreter.GetVar("$freq") + + var/setname = "" + var/obj/machinery/telecomms/server/S = signal.data["server"] + if(interpreter.GetVar("$source") in S.stored_names) + setname = interpreter.GetVar("$source") + else + setname = "[interpreter.GetVar("$source")]" + + if(signal.data["name"] != setname) + signal.data["realname"] = setname + signal.data["name"] = setname + signal.data["job"] = interpreter.GetVar("$job") + signal.data["reject"] = !(interpreter.GetVar("$pass")) // set reject to the opposite of $pass + + // If the message is invalid, just don't broadcast it! + if(signal.data["message"] == "" || !signal.data["message"]) + signal.data["reject"] = 1 + +/* -- Actual language proc code -- */ + +/datum/signal/proc/mem(address, value) + if(istext(address)) + var/obj/machinery/telecomms/server/S = data["server"] + + if(!value && value != 0) + return S.memory[address] + + else + S.memory[address] = value + + +/datum/signal/proc/tcombroadcast(message, freq, source, job) + var/datum/signal/newsign = new + var/obj/machinery/telecomms/server/S = data["server"] + var/obj/item/device/radio/hradio = S.server_radio + + if(!hradio) + error("[src] has no radio.") + return + + if((!message || message == "") && message != 0) + message = "*beep*" + if(!source) + source = "[html_encode(uppertext(S.id))]" + hradio = new // sets the hradio as a radio intercom + if(!freq) + freq = PUB_FREQ + if(findtext(num2text(freq), ".")) // if the frequency has been set as a decimal + freq *= 10 // shift the decimal one place + + if(!job) + job = "?" + + message = sanitize_html(message) + + newsign.data["mob"] = null + newsign.data["mobtype"] = /mob/living/carbon/human + if(source in S.stored_names) + newsign.data["name"] = source + else + newsign.data["name"] = "[html_encode(uppertext(source))]" + newsign.data["realname"] = newsign.data["name"] + newsign.data["job"] = job + newsign.data["compression"] = 0 + newsign.data["message"] = message + newsign.data["type"] = 2 // artificial broadcast + if(!isnum(freq)) + freq = text2num(freq) + newsign.frequency = freq + + var/datum/radio_frequency/connection = radio_controller.return_frequency(freq) + newsign.data["connection"] = connection + + + newsign.data["radio"] = hradio + newsign.data["vmessage"] = message + newsign.data["vname"] = source + newsign.data["vmask"] = 0 + newsign.data["level"] = list() + + var/pass = S.relay_information(newsign, /obj/machinery/telecomms/hub) + if(!pass) + S.relay_information(newsign, /obj/machinery/telecomms/broadcaster) // send this simple message to broadcasters diff --git a/mods/telecomms/code/scripting/Implementations/_Logic.dm b/mods/telecomms/code/scripting/Implementations/_Logic.dm new file mode 100644 index 0000000000000..41770f953165f --- /dev/null +++ b/mods/telecomms/code/scripting/Implementations/_Logic.dm @@ -0,0 +1,294 @@ +// Script -> BYOND code procs +#define SCRIPT_MAX_REPLACEMENTS_ALLOWED 200 +// --- List operations (lists known as vectors in n_script) --- + +// Clone of list() +/proc/n_list() + var/list/returnlist = list() + for(var/e in args) + returnlist.Add(e) + return returnlist + +// Clone of pick() +/proc/n_pick() + var/list/finalpick = list() + for(var/e in args) + if(isobject(e)) + if(istype(e, /list)) + var/list/sublist = e + for(var/sube in sublist) + finalpick.Add(sube) + continue + finalpick.Add(e) + + return pick(finalpick) + +// Clone of list[] +/proc/n_listpos(list/L, pos, value) + if(!istype(L, /list)) return + if(isnum(pos)) + if(!value) + if(LAZYLEN(L) >= pos) + return L[pos] + else + if(LAZYLEN(L) >= pos) + L[pos] = value + else if(istext(pos)) + if(!value) + return L[pos] + else + L[pos] = value + +// Clone of list.Copy() +/proc/n_listcopy(list/L, start, end) + if(!istype(L, /list)) return + return L.Copy(start, end) + +// Clone of list.Add() +/proc/n_listadd() + var/list/chosenlist + var/i = 1 + for(var/e in args) + if(i == 1) + if(isobject(e)) + if(istype(e, /list)) + chosenlist = e + i = 2 + else + if(chosenlist) + chosenlist.Add(e) + +// Clone of list.Remove() +/proc/n_listremove() + var/list/chosenlist + var/i = 1 + for(var/e in args) + if(i == 1) + if(isobject(e)) + if(istype(e, /list)) + chosenlist = e + i = 2 + else + if(chosenlist) + chosenlist.Remove(e) + +// Clone of list.Cut() +/proc/n_listcut(list/L, start, end) + if(!istype(L, /list)) return + return L.Cut(start, end) + +// Clone of list.Swap() +/proc/n_listswap(list/L, firstindex, secondindex) + if(!istype(L, /list)) return + if(LAZYLEN(L) >= secondindex && LAZYLEN(L) >= firstindex) + return L.Swap(firstindex, secondindex) + +// Clone of list.Insert() +/proc/n_listinsert(list/L, index, element) + if(!istype(L, /list)) return + return L.Insert(index, element) + +// --- Miscellaneous functions --- + +// Clone of sleep() +/proc/delay(time) + sleep(time) + +// Clone of prob() +/proc/prob_chance(chance) + return prob(chance) + +// Merge of list_find() and findtext() +/proc/smartfind(haystack, needle, start = 1, end = 0) + if(haystack && needle) + if(isobject(haystack)) + if(istype(haystack, /list)) + if(length(haystack) >= end && start > 0) + var/list/listhaystack = haystack + return list_find(listhaystack, needle, start, end) + + else + if(istext(haystack)) + if(length(haystack) >= end && start > 0) + return findtext_char(haystack, needle, start, end) + +// Clone of copytext() +/proc/docopytext(string, start = 1, end = 0) + if(istext(string) && isnum(start) && isnum(end)) + if(start > 0) + return copytext(string, start, end) + +// Clone of length() +/proc/smartlength(container) + if(container) + if(istype(container, /list)) + return length(container) + else + if(istext(container)) + return length_char(container) + +// BY DONKIE~ +// String stuff +/proc/n_lower(string) + if(istext(string)) + return lowertext(string) + +/proc/n_upper(string) + if(istext(string)) + return uppertext(string) + +/* +//Makes a list where all indicies in a string is a seperate index in the list +// JUST A HELPER DON'T ADD TO NTSCRIPT +/proc/string_tolist(string) + var/list/L = list() + + var/i + for(i=1, i<=length(string), i++) + L.Add(copytext(string, i, i)) + + return L + +/proc/string_explode(string, separator) + if(istext(string)) + if(istext(separator) && separator == "") + return string_tolist(string) + var/i + var/lasti = 1 + var/list/L = list() + + for(i=1, i<=length(string)+1, i++) + if(copytext(string, i, i+1) == separator) // We found a separator + L.Add(copytext(string, lasti, i)) + lasti = i+1 + + L.Add(copytext(string, lasti, length(string)+1)) // Adds the last segment + + return L + +Just found out there was already a string explode function, did some benchmarking, and that function were a bit faster, sticking to that. +*/ +/proc/string_explode(string, separator) + if(istext(string) && istext(separator)) + return splittext(string, separator) + +/proc/n_repeat(string, amount) + if(istext(string) && isnum(amount)) + var/i + var/newstring = "" + if(length(newstring)*amount >=1000) + return + for(i=0, i<=amount, i++) + if(i>=1000) + break + newstring = newstring + string + + return newstring + +/proc/n_reverse(string) + if(istext(string)) + var/newstring = "" + var/i + for(i=length(string), i>0, i--) + if(i>=1000) + break + newstring = newstring + copytext(string, i, i+1) + + return newstring + +// I don't know if it's neccesary to make my own proc, but I think I have to to be able to check for istext. +/proc/n_str2num(string) + if(istext(string)) + return text2num(string) + +// Number shit +/proc/n_num2str(num) + if(isnum(num)) + return num2text(num) + +// Squareroot +/proc/n_sqrt(num) + if(isnum(num)) + return sqrt(num) + +// Magnitude of num +/proc/n_abs(num) + if(isnum(num)) + return abs(num) + +// Round down +/proc/n_floor(num) + if(isnum(num)) + return round(num) + +// Round up +/proc/n_ceil(num) + if(isnum(num)) + return round(num)+1 + +// Round to nearest integer +/proc/n_round(num) + if(isnum(num)) + if(num-round(num)<0.5) + return round(num) + return n_ceil(num) + +// Clamps N between min and max +/proc/n_clamp(num, min=-1, max=1) + if(isnum(num)&&isnum(min)&&isnum(max)) + if(num<=min) + return min + if(num>=max) + return max + return num + +// Returns 1 if N is inbetween Min and Max +/proc/n_inrange(num, min=-1, max=1) + if(isnum(num)&&isnum(min)&&isnum(max)) + return ((min <= num) && (num <= max)) +// END OF BY DONKIE :( + +// Non-recursive +// Imported from Mono string.ReplaceUnchecked +/proc/string_replacetext(haystack, a, b) + if(istext(haystack)&&istext(a)&&istext(b)) + var/i = 1 + var/lenh=length_char(haystack) + var/lena=length_char(a) + //var/lenb=length(b) + var/count = 0 + var/list/dat = list() + while (i < lenh) + var/found = findtext_char(haystack, a, i, 0) + //log_misc("findtext([haystack], [a], [i], 0)=[found]") + if (found == 0) // Not found + break + else + if (count < SCRIPT_MAX_REPLACEMENTS_ALLOWED) + dat+=found + count+=1 + else + //log_misc("Script found [a] [count] times, aborted") + break + //log_misc("Found [a] at [found]! Moving up...") + i = found + lena + if (count == 0) + return haystack + //var/nlen = lenh + ((lenb - lena) * count) + var/buf = copytext_char(haystack,1,dat[1]) // Prefill + var/lastReadPos = 0 + for (i = 1, i <= count, i++) + var/precopy = dat[i] - lastReadPos-1 + //internal static unsafe void CharCopy (String target, int targetIndex, String source, int sourceIndex, int count) + //fixed (char* dest = target, src = source) + //CharCopy (dest + targetIndex, src + sourceIndex, count); + //CharCopy (dest + curPos, source + lastReadPos, precopy); + buf+=copytext_char(haystack,lastReadPos,precopy) + log_misc("buf+=copytext([haystack],[lastReadPos],[precopy])") + log_misc("[buf]") + lastReadPos = dat[i] + lena + //CharCopy (dest + curPos, replace, newValue.length); + buf+=b + log_misc("[buf]") + buf+=copytext_char(haystack,lastReadPos, 0) + return buf diff --git a/mods/telecomms/code/scripting/Interpreter/Evaluation.dm b/mods/telecomms/code/scripting/Interpreter/Evaluation.dm new file mode 100644 index 0000000000000..39b004669c1dd --- /dev/null +++ b/mods/telecomms/code/scripting/Interpreter/Evaluation.dm @@ -0,0 +1,207 @@ +/proc/isobject(x) + return (istype(x, /datum) || istype(x, /list) || istype(x, /savefile) || istype(x, /client) || (x==world)) + +/n_Interpreter/proc/Eval(node/expression/exp) + if(istype(exp, /node/expression/FunctionCall)) + return RunFunction(exp) + else if(istype(exp, /node/expression/c_operator)) + return EvalOperator(exp) + else if(istype(exp, /node/expression/value/literal)) + var/node/expression/value/literal/lit=exp + return lit.value + else if(istype(exp, /node/expression/value/reference)) + var/node/expression/value/reference/ref=exp + return ref.value + else if(istype(exp, /node/expression/value/variable)) + var/node/expression/value/variable/v=exp + if(!v.object) + return Eval(GetVariable(v.id.id_name)) + else + var/datum/D + if(istype(v.object, /node/identifier)) + D=GetVariable(v.object:id_name) + else + D=v.object + D=Eval(D) + if(!isobject(D)) + return null + if(!list_find(D.vars, v.id.id_name)) + RaiseError(new/runtimeError/UndefinedVariable("[v.object.ToString()].[v.id.id_name]")) + return null + return Eval(D.vars[v.id.id_name]) + else if(istype(exp, /node/expression)) + RaiseError(new/runtimeError/UnknownInstruction()) + else + return exp + +/n_Interpreter/proc/EvalOperator(node/expression/c_operator/exp) + if(istype(exp, /node/expression/c_operator/binary)) + var/node/expression/c_operator/binary/bin=exp + switch(bin.type) + if(/node/expression/c_operator/binary/Equal) + return Equal(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/NotEqual) + return NotEqual(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Greater) + return Greater(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Less) + return Less(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/GreaterOrEqual) + return GreaterOrEqual(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/LessOrEqual) + return LessOrEqual(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/LogicalAnd) + return LogicalAnd(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/LogicalOr) + return LogicalOr(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/LogicalXor) + return LogicalXor(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/BitwiseAnd) + return BitwiseAnd(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/BitwiseOr) + return BitwiseOr(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/BitwiseXor) + return BitwiseXor(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Add) + return Add(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Subtract) + return Subtract(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Multiply) + return Multiply(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Divide) + return Divide(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Power) + return Power(Eval(bin.exp), Eval(bin.exp2)) + if(/node/expression/c_operator/binary/Modulo) + return Modulo(Eval(bin.exp), Eval(bin.exp2)) + else + RaiseError(new/runtimeError/UnknownInstruction()) + else + switch(exp.type) + if(/node/expression/c_operator/unary/Minus) + return Minus(Eval(exp.exp)) + if(/node/expression/c_operator/unary/LogicalNot) + return LogicalNot(Eval(exp.exp)) + if(/node/expression/c_operator/unary/BitwiseNot) + return BitwiseNot(Eval(exp.exp)) + if(/node/expression/c_operator/unary/group) + return Eval(exp.exp) + else + RaiseError(new/runtimeError/UnknownInstruction()) + + +//Binary// +//Comparison operators + +/n_Interpreter/proc/Equal(a, b) + return a==b + +/n_Interpreter/proc/NotEqual(a, b) + return a!=b //LogicalNot(Equal(a, b)) + +/n_Interpreter/proc/Greater(a, b) + return a>b + +/n_Interpreter/proc/Less(a, b) + return a=b + +/n_Interpreter/proc/LessOrEqual(a, b) + return a<=b + +//Logical Operators + +/n_Interpreter/proc/LogicalAnd(a, b) + return a&&b + +/n_Interpreter/proc/LogicalOr(a, b) + return a||b + +/n_Interpreter/proc/LogicalXor(a, b) + return (a||b) && !(a&&b) + + //Bitwise Operators +/n_Interpreter/proc/BitwiseAnd(a, b) + return a&b + +/n_Interpreter/proc/BitwiseOr(a, b) + return a|b + +/n_Interpreter/proc/BitwiseXor(a, b) + return a^b + +//Arithmetic Operators + +/n_Interpreter/proc/Add(a, b) + if(istext(a)&&!istext(b)) + b="[b]" + else if(istext(b)&&!istext(a)) + a="[a]" + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("+", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("+", a, b)) + return null + return a+b + +/n_Interpreter/proc/Subtract(a, b) + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("-", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("-", a, b)) + return null + return a-b + +/n_Interpreter/proc/Divide(a, b) + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("/", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("/", a, b)) + return null + if(b==0) + RaiseError(new/runtimeError/DivisionByZero()) + return null + return a/b + +/n_Interpreter/proc/Multiply(a, b) + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("*", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("*", a, b)) + return null + return a*b + +/n_Interpreter/proc/Modulo(a, b) + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("%", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("%", a, b)) + return null + return a%b + +/n_Interpreter/proc/Power(a, b) + if(isobject(a) && !isobject(b)) + RaiseError(new/runtimeError/TypeMismatch("**", a, b)) + return null + else if(isobject(b) && !isobject(a)) + RaiseError(new/runtimeError/TypeMismatch("**", a, b)) + return null + return a**b + +//Unary// + +/n_Interpreter/proc/Minus(a) + return -a + +/n_Interpreter/proc/LogicalNot(a) + return !a + +/n_Interpreter/proc/BitwiseNot(a) + return ~a diff --git a/mods/telecomms/code/scripting/Interpreter/Interaction.dm b/mods/telecomms/code/scripting/Interpreter/Interaction.dm new file mode 100644 index 0000000000000..e052ebbba22f1 --- /dev/null +++ b/mods/telecomms/code/scripting/Interpreter/Interaction.dm @@ -0,0 +1,139 @@ +/* + File: Interpreter (Public) + Contains methods for interacting with the interpreter. +*/ +/* + Class: n_Interpreter + Procedures allowing for interaction with the script that is being run by the interpreter object. +*/ + +/* + Proc: Load + Loads a 'compiled' script into memory. + + Parameters: + program - A object which represents the script's global scope. +*/ +/n_Interpreter/proc/Load(node/BlockDefinition/GlobalBlock/program) + ASSERT(program) + src.program = program + CreateGlobalScope() + +/* + Proc: Run + Runs the script. +*/ +/n_Interpreter/proc/Run() + cur_recursion = 0 // reset recursion + cur_statements = 0 // reset CPU tracking + alertadmins = 0 + + ASSERT(src.program) + RunBlock(src.program) + +/* + Proc: SetVar + Defines a global variable for the duration of the next execution of a script. + + Notes: + This differs from in that variables set using this procedure only last for the session, + while those defined from the block object persist if it is ran multiple times. + + See Also: + - +*/ +/n_Interpreter/proc/SetVar(name, value) + if(!istext(name)) + //CRASH("Invalid variable name") + return + AssignVariable(name, value) + +/* + Proc: SetProc + Defines a procedure to be available to the script. + + Parameters: + name - The name of the procedure as exposed to the script. + path - The typepath of a proc to be called when the function call is read by the interpreter, or, if object is specified, a string representing the procedure's name. + object - (Optional) An object which will the be target of a function call. + params - Only required if object is not null, a list of the names of parameters the proc takes. +*/ +/n_Interpreter/proc/SetProc(name, path, object=null, list/params=null) + if(!istext(name)) + //CRASH("Invalid function name") + return + if(!object) + globalScope.functions[name] = path + else + var/node/statement/FunctionDefinition/S = new() + S.func_name = name + S.parameters = params + S.block = new() + S.block.SetVar("src", object) + var/node/expression/FunctionCall/C = new() + C.func_name = path + C.object = new("src") + for(var/p in params) + C.parameters += new/node/expression/value/variable(p) + var/node/statement/ReturnStatement/R=new() + R.value=C + S.block.statements += R + globalScope.functions[name] = S +/* + Proc: VarExists + Checks whether a global variable with the specified name exists. +*/ +/n_Interpreter/proc/VarExists(name) + return list_find(globalScope.variables, name) //convert to 1/0 first? + +/* + Proc: ProcExists + Checks whether a global function with the specified name exists. +*/ +/n_Interpreter/proc/ProcExists(name) + return list_find(globalScope.functions, name) + +/* + Proc: GetVar + Returns the value of a global variable in the script. Remember to ensure that the variable exists before calling this procedure. + + See Also: + - +*/ +/n_Interpreter/proc/GetVar(name) + if(!VarExists(name)) + //CRASH("No variable named '[name]'.") + return + var/x = globalScope.variables[name] + return Eval(x) + +/* + Proc: CallProc + Calls a global function defined in the script and, amazingly enough, returns its return value. Remember to ensure that the function + exists before calling this procedure. + + See Also: + - +*/ +/n_Interpreter/proc/CallProc(name, params[]=null) + if(!ProcExists(name)) + //CRASH("No function named '[name]'.") + return + var/node/statement/FunctionDefinition/func = globalScope.functions[name] + if(istype(func)) + var/node/statement/FunctionCall/stmt = new + stmt.func_name = func.func_name + stmt.parameters = params + return RunFunction(stmt) + else + return call(func)(arglist(params)) + //CRASH("Unknown function type '[name]'.") + +/* + Event: HandleError + Called when the interpreter throws a runtime error. + + See Also: + - +*/ +/n_Interpreter/proc/HandleError(runtimeError/e) diff --git a/mods/telecomms/code/scripting/Interpreter/Interpreter.dm b/mods/telecomms/code/scripting/Interpreter/Interpreter.dm new file mode 100644 index 0000000000000..d1e69213e90a3 --- /dev/null +++ b/mods/telecomms/code/scripting/Interpreter/Interpreter.dm @@ -0,0 +1,315 @@ +/* + File: Interpreter (Internal) +*/ +/* + Class: n_Interpreter +*/ +/* + Macros: Status Macros + RETURNING - Indicates that the current function is returning a value. + BREAKING - Indicates that the current loop is being terminated. + CONTINUING - Indicates that the rest of the current iteration of a loop is being skipped. +*/ +#define RETURNING 1 +#define BREAKING 2 +#define CONTINUING 4 + +/n_Interpreter + var/scope/curScope + var/scope/globalScope + var/node/BlockDefinition/program + var/node/statement/FunctionDefinition/curFunction + var/stack/scopes = new() + var/stack/functions = new() + var/datum/container // associated container for interpeter +/* + Var: status + A variable indicating that the rest of the current block should be skipped. This may be set to any combination of . +*/ + var/status=0 + var/returnVal + + var/max_statements=1000 // maximum amount of statements that can be called in one execution. this is to prevent massive crashes and exploitation + var/cur_statements=0 // current amount of statements called + var/alertadmins=0 // set to 1 if the admins shouldn't be notified of anymore issues + var/max_iterations=100 // max number of uninterrupted loops possible + var/max_recursion=50 // max recursions without returning anything (or completing the code block) + var/cur_recursion=0 // current amount of recursion +/* + Var: persist + If 0, global variables will be reset after Run() finishes. +*/ + var/persist=1 + var/paused=0 + +/* + Constructor: New + Calls with the given parameters. +*/ +/n_Interpreter/New(node/BlockDefinition/GlobalBlock/program=null) + .=..() + if(program)Load(program) + + +/* + Proc: RaiseError + Raises a runtime error. +*/ +/n_Interpreter/proc/RaiseError(runtimeError/e) + e.stack=functions.Copy() + e.stack.Push(curFunction) + src.HandleError(e) + +/n_Interpreter/proc/CreateScope(node/BlockDefinition/B) + var/scope/S = new(B, curScope) + scopes.Push(curScope) + curScope = S + return S + +/n_Interpreter/proc/CreateGlobalScope() + scopes.Clear() + var/scope/S = new(program, null) + globalScope = S + return S + +/* + Proc: RunBlock + Runs each statement in a block of code. +*/ +/n_Interpreter/proc/RunBlock(node/BlockDefinition/Block, scope/scope = null) + var/is_global = istype(Block, /node/BlockDefinition/GlobalBlock) + if(!is_global) + if(scope) + curScope = scope + else + CreateScope(Block) + else + if(!persist) + CreateGlobalScope() + curScope = globalScope + + if(cur_statements < max_statements) + + for(var/node/statement/S in Block.statements) + while(paused) sleep(10) + + cur_statements++ + if(cur_statements >= max_statements) + RaiseError(new/runtimeError/MaxCPU()) + + if(container && !alertadmins) + if(istype(container, /datum/TCS_Compiler)) + var/datum/TCS_Compiler/Compiler = container + var/obj/machinery/telecomms/server/Holder = Compiler.Holder + var/message = "Potential crash-inducing NTSL script detected at telecommunications server [Compiler.Holder] ([Holder.x], [Holder.y], [Holder.z])." + + alertadmins = 1 + message_admins(message, 1) + break + + if(istype(S, /node/statement/VariableAssignment)) + var/node/statement/VariableAssignment/stmt = S + var/name = stmt.var_name.id_name + if(!stmt.object) + // Below we assign the variable first to null if it doesn't already exist. + // This is necessary for assignments like +=, and when the variable is used in a function + // If the variable already exists in a different block, then AssignVariable will automatically use that one. + if(!IsVariableAccessible(name)) + AssignVariable(name, null) + AssignVariable(name, Eval(stmt.value)) + else + var/datum/D = Eval(GetVariable(stmt.object.id_name)) + if(!D) return + D.vars[stmt.var_name.id_name] = Eval(stmt.value) + else if(istype(S, /node/statement/VariableDeclaration)) + //VariableDeclaration nodes are used to forcibly declare a local variable so that one in a higher scope isn't used by default. + var/node/statement/VariableDeclaration/dec=S + if(!dec.object) + AssignVariable(dec.var_name.id_name, null, curScope) + else + var/datum/D = Eval(GetVariable(dec.object.id_name)) + if(!D) return + D.vars[dec.var_name.id_name] = null + else if(istype(S, /node/statement/FunctionCall)) + RunFunction(S) + else if(istype(S, /node/statement/FunctionDefinition)) + //do nothing + else if(istype(S, /node/statement/WhileLoop)) + RunWhile(S) + else if(istype(S, /node/statement/IfStatement)) + RunIf(S) + else if(istype(S, /node/statement/ReturnStatement)) + if(!curFunction) + RaiseError(new/runtimeError/UnexpectedReturn()) + continue + status |= RETURNING + returnVal=Eval(S:value) + break + else if(istype(S, /node/statement/BreakStatement)) + status |= BREAKING + break + else if(istype(S, /node/statement/ContinueStatement)) + status |= CONTINUING + break + else + RaiseError(new/runtimeError/UnknownInstruction()) + if(status) + break + + curScope = scopes.Pop() + +/* + Proc: RunFunction + Runs a function block or a proc with the arguments specified in the script. +*/ +/n_Interpreter/proc/RunFunction(node/statement/FunctionCall/stmt) + //Note that anywhere /node/statement/FunctionCall/stmt is used so may /node/expression/FunctionCall + + // If recursion gets too high (max 50 nested functions) throw an error + if(cur_recursion >= max_recursion) + RaiseError(new/runtimeError/RecursionLimitReached()) + return 0 + + var/node/statement/FunctionDefinition/def + if(!stmt.object) //A scope's function is being called, stmt.object is null + def = GetFunction(stmt.func_name) + else if(istype(stmt.object)) //A method of an object exposed as a variable is being called, stmt.object is a /node/identifier + var/O = GetVariable(stmt.object.id_name) //Gets a reference to the object which is the target of the function call. + if(!O) return //Error already thrown in GetVariable() + def = Eval(O) + + if(!def) return + + cur_recursion++ // add recursion + if(istype(def)) + if(curFunction) functions.Push(curFunction) + var/scope/S = CreateScope(def.block) + for(var/i=1 to LAZYLEN(def.parameters)) + var/val + if(LAZYLEN(stmt.parameters)>=i) + val = stmt.parameters[i] + //else + // unspecified param + AssignVariable(def.parameters[i], new/node/expression/value/literal(Eval(val)), S) + curFunction=stmt + RunBlock(def.block, S) + //Handle return value + . = returnVal + status &= ~RETURNING + returnVal=null + curFunction=functions.Pop() + cur_recursion-- + else + cur_recursion-- + var/list/params=new + for(var/node/expression/P in stmt.parameters) + params+=list(Eval(P)) + if(isobject(def)) //def is an object which is the target of a function call + if( !hascall(def, stmt.func_name) ) + RaiseError(new/runtimeError/UndefinedFunction("[stmt.object.id_name].[stmt.func_name]")) + return + return call(def, stmt.func_name)(arglist(params)) + else //def is a path to a global proc + return call(def)(arglist(params)) + //else + // RaiseError(new/runtimeError/UnknownInstruction()) + +/* + Proc: RunIf + Checks a condition and runs either the if block or else block. +*/ +/n_Interpreter/proc/RunIf(node/statement/IfStatement/stmt) + if(Eval(stmt.cond)) + RunBlock(stmt.block) + else if(stmt.else_block) + RunBlock(stmt.else_block) + +/* + Proc: RunWhile + Runs a while loop. +*/ +/n_Interpreter/proc/RunWhile(node/statement/WhileLoop/stmt) + var/i=1 + while(Eval(stmt.cond) && Iterate(stmt.block, i++)) + continue + status &= ~BREAKING + +/* + Proc:Iterate + Runs a single iteration of a loop. Returns a value indicating whether or not to continue looping. +*/ +/n_Interpreter/proc/Iterate(node/BlockDefinition/block, count) + RunBlock(block) + if(max_iterations > 0 && count >= max_iterations) + RaiseError(new/runtimeError/IterationLimitReached()) + return 0 + if(status & (BREAKING|RETURNING)) + return 0 + status &= ~CONTINUING + return 1 + +/* + Proc: GetFunction + Finds a function in an accessible scope with the given name. Returns a . +*/ +/n_Interpreter/proc/GetFunction(name) + var/scope/S = curScope + while(S) + if(list_find(S.functions, name)) + return S.functions[name] + S = S.parent + RaiseError(new/runtimeError/UndefinedFunction(name)) + +/* + Proc: GetVariable + Finds a variable in an accessible scope and returns its value. +*/ +/n_Interpreter/proc/GetVariable(name) + var/scope/S = curScope + while(S) + if(list_find(S.variables, name)) + return S.variables[name] + S = S.parent + RaiseError(new/runtimeError/UndefinedVariable(name)) + +/n_Interpreter/proc/GetVariableScope(name) //needed for when you reassign a variable in a higher scope + var/scope/S = curScope + while(S) + if(list_find(S.variables, name)) + return S + S = S.parent + + +/n_Interpreter/proc/IsVariableAccessible(name) + var/scope/S = curScope + while(S) + if(list_find(S.variables, name)) + return TRUE + S = S.parent + return FALSE + + +/* + Proc: AssignVariable + Assigns a value to a variable in a specific block. + + Parameters: + name - The name of the variable to assign. + value - The value to assign to it. + S - The scope the variable resides in. If it is null, a scope with the variable already existing is found. If no scopes have a variable of the given name, the current scope is used. +*/ +/n_Interpreter/proc/AssignVariable(name, node/expression/value, scope/S=null) + if(!S) + S = GetVariableScope(name) + if(!S) + S = curScope + if(!S) + S = globalScope + ASSERT(istype(S)) + if(istext(value) || isnum(value) || isnull(value)) + value = new/node/expression/value/literal(value) + else if(!istype(value) && isobject(value)) + value = new/node/expression/value/reference(value) + //TODO: check for invalid name + S.variables["[name]"] = value + diff --git a/mods/telecomms/code/scripting/Interpreter/Scope.dm b/mods/telecomms/code/scripting/Interpreter/Scope.dm new file mode 100644 index 0000000000000..9a0409dbf40b8 --- /dev/null +++ b/mods/telecomms/code/scripting/Interpreter/Scope.dm @@ -0,0 +1,16 @@ +/* + Class: scope + A runtime instance of a block. Used internally by the interpreter. +*/ +/scope + var/scope/parent = null + var/node/BlockDefinition/block + var/list/functions + var/list/variables + +/scope/New(node/BlockDefinition/B, scope/parent) + src.block = B + src.parent = parent + src.variables = B.initial_variables.Copy() + src.functions = B.functions.Copy() + .=..() diff --git a/mods/telecomms/code/scripting/Options.dm b/mods/telecomms/code/scripting/Options.dm new file mode 100644 index 0000000000000..c81a0280d177d --- /dev/null +++ b/mods/telecomms/code/scripting/Options.dm @@ -0,0 +1,79 @@ +/* +File: Options +*/ + //Ascii values of characters +var/global/const/ascii_A = 65 +var/global/const/ascii_Z = 90 +var/global/const/ascii_a = 97 +var/global/const/ascii_z = 122 +var/global/const/ascii_DOLLAR = 36 +var/global/const/ascii_ZERO = 48 +var/global/const/ascii_THALER = 254 +var/global/const/ascii_NINE = 57 +var/global/const/ascii_UNDERSCORE = 95 + +/* + Class: n_scriptOptions +*/ +/n_scriptOptions/proc/CanStartID(char) //returns true if the character can start a variable, function, or keyword name (by default letters or an underscore) + if(!isnum(char))char=text2ascii(char) + return (char in ascii_A to ascii_Z) || (char in ascii_a to ascii_z) || char==ascii_UNDERSCORE || char==ascii_DOLLAR + +/n_scriptOptions/proc/IsValidIDChar(char) //returns true if the character can be in the body of a variable, function, or keyword name (by default letters, numbers, and underscore) + if(!isnum(char))char=text2ascii(char) + return CanStartID(char) || IsDigit(char) + +/n_scriptOptions/proc/IsDigit(char) + if(!isnum(char))char=text2ascii(char) + return char in ascii_ZERO to ascii_NINE + +/n_scriptOptions/proc/IsValidID(id) //returns true if all the characters in the string are okay to be in an identifier name + if(!CanStartID(id)) //don't need to grab first char in id, since text2ascii does it automatically + return 0 + if(length(id)==1) return 1 + for(var/i=2 to length(id)) + if(!IsValidIDChar(copytext(id, i, i+1))) + return 0 + return 1 + +/* + Class: nS_Options + An implementation of for the n_Script language. +*/ +/n_scriptOptions/nS_Options + var/list/symbols = list("(", ")", "\[", "]", ";", ",", "{", "}") //scanner - Characters that can be in symbols +/* + Var: keywords + An associative list used by the parser to parse keywords. Indices are strings which will trigger the keyword when parsed and the + associated values are types of which the proc will be called. +*/ + var/list/keywords = list( "if" = /n_Keyword/nS_Keyword/kwIf, "else" = /n_Keyword/nS_Keyword/kwElse, \ + "while" = /n_Keyword/nS_Keyword/kwWhile, "break" = /n_Keyword/nS_Keyword/kwBreak, \ + "continue" = /n_Keyword/nS_Keyword/kwContinue, "return" = /n_Keyword/nS_Keyword/kwReturn,\ + "def" = /n_Keyword/nS_Keyword/kwDef + ) + + var/list/assign_operators = list( "=" = null, "&=" = "&", + "|=" = "|","`=" = "`", + "+=" = "+","-=" = "-", + "*=" = "*","/=" = "/", + "^=" = "^", + "%=" = "%") + + var/list/unary_operators = list("!" = /node/expression/c_operator/unary/LogicalNot, "~" = /node/expression/c_operator/unary/BitwiseNot, + "-" = /node/expression/c_operator/unary/Minus) + + var/list/binary_operators = list("==" = /node/expression/c_operator/binary/Equal, "!=" = /node/expression/c_operator/binary/NotEqual, + ">" = /node/expression/c_operator/binary/Greater, "<" = /node/expression/c_operator/binary/Less, + ">=" = /node/expression/c_operator/binary/GreaterOrEqual,"<=" = /node/expression/c_operator/binary/LessOrEqual, + "&&" = /node/expression/c_operator/binary/LogicalAnd, "||" = /node/expression/c_operator/binary/LogicalOr, + "&" = /node/expression/c_operator/binary/BitwiseAnd, "|" = /node/expression/c_operator/binary/BitwiseOr, + "`" = /node/expression/c_operator/binary/BitwiseXor, "+" = /node/expression/c_operator/binary/Add, + "-" = /node/expression/c_operator/binary/Subtract, "*" = /node/expression/c_operator/binary/Multiply, + "/" = /node/expression/c_operator/binary/Divide, "^" = /node/expression/c_operator/binary/Power, + "%" = /node/expression/c_operator/binary/Modulo) + +/n_scriptOptions/nS_Options/New() + .=..() + for(var/O in assign_operators+binary_operators+unary_operators) + if(!list_find(symbols, O)) symbols+=O diff --git a/mods/telecomms/code/scripting/Parser/Expressions.dm b/mods/telecomms/code/scripting/Parser/Expressions.dm new file mode 100644 index 0000000000000..a9c39dee00231 --- /dev/null +++ b/mods/telecomms/code/scripting/Parser/Expressions.dm @@ -0,0 +1,320 @@ +/* + File: Expressions + Procedures for parsing expressions. +*/ + +/* + Macros: Expression Macros + OPERATOR - A value indicating the parser currently expects a binary operator. + VALUE - A value indicating the parser currently expects a value. + SHIFT - Tells the parser to push the current operator onto the stack. + REDUCE - Tells the parser to reduce the stack. +*/ +#define OPERATOR 1 +#define VALUE 2 +#define SHIFT 0 +#define REDUCE 1 + +/* + Class: nS_Parser +*/ +/n_Parser/nS_Parser + +/* + Var: expecting + A variable which keeps track of whether an operator or value is expected. It should be either or . See + for more information. +*/ + var/expecting=VALUE + +/* + Proc: Precedence + Compares two operators, decides which is higher in the order of operations, and returns or . +*/ +/n_Parser/nS_Parser/proc/Precedence(node/expression/c_operator/top, node/expression/c_operator/input) + if(istype(top)) + top=top.precedence + if(istype(input)) + input=input:precedence + if(top>=input) + return REDUCE + return SHIFT + +/* + Proc: GetExpression + Takes a token expected to represent a value and returns an node. +*/ +/n_Parser/nS_Parser/proc/GetExpression(token/T) + if(!T) + return + if(istype(T, /node/expression)) + return T + switch(T.type) + if(/token/word) + return new/node/expression/value/variable(T.value) + if(/token/accessor) + var/token/accessor/A=T + var/node/expression/value/variable/E//=new(A.member) + var/stack/S=new() + while(istype(A.object, /token/accessor)) + S.Push(A) + A=A.object + ASSERT(istext(A.object)) + + while(A) + var/node/expression/value/variable/V=new() + V.id=new(A.member) + if(E) + V.object=E + else + V.object=new/node/identifier(A.object) + E=V + A=S.Pop() + return E + + if(/token/number, /token/string) + return new/node/expression/value/literal(T.value) + +/* + Proc: GetOperator + Gets a path related to a token or string and returns an instance of the given type. This is used to get an instance of either a binary or unary + operator from a token. + + Parameters: + O - The input value. If this is a token, O is reset to the token's value. + When O is a string and is in L, its associated value is used as the path to instantiate. + type - The desired type of the returned object. + L - The list in which to search for O. + + See Also: + - + - +*/ +/n_Parser/nS_Parser/proc/GetOperator(O, type=/node/expression/c_operator, L[]) + if(istype(O, type)) + return O //O is already the desired type + if(istype(O, /token)) + O=O:value //sets O to text + if(istext(O)) //sets O to path + if(list_find(L, O)) + O=L[O] + else + return null + if(ispath(O)) + O=new O //catches path from last check + else + return null //Unknown type + return O + +/* + Proc: GetBinaryOperator + Uses to search for an instance of a binary operator type with which the given string is associated. For example, if + O is set to "+", an node is returned. + + See Also: + - + - +*/ +/n_Parser/nS_Parser/proc/GetBinaryOperator(O) + return GetOperator(O, /node/expression/c_operator/binary, options.binary_operators) + +/* + Proc: GetUnaryOperator + Uses to search for an instance of a unary operator type with which the given string is associated. For example, if + O is set to "!", a node is returned. + + See Also: + - + - +*/ +/n_Parser/nS_Parser/proc/GetUnaryOperator(O) + return GetOperator(O, /node/expression/c_operator/unary, options.unary_operators) + +/* + Proc: Reduce + Takes the operator on top of the opr stack and assigns its operand(s). Then this proc pushes the value of that operation to the top + of the val stack. +*/ +/n_Parser/nS_Parser/proc/Reduce(stack/opr, stack/val) + var/node/expression/c_operator/O=opr.Pop() + if(!O) + return + if(!istype(O)) + errors+=new/scriptError("Error reducing expression - invalid operator.") + return + //Take O and assign its operands, popping one or two values from the val stack + //depending on whether O is a binary or unary operator. + if(istype(O, /node/expression/c_operator/binary)) + var/node/expression/c_operator/binary/B=O + B.exp2=val.Pop() + B.exp =val.Pop() + val.Push(B) + else + O.exp=val.Pop() + val.Push(O) + +/* + Proc: EndOfExpression + Returns true if the current token represents the end of an expression. + + Parameters: + end - A list of values to compare the current token to. +*/ +/n_Parser/nS_Parser/proc/EndOfExpression(end[]) + if(!curToken) + return 1 + if(istype(curToken, /token/symbol) && list_find(end, curToken.value)) + return 1 + if(istype(curToken, /token/end) && list_find(end, /token/end)) + return 1 + return 0 + +/* + Proc: ParseExpression + Uses the Shunting-yard algorithm to parse expressions. + + Notes: + - When an opening parenthesis is found, then is called to handle it. + - The variable helps distinguish unary operators from binary operators (for cases like the - operator, which can be either). + + Articles: + - + - + + See Also: + - + - + - +*/ +/n_Parser/nS_Parser/proc/ParseExpression(list/end=list(/token/end), list/ErrChars=list("{", "}")) + var/stack/opr=new/stack() + var/stack/val=new/stack() + src.expecting=VALUE + while(1) + if(EndOfExpression(end)) + break + if(istype(curToken, /token/symbol) && list_find(ErrChars, curToken.value)) + errors+=new/scriptError/BadToken(curToken) + break + + + if(index>LAZYLEN(tokens)) //End of File + errors+=new/scriptError/EndOfFile() + break + var/token/ntok + if(index+1<=LAZYLEN(tokens)) + ntok=tokens[index+1] + + if(istype(curToken, /token/symbol) && curToken.value=="(") //Parse parentheses expression + if(expecting!=VALUE) + errors+=new/scriptError/ExpectedToken("operator", curToken) + NextToken() + continue + val.Push(ParseParenExpression()) + else if(istype(curToken, /token/symbol)) //Operator found. + var/node/expression/c_operator/curOperator //Figure out whether it is unary or binary and get a new instance. + if(src.expecting==OPERATOR) + curOperator=GetBinaryOperator(curToken) + if(!curOperator) + errors+=new/scriptError/ExpectedToken("operator", curToken) + NextToken() + continue + else + curOperator=GetUnaryOperator(curToken) + if(!curOperator) //given symbol isn't a unary operator + errors+=new/scriptError/ExpectedToken("expression", curToken) + NextToken() + continue + + if(opr.Top() && Precedence(opr.Top(), curOperator)==REDUCE) //Check order of operations and reduce if necessary + Reduce(opr, val) + continue + opr.Push(curOperator) + src.expecting=VALUE + else if(ntok?.value=="(" && istype(ntok, /token/symbol)\ + && istype(curToken, /token/word)) //Parse function call + var/token/preToken=curToken + var/old_expect=src.expecting + var/fex=ParseFunctionExpression() + if(old_expect!=VALUE) + errors+=new/scriptError/ExpectedToken("operator", preToken) + NextToken() + continue + val.Push(fex) + else if(istype(curToken, /token/keyword)) //inline keywords + var/n_Keyword/kw=options.keywords[curToken.value] + kw=new kw(inline=1) + if(kw) + if(!kw.Parse(src)) + return + else + errors+=new/scriptError/BadToken(curToken) + else if(istype(curToken, /token/end)) //semicolon found where it wasn't expected + errors+=new/scriptError/BadToken(curToken) + NextToken() + continue + else + if(expecting!=VALUE) + errors+=new/scriptError/ExpectedToken("operator", curToken) + NextToken() + continue + val.Push(GetExpression(curToken)) + src.expecting=OPERATOR + NextToken() + + while(opr.Top()) Reduce(opr, val) //Reduce the value stack completely + .=val.Pop() //Return what should be the last value on the stack + if(val.Top()) // + var/node/N=val.Pop() + errors+=new/scriptError("Error parsing expression. Unexpected value left on stack: [N.ToString()].") + return null + +/* + Proc: ParseFunctionExpression + Parses a function call inside of an expression. + + See Also: + - +*/ +/n_Parser/nS_Parser/proc/ParseFunctionExpression() + var/node/expression/FunctionCall/exp=new + exp.func_name=curToken.value + NextToken() //skip function name + NextToken() //skip open parenthesis, already found + var/loops = 0 + + while(1) + loops++ + if(loops>=1000) + CRASH("Something TERRIBLE has gone wrong in ParseFunctionExpression ;__;") + + if(istype(curToken, /token/symbol) && curToken.value==")") + return exp + exp.parameters+=ParseParamExpression() + if(curToken.value==","&&istype(curToken, /token/symbol)) + NextToken() //skip comma + if(istype(curToken, /token/end)) //Prevents infinite loop... + errors+=new/scriptError/ExpectedToken(")") + return exp + +/* + Proc: ParseParenExpression + Parses an expression that ends with a close parenthesis. This is used for parsing expressions inside of parentheses. + + See Also: + - +*/ +/n_Parser/nS_Parser/proc/ParseParenExpression() + if(!CheckToken("(", /token/symbol)) + return + return new/node/expression/c_operator/unary/group(ParseExpression(list(")"))) + +/* + Proc: ParseParamExpression + Parses an expression that ends with either a comma or close parenthesis. This is used for parsing the parameters passed to a function call. + + See Also: + - +*/ +/n_Parser/nS_Parser/proc/ParseParamExpression() + return ParseExpression(list(",", ")")) diff --git a/mods/telecomms/code/scripting/Parser/Keywords.dm b/mods/telecomms/code/scripting/Parser/Keywords.dm new file mode 100644 index 0000000000000..a51950c982d36 --- /dev/null +++ b/mods/telecomms/code/scripting/Parser/Keywords.dm @@ -0,0 +1,175 @@ +//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 + +/* + File: Keywords +*/ +var/global/const/KW_FAIL = 0 //Fatal error; stop parsing entire script. +var/global/const/KW_PASS = 1 //OK +var/global/const/KW_ERR = 2 //Non-fatal error, keyword couldn't be handled properly. Ignore keyword but continue on. +var/global/const/KW_WARN = 3 //Warning + +/* +var/global/const/Class: n_Keyword +var/global/const/Represents a special statement in the code triggered by a keyword. +*/ +/n_Keyword/New(inline=0) + src.inline=inline + return ..() + +/* + Var: inline + 1 if the keyword is in an expression (e.g. the new keyword in many languages), 0 otherwise (such as the if and else keywords). +*/ +/n_Keyword + var/inline + +/* + Proc: Parse + Called when the parser finds a keyword in the code. + + Parameters: + parser - The parser that created this object. You can use the parameter to manipulate the parser in order to add statements and blocks + to its AST. +*/ +/n_Keyword/proc/Parse(n_Parser/parser) + +/* + Class: nS_Keyword + A keyword in n_Script. By default these include return, if, else, while, and def. To enable or disable a keyword, change the + list. + + Behavior: + When a parser is expecting a new statement, and a keyword listed in is found, it will call the keyword's + proc. +*/ +// +/n_Keyword/nS_Keyword + +/n_Keyword/nS_Keyword/New(inline=0) + if(inline) + qdel(src) + +/n_Keyword/nS_Keyword/kwReturn + +/n_Keyword/nS_Keyword/kwReturn/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + if(istype(parser.curBlock, /node/BlockDefinition/GlobalBlock)) + parser.errors+=new/scriptError/BadReturn(parser.curToken) + . = KW_WARN + var/node/statement/ReturnStatement/stmt=new + parser.NextToken() //skip 'return' token + stmt.value=parser.ParseExpression() + parser.curBlock.statements+=stmt + +/n_Keyword/nS_Keyword/kwIf + +/n_Keyword/nS_Keyword/kwIf/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + var/node/statement/IfStatement/stmt=new + parser.NextToken() //skip 'if' token + stmt.cond=parser.ParseParenExpression() + if(!parser.CheckToken(")", /token/symbol)) + return KW_FAIL + if(!parser.CheckToken("{", /token/symbol, skip=0)) //Token needs to be preserved for parse loop, so skip=0 + return KW_ERR + parser.curBlock.statements+=stmt + stmt.block=new + parser.AddBlock(stmt.block) + +/n_Keyword/nS_Keyword/kwElse + +/n_Keyword/nS_Keyword/kwElse/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + var/list/L=parser.curBlock.statements + var/node/statement/IfStatement/stmt + if(LAZYLEN(L)) + stmt=L[LAZYLEN(L)] //Get the last statement in the current block + if(!stmt || !istype(stmt) || stmt.else_block) //Ensure that it is an if statement + parser.errors+=new/scriptError/ExpectedToken("if statement",parser.curToken) + return KW_FAIL + parser.NextToken() //skip 'else' token + if(!parser.CheckToken("{", /token/symbol, skip=0)) + return KW_ERR + stmt.else_block=new() + parser.AddBlock(stmt.else_block) + +/n_Keyword/nS_Keyword/kwWhile + +/n_Keyword/nS_Keyword/kwWhile/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + var/node/statement/WhileLoop/stmt=new + parser.NextToken() //skip 'while' token + stmt.cond=parser.ParseParenExpression() + if(!parser.CheckToken(")", /token/symbol)) + return KW_FAIL + if(!parser.CheckToken("{", /token/symbol, skip=0)) + return KW_ERR + parser.curBlock.statements+=stmt + stmt.block=new + parser.AddBlock(stmt.block) + +/n_Keyword/nS_Keyword/kwBreak + +/n_Keyword/nS_Keyword/kwBreak/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + if(istype(parser.curBlock, /node/BlockDefinition/GlobalBlock)) + parser.errors+=new/scriptError/BadToken(parser.curToken) + . = KW_WARN + var/node/statement/BreakStatement/stmt=new + parser.NextToken() //skip 'break' token + parser.curBlock.statements+=stmt + +/n_Keyword/nS_Keyword/kwContinue + +/n_Keyword/nS_Keyword/kwContinue/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + if(istype(parser.curBlock, /node/BlockDefinition/GlobalBlock)) + parser.errors+=new/scriptError/BadToken(parser.curToken) + . = KW_WARN + var/node/statement/ContinueStatement/stmt=new + parser.NextToken() //skip 'break' token + parser.curBlock.statements+=stmt + +/n_Keyword/nS_Keyword/kwDef + +/n_Keyword/nS_Keyword/kwDef/Parse(n_Parser/nS_Parser/parser) + .=KW_PASS + var/node/statement/FunctionDefinition/def=new + parser.NextToken() //skip 'def' token + if(!parser.options.IsValidID(parser.curToken.value)) + parser.errors+=new/scriptError/InvalidID(parser.curToken) + return KW_FAIL + def.func_name=parser.curToken.value + parser.NextToken() + if(!parser.CheckToken("(", /token/symbol)) + return KW_FAIL + while(1) //for now parameters ? can be separated by whitespace - they don't need a comma in between + if(istype(parser.curToken, /token/symbol)) + switch(parser.curToken.value) + if(",") + parser.NextToken() + if(")") + break + else + parser.errors+=new/scriptError/BadToken(parser.curToken) + return KW_ERR + + else if(istype(parser.curToken, /token/word)) + def.parameters+=parser.curToken.value + parser.NextToken() + else + parser.errors+=new/scriptError/InvalidID(parser.curToken) + return KW_ERR + if(!parser.CheckToken(")", /token/symbol)) + return KW_FAIL + + if(istype(parser.curToken, /token/end)) //Function prototype + parser.curBlock.statements+=def + else if(parser.curToken.value=="{" && istype(parser.curToken, /token/symbol)) + def.block = new + parser.curBlock.statements+=def + parser.curBlock.functions[def.func_name]=def + parser.AddBlock(def.block) + else + parser.errors+=new/scriptError/BadToken(parser.curToken) + return KW_FAIL diff --git a/mods/telecomms/code/scripting/Parser/Parser.dm b/mods/telecomms/code/scripting/Parser/Parser.dm new file mode 100644 index 0000000000000..b7d35e21a4a6f --- /dev/null +++ b/mods/telecomms/code/scripting/Parser/Parser.dm @@ -0,0 +1,180 @@ +/* + File: Parser +*/ +/* + Class: n_Parser + An object that reads tokens and produces an AST (abstract syntax tree). +*/ +/n_Parser +/* + Var: index + The parser's current position in the token's list. +*/ + var/index = 1 +/* + Var: tokens + A list of tokens in the source code generated by a scanner. +*/ + var/list/tokens = new +/* + Var: errors + A list of fatal errors found by the parser. If there are any items in this list, then it is not safe to run the returned AST. + + See Also: + - +*/ + var/list/errors = new +/* + Var: warnings + A list of non-fatal problems in the script. +*/ + var/list/warnings = new +/* + Var: curToken + The token at in . +*/ + var/token/curToken + var/stack/blocks=new + var/node/BlockDefinition/GlobalBlock/global_block=new + var/node/BlockDefinition/curBlock +/* + Proc: Parse + Reads the tokens and returns the AST's node. Be sure to populate the tokens list before calling this procedure. +*/ +/n_Parser/proc/Parse() + +/* + Proc: NextToken + Sets to the next token in the list, or null if there are no more tokens. +*/ +/n_Parser/proc/NextToken() + if(index>=LAZYLEN(tokens)) + curToken=null + else + curToken=tokens[++index] + return curToken + +/* + Class: nS_Parser + An implmentation of a parser for n_Script. +*/ +/n_Parser/nS_Parser + var/n_scriptOptions/nS_Options/options +/* + Constructor: New + + Parameters: + tokens - A list of tokens to parse. + options - An object used for configuration. +*/ +/n_Parser/nS_Parser/New(tokens[], n_scriptOptions/options) + src.tokens=tokens + src.options=options + curBlock=global_block + return ..() +/n_Parser/nS_Parser/Parse() + ASSERT(tokens) + for(,src.index<=LAZYLEN(src.tokens), src.index++) + curToken=tokens[index] + switch(curToken.type) + if(/token/keyword) + var/n_Keyword/kw=options.keywords[curToken.value] + kw=new kw() + if(kw) + if(!kw.Parse(src)) + return + if(/token/word) + var/token/ntok + if(index+1>LAZYLEN(tokens)) + errors+=new/scriptError/BadToken(curToken) + continue + ntok=tokens[index+1] + if(!istype(ntok, /token/symbol)) + errors+=new/scriptError/BadToken(ntok) + continue + if(ntok.value=="(") + ParseFunctionStatement() + else if(list_find(options.assign_operators, ntok.value)) + ParseAssignment() + else + errors+=new/scriptError/BadToken(ntok) + continue + if(!istype(curToken, /token/end)) + errors+=new/scriptError/ExpectedToken(";", curToken) + continue + if(/token/symbol) + if(curToken.value=="}") + if(!EndBlock()) + errors+=new/scriptError/BadToken(curToken) + continue + else + errors+=new/scriptError/BadToken(curToken) + continue + if(/token/end) + warnings+=new/scriptError/BadToken(curToken) + continue + else + errors+=new/scriptError/BadToken(curToken) + return + return global_block + +/n_Parser/nS_Parser/proc/CheckToken(val, type, err=1, skip=1) + if(curToken.value!=val || !istype(curToken,type)) + if(err) + errors+=new/scriptError/ExpectedToken(val, curToken) + return 0 + if(skip)NextToken() + return 1 + +/n_Parser/nS_Parser/proc/AddBlock(node/BlockDefinition/B) + blocks.Push(curBlock) + curBlock=B + +/n_Parser/nS_Parser/proc/EndBlock() + if(curBlock==global_block) return 0 + curBlock=blocks.Pop() + return 1 + +/n_Parser/nS_Parser/proc/ParseAssignment() + var/name=curToken.value + if(!options.IsValidID(name)) + errors+=new/scriptError/InvalidID(curToken) + return + NextToken() + var/t=options.binary_operators[options.assign_operators[curToken.value]] + var/node/statement/VariableAssignment/stmt=new() + stmt.var_name=new(name) + NextToken() + if(t) + stmt.value=new t() + stmt.value:exp=new/node/expression/value/variable(stmt.var_name) + stmt.value:exp2=ParseExpression() + else + stmt.value=ParseExpression() + curBlock.statements+=stmt + +/n_Parser/nS_Parser/proc/ParseFunctionStatement() + if(!istype(curToken, /token/word)) + errors+=new/scriptError("Bad identifier in function call.") + return + var/node/statement/FunctionCall/stmt=new + stmt.func_name=curToken.value + NextToken() //skip function name + if(!CheckToken("(", /token/symbol)) //Check for and skip open parenthesis + return + var/loops = 0 + while(1) + loops++ + if(loops >= 6000) + CRASH("Something TERRIBLE has gone wrong in ParseFunctionStatement ;__;") + + if(!curToken) + errors+=new/scriptError/EndOfFile() + return + if(istype(curToken, /token/symbol) && curToken.value==")") + curBlock.statements+=stmt + NextToken() //Skip close parenthesis + return + var/node/expression/P=ParseParamExpression() + stmt.parameters+=P + if(istype(curToken, /token/symbol) && curToken.value==",") NextToken() diff --git a/mods/telecomms/code/scripting/Scanner/Scanner.dm b/mods/telecomms/code/scripting/Scanner/Scanner.dm new file mode 100644 index 0000000000000..7813b95dd82cb --- /dev/null +++ b/mods/telecomms/code/scripting/Scanner/Scanner.dm @@ -0,0 +1,273 @@ +/* + File: Scanner +*/ +/* + Class: n_Scanner + An object responsible for breaking up source code into tokens for use by the parser. +*/ +/n_Scanner + var/code +/* + Var: errors + A list of fatal errors found by the scanner. If there are any items in this list, then it is not safe to parse the returned tokens. + + See Also: + - +*/ + var/list/errors = new +/* + Var: warnings + A list of non-fatal problems in the source code found by the scanner. +*/ + var/list/warnings = new +/* + Proc: LoadCode + Loads source code. +*/ +/n_Scanner/proc/LoadCode(c) + code = c + +/* + Proc: LoadCodeFromFile + Gets the code from a file and calls . +*/ +/n_Scanner/proc/LoadCodeFromFile(f) + LoadCode(file2text(f)) + +/* + Proc: Scan + Runs the scanner and returns the resulting list of tokens. Ensure that has been called first. +*/ +/n_Scanner/proc/Scan() + +/* + Class: nS_Scanner + A scanner implementation for n_Script. +*/ +/n_Scanner/nS_Scanner +/* + Variable: codepos + The scanner's position in the source code. +*/ + var/codepos = 1 + var/line = 1 + var/linepos = 0 //column=codepos-linepos + var/n_scriptOptions/nS_Options/options + + var/commenting = 0 + // 1: single-line + // 2: multi-line +/* + Variable: ignore + A list of characters that are ignored by the scanner. + + Default Value: + Whitespace +*/ + var/list/ignore = list(" ", "\t", "\n") //Don't add tokens for whitespace +/* + Variable: end_stmt + A list of characters that end a statement. Each item may only be one character long. + + Default Value: + Semicolon +*/ + var/list/end_stmt = list(";") +/* + Variable: string_delim + A list of characters that can start and end strings. + + Default Value: + Double and single quotes. +*/ + var/list/string_delim = list("\"", "'") +/* + Variable: delim + A list of characters that denote the start of a new token. This list is automatically populated. +*/ + var/list/delim = new + +/* + Macro: COL + The current column number. +*/ + #define COL codepos-linepos + +/* + Constructor: New + Parameters: + code - The source code to tokenize. + options - An object used to configure the scanner. +*/ +/n_Scanner/nS_Scanner/New(code, n_scriptOptions/nS_Options/options) + .=..() + ignore += ascii2text(13) //Carriage return + delim += ignore + options.symbols + end_stmt + string_delim + src.options=options + LoadCode(code) + +/n_Scanner/nS_Scanner/Scan() //Creates a list of tokens from source code + var/list/tokens = new + for(, src.codepos<=length(code), src.codepos++) + + var/char=copytext(code, codepos, codepos+1) + if(char=="\n") + line++ + linepos=codepos + + if(list_find(ignore, char)) + continue + else if(char == "/") + ReadComment() + else if(list_find(end_stmt, char)) + tokens += new /token/end(char, line, COL) + else if(list_find(string_delim, char)) + codepos++ //skip string delimiter + tokens += ReadString(char) + else if(options.CanStartID(char)) + tokens += ReadWord() + else if(options.IsDigit(char)) + tokens += ReadNumber() + else if(list_find(options.symbols, char)) + tokens += ReadSymbol() + + + codepos = initial(codepos) + line = initial(line) + linepos = initial(linepos) + return tokens +/* + Proc: ReadString + Reads a string in the source code into a token. + + Parameters: + start - The character used to start the string. +*/ +/n_Scanner/nS_Scanner/proc/ReadString(start) + var/buf + for(, codepos <= length(code), codepos++)//codepos to length(code)) + var/char = copytext(code, codepos, codepos+1) + switch(char) + if("\\") //Backslash (\) encountered in string + codepos++ //Skip next character in string, since it was escaped by a backslash + char = copytext(code, codepos, codepos+1) + switch(char) + if("\\") //Double backslash + buf += "\\" + if("n") //\n Newline + buf += "\n" + else + if(char == start) //\" Doublequote + buf += start + else //Unknown escaped text + buf += char + if("\n") + . = new/token/string(buf, line, COL) + errors += new/scriptError("Unterminated string. Newline reached.", .) + line++ + linepos = codepos + break + else + if(char == start) //string delimiter found, end string + break + else + buf+=char //Just a normal character in a string + if(!.) return new/token/string(buf, line, COL) + +/* + Proc: ReadWord + Reads characters separated by an item in into a token. +*/ +/n_Scanner/nS_Scanner/proc/ReadWord() + var/char = copytext(code, codepos, codepos+1) + var/buf + while(!list_find(delim, char) && codepos <= length(code)) + buf += char + char=copytext(code, ++codepos, codepos+1) + codepos-- //allow main Scan() proc to read the delimiter + if(list_find(options.keywords, buf)) + return new /token/keyword(buf, line, COL) + else + return new /token/word(buf, line, COL) + +/* + Proc: ReadSymbol + Reads a symbol into a token. +*/ +/n_Scanner/nS_Scanner/proc/ReadSymbol() + var/char = copytext(code, codepos, codepos+1) + var/buf + + while(list_find(options.symbols, buf+char)) + buf += char + if(++codepos>length(code)) break + char = copytext(code, codepos, codepos+1) + + codepos-- //allow main Scan() proc to read the next character + return new /token/symbol(buf, line, COL) + +/* + Proc: ReadNumber + Reads a number into a token. +*/ +/n_Scanner/nS_Scanner/proc/ReadNumber() + var/char=copytext(code, codepos, codepos+1) + var/buf + var/dec=0 + + while(options.IsDigit(char) || (char=="." && !dec)) + if(char==".") dec=1 + buf += char + codepos++ + char = copytext(code, codepos, codepos+1) + var/token/number/T=new(buf, line, COL) + if(isnull(text2num(buf))) + errors += new/scriptError("Bad number: ", T) + T.value = 0 + codepos-- //allow main Scan() proc to read the next character + return T + +/* + Proc: ReadComment + Reads a comment and outputs the type of comment +*/ + +/n_Scanner/nS_Scanner/proc/ReadComment() + var/char=copytext(code, codepos, codepos+1) + var/nextchar=copytext(code, codepos+1, codepos+2) + var/charstring = char+nextchar + var/comm = 1 + // 1: single-line comment + // 2: multi-line comment + var/expectedend = 0 + + if(charstring == "//" || charstring == "/*") + if(charstring == "/*") + comm = 2 // starts a multi-line comment + + while(comm) + if(++codepos > length(code)) break + + if(expectedend) // ending statement expected... + char = copytext(code, codepos, codepos+1) + if(char == "/") // ending statement found - beak the comment + comm = 0 + break + + if(comm == 2) + // multi-line comments are broken by ending statements + char = copytext(code, codepos, codepos+1) + if(char == "*") + expectedend = 1 + continue + else + char = copytext(code, codepos, codepos+1) + if(char == "\n") + comm = 0 + break + + if(expectedend) expectedend = 0 + + if(comm == 2) + errors+=new/scriptError/UnterminatedComment() + diff --git a/mods/telecomms/code/scripting/Scanner/Tokens.dm b/mods/telecomms/code/scripting/Scanner/Tokens.dm new file mode 100644 index 0000000000000..711133aacd482 --- /dev/null +++ b/mods/telecomms/code/scripting/Scanner/Tokens.dm @@ -0,0 +1,38 @@ +//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:33 + +/* + Class: Token + Represents an entity and position in the source code. +*/ +/token + var/value + var/line + var/column + +/token/New(v, l=0, c=0) + value=v + line=l + column=c + +/token/string +/token/symbol +/token/word +/token/keyword +/token/number +/token/number/New() + .=..() + if(!isnum(value)) + value=text2num(value) + ASSERT(!isnull(value)) +/token/accessor + var/object + var/member + +/token/accessor/New(object, member, l=0, c=0) + src.object=object + src.member=member + src.value="[object].[member]" //for debugging only + src.line=l + src.column=c + +/token/end diff --git a/mods/telecomms/code/scripting/stack.dm b/mods/telecomms/code/scripting/stack.dm new file mode 100644 index 0000000000000..1331723ef824a --- /dev/null +++ b/mods/telecomms/code/scripting/stack.dm @@ -0,0 +1,22 @@ +/stack + var/list/contents=new +/stack/proc/Push(value) + contents+=value + +/stack/proc/Pop() + if(!LAZYLEN(contents)) + return null + . = contents[LAZYLEN(contents)] + LIST_RESIZE(contents, LAZYLEN(contents) - 1) + +/stack/proc/Top() //returns the item on the top of the stack without removing it + if(!LAZYLEN(contents)) return null + return contents[LAZYLEN(contents)] + +/stack/proc/Copy() + var/stack/S=new() + S.contents=src.contents.Copy() + return S + +/stack/proc/Clear() + contents.Cut() diff --git a/mods/telecomms/code/telecommunications.dm b/mods/telecomms/code/telecommunications.dm new file mode 100644 index 0000000000000..5c4cb87932ccd --- /dev/null +++ b/mods/telecomms/code/telecommunications.dm @@ -0,0 +1,101 @@ +/obj/machinery/telecomms/server + var/rawcode = "" // the code to compile (raw text) + var/datum/TCS_Compiler/Compiler // the compiler that compiles and runs the code + var/autoruncode = 0 // 1 if the code is set to run every time a signal is picked up + +/obj/machinery/telecomms/server/New() + ..() + Compiler = new() + Compiler.Holder = src + server_radio = new() + +/obj/machinery/telecomms/server/proc/setcode(t) + if(t) + if(istext(t)) + rawcode = t + +/obj/machinery/telecomms/server/proc/compile() + if(Compiler) + return Compiler.Compile(rawcode) + +/obj/machinery/telecomms/server/receive_information(datum/signal/signal, obj/machinery/telecomms/machine_from) + if(signal.data["message"]) + if(is_freq_listening(signal)) + if(traffic > 0) + totaltraffic += traffic // add current traffic to total traffic + + // channel tag the signal + var/list/data = get_channel_info(signal.frequency) + signal.data["channel_tag"] = data[1] + signal.data["channel_color"] = data[2] + + //Is this a test signal? Bypass logging + if(signal.data["type"] != 4) + + // If signal has a message and appropriate frequency + + update_logs() + + var/datum/comm_log_entry/log = new + var/mob/M = signal.data["mob"] + + // Copy the signal.data entries we want + log.parameters["mobtype"] = signal.data["mobtype"] + log.parameters["job"] = signal.data["job"] + log.parameters["key"] = signal.data["key"] + log.parameters["vmessage"] = signal.data["message"] + log.parameters["vname"] = signal.data["vname"] + log.parameters["message"] = signal.data["message"] + log.parameters["name"] = signal.data["name"] + log.parameters["realname"] = signal.data["realname"] + log.parameters["language"] = signal.data["language"] + + var/race = "Unknown" + if(ishuman(M) || isbrain(M)) + race = "Sapient Race" + log.parameters["intelligible"] = 1 + else if(M.is_species(SPECIES_MONKEY)) + race = "Monkey" + else if(issilicon(M)) + race = "Artificial Life" + log.parameters["intelligible"] = 1 + else if(isslime(M)) + race = "Slime" + else if(isanimal(M)) + race = "Domestic Animal" + + log.parameters["race"] = race + + if(!istype(M, /mob/new_player) && M) + log.parameters["uspeech"] = M.universal_speak + else + log.parameters["uspeech"] = 0 + + // If the signal is still compressed, make the log entry gibberish + if(signal.data["compression"] > 0) + log.parameters["message"] = Gibberish(signal.data["message"], signal.data["compression"] + 50) + log.parameters["job"] = Gibberish(signal.data["job"], signal.data["compression"] + 50) + log.parameters["name"] = Gibberish(signal.data["name"], signal.data["compression"] + 50) + log.parameters["realname"] = Gibberish(signal.data["realname"], signal.data["compression"] + 50) + log.parameters["vname"] = Gibberish(signal.data["vname"], signal.data["compression"] + 50) + log.input_type = "Corrupt File" + + // Log and store everything that needs to be logged + log_entries.Add(log) + if(!(signal.data["name"] in stored_names)) + stored_names.Add(signal.data["name"]) + logs++ + signal.data["server"] = src + + // Give the log a name + var/identifier = num2text( rand(-1000,1000) + world.time ) + log.name = "data packet ([md5(identifier)])" + + // [SIERRA-ADD] - MODPACK_TELECOMMS - (Нельзя переписать функцию так, чтобы родитель не вызывался) + if(Compiler && autoruncode) + Compiler.Run(signal) + // [SIERRA-ADD] + + var/can_send = relay_information(signal, /obj/machinery/telecomms/hub) + if(!can_send) + relay_information(signal, /obj/machinery/telecomms/broadcaster) diff --git a/mods/telecomms/code/telemonitor.dm b/mods/telecomms/code/telemonitor.dm new file mode 100644 index 0000000000000..78596c656eef0 --- /dev/null +++ b/mods/telecomms/code/telemonitor.dm @@ -0,0 +1,9 @@ +/obj/machinery/computer/telecomms/monitor/interface_interact(mob/user) + interact(user) + return TRUE + +/obj/machinery/computer/telecomms/monitor/interact(mob/user) + attack_hand(user) + +///obj/machinery/computer/telecomms/monitor/OnTopic(mob/user, list/href_list, datum/topic_state/state) + //Topic(state, href_list) diff --git a/mods/telecomms/code/text.dm b/mods/telecomms/code/text.dm new file mode 100644 index 0000000000000..415ca4399f551 --- /dev/null +++ b/mods/telecomms/code/text.dm @@ -0,0 +1,49 @@ +// It's not perfect, but will work in most cases +// Don't use it if you don't know what you're doing +/proc/sanitize_html(t) + var/static/regex/RegexReplaceHTML = new(@"<(/?)([^> ]*)([^>]*)>", "ig") + t = regex_replace_char(RegexReplaceHTML, t, /proc/html_replace) + + for (var/w in html_attr_blacklist) + t = replacetext_char(t, w, "a") + + return t + +/proc/html_replace(match, slash, tag, attrs) + if (!(tag in html_allowed_tags)) + tag = "span" + + var/static/regex/RegexAttrs = new("(\\l+)( *= *\[\"\\'])", "ig") + attrs = regex_replace_char(RegexAttrs, attrs, /proc/attrs_replace) + + return "<[slash][tag][attrs]>" + +/proc/attrs_replace(match, attr, rest) + if (!(attr in html_allowed_attrs)) + return "a[rest]" + return "[attr][rest]" + +// IE won't receive updates +// so... +var/global/list/html_attr_blacklist = list( + "oncancel", "oncanplay", "oncanplaythrough", "onchange", "onclick", "onclose", + "oncuechange", "ondblclick", "ondrag", "ondragend", "ondragenter", "ondragleave", + "ondragover", "ondragstart", "ondrop", "ondurationchange", "onemptied", "onended", + "onerror", "onfocus", "oninput", "oninvalid", "onkeydown", "onkeypress", "onkeyup", + "onload", "onloadeddata", "onloadedmetadata", "onloadstart", "onmousedown", + "onmouseenter", "onmouseleave", "onmousemove", "onmouseout", "onmouseover", + "onmouseup", "onmousewheel", "onpause", "onplay", "onplaying", "onprogress", + "onratechange", "onreset", "onresize", "onscroll", "onseeked", "onseeking", + "onselect", "onshow", "onstalled", "onsubmit", "onsuspend", "ontimeupdate", + "ontoggle", "onvolumechange", "onwaiting", "oncopy", "oncut", "onpaste", "onabort", + "onerror", "onresize", "onscroll", "onunload", "onbegin", "onend", "onrepeat" +) +var/global/list/html_allowed_tags = list( + "h1", "h2", "h3", "h4", "h5", "h6", + "font", "span", "hr", "br", + "p", "b", "i", "u", "s" +) +var/global/list/html_allowed_attrs = list( + "style", "class", // Everything + "color", "size", "face" // +) diff --git a/mods/telecomms/code/traffic_control.dm b/mods/telecomms/code/traffic_control.dm new file mode 100644 index 0000000000000..d148e59a5650d --- /dev/null +++ b/mods/telecomms/code/traffic_control.dm @@ -0,0 +1,213 @@ +//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:32 + +/obj/machinery/computer/telecomms/traffic + name = "Telecommunications Traffic Control" + desc = "Manipulates with traffic of a telecommunications network." + icon_screen = "comm_monitor" + machine_name = "telecomms traffic control console" + + req_access = list(access_tcomsat) + + var/screen = 0 // the screen number: + var/list/servers = list() // the servers located by the computer + var/mob/editingcode + var/mob/lasteditor + var/list/viewingcode = list() + var/obj/machinery/telecomms/server/SelectedServer + + var/network = "NULL" // the network to probe + var/temp = "" // temporary feedback messages + + var/storedcode = "" // code stored + + +/obj/machinery/computer/telecomms/traffic/proc/update_ide() + + // loop if there's someone manning the keyboard + while(editingcode) + if(!editingcode.client) + editingcode = null + break + + // For the typer, the input is enabled. Buffer the typed text + if(editingcode) + storedcode = "[winget(editingcode, "tcscode", "text")]" + if(editingcode) // double if's to work around a runtime error + winset(editingcode, "tcscode", "is-disabled=false") + + // If the player's not manning the keyboard anymore, adjust everything + if( (!(editingcode in range(1, src)) && !issilicon(editingcode)) || (editingcode.machine != src && !issilicon(editingcode))) + if(editingcode) + winshow(editingcode, "Telecomms IDE", 0) // hide the window! + editingcode = null + break + + // For other people viewing the typer type code, the input is disabled and they can only view the code + // (this is put in place so that there's not any magical shenanigans with 50 people inputting different code all at once) + + if(length(viewingcode)) + // This piece of code is very important - it escapes quotation marks so string aren't cut off by the input element + var/showcode = replacetext(storedcode, "\\\"", "\\\\\"") + showcode = replacetext(storedcode, "\"", "\\\"") + + for(var/mob/M in viewingcode) + + if( (M.machine == src && (M in view(1, src)) ) || issilicon(M)) + winset(M, "tcscode", "is-disabled=true") + winset(M, "tcscode", "text=\"[showcode]\"") + else + viewingcode.Remove(M) + winshow(M, "Telecomms IDE", 0) // hide the window! + + sleep(5) + + if(length(viewingcode) > 0) + editingcode = pick(viewingcode) + viewingcode.Remove(editingcode) + update_ide() + +/obj/machinery/computer/telecomms/traffic/interface_interact(mob/user) + interact(user) + return TRUE + +/obj/machinery/computer/telecomms/traffic/interact(mob/user) + if(inoperable()) + return + user.set_machine(src) + var/dat = "Telecommunication Traffic Control
Telecommunications Traffic Control
" + + switch(screen) + + + // --- Main Menu --- + + if(0) + dat += "
[temp]
" + dat += "
Current Network: [network]
" + if(LAZYLEN(servers)) + dat += "
Detected Telecommunication Servers:
    " + for(var/obj/machinery/telecomms/T in servers) + dat += "
  • \ref[T] [T.name] ([T.id])
  • " + dat += "
" + dat += "
\[Flush Buffer\]" + + else + dat += "
No servers detected. Scan for servers: \[Scan\]" + + + // --- Viewing Server --- + + if(1) + dat += "
[temp]
" + dat += "
\[Main Menu\] \[Refresh\]
" + dat += "
Current Network: [network]" + dat += "
Selected Server: [SelectedServer.id]

" + dat += "
\[Edit Code\]" + dat += "
Signal Execution: " + if(SelectedServer.autoruncode) + dat += "ALWAYS" + else + dat += "NEVER" + + + //var/datum/browser/popup = new(user, "traffic_control", "Telecommunications Traffic Control", 575, 400) + //popup.set_content(JOINTEXT(dat)) + //popup.open() + + show_browser(user, dat, "window=traffic_control;size=575x400") + onclose(user, "server_control") + + temp = "" + return + + +/obj/machinery/computer/telecomms/traffic/OnTopic(mob/user, list/href_list, datum/topic_state/state) + if(..()) + return + + usr.set_machine(src) + if(!src.allowed(usr) && !emagged) + to_chat(usr, "ACCESS DENIED.") + return + + if(href_list["viewserver"]) + screen = 1 + for(var/obj/machinery/telecomms/T in servers) + if(T.id == href_list["viewserver"]) + SelectedServer = T + break + + if(href_list["operation"]) + switch(href_list["operation"]) + + if("release") + servers = list() + screen = 0 + + if("mainmenu") + screen = 0 + + if("scan") + if(LAZYLEN(servers)) + temp = "- FAILED: CANNOT PROBE WHEN BUFFER FULL -" + + else + for(var/obj/machinery/telecomms/server/T in range(25, src)) + if(T.network == network) + servers.Add(T) + + if(!LAZYLEN(servers)) + temp = "- FAILED: UNABLE TO LOCATE SERVERS IN \[[network]\] -" + else + temp = "- [LAZYLEN(servers)] SERVERS PROBED & BUFFERED -" + + screen = 0 + + if("editcode") + if(editingcode == usr) return + if(usr in viewingcode) return + + if(!editingcode) + lasteditor = usr + editingcode = usr + winshow(editingcode, "TelecommsIDE") // show the IDE + winset(editingcode, "tcscode", "is-disabled=false") + winset(editingcode, "tcscode", "text=\"\"") + var/showcode = replacetext(storedcode, "\\\"", "\\\\\"") + showcode = replacetext(storedcode, "\"", "\\\"") + winset(editingcode, "tcscode", "text=\"[showcode]\"") + sleep(1) + update_ide() + + else + viewingcode.Add(usr) + winshow(usr, "TelecommsIDE") // show the IDE + winset(usr, "tcscode", "is-disabled=true") + winset(editingcode, "tcscode", "text=\"\"") + var/showcode = replacetext(storedcode, "\"", "\\\"") + winset(usr, "tcscode", "text=\"[showcode]\"") + + if("togglerun") + SelectedServer.autoruncode = !(SelectedServer.autoruncode) + + if(href_list["network"]) + var/newnet = input(usr, "Which network do you want to view?", "Comm Monitor", network) as null|text + + if(newnet && ((usr in range(1, src) || issilicon(usr)))) + if(length(newnet) > 15) + temp = "- FAILED: NETWORK TAG STRING TOO LENGHTLY -" + else + network = newnet + screen = 0 + servers = list() + temp = "- NEW NETWORK TAG SET IN ADDRESS \[[network]\] -" + + src.updateUsrDialog() + +/obj/machinery/computer/telecomms/traffic/emag_act(remaining_charges, mob/user) + if(!emagged) + playsound(src.loc, 'sound/effects/sparks4.ogg', 75, 1) + emagged = TRUE + to_chat(user, "You you disable the security protocols") + src.updateUsrDialog() + return 1 diff --git a/mods/utility_items/_utility_items.dme b/mods/utility_items/_utility_items.dme index 54dc5c3e0af39..f096116069b5b 100644 --- a/mods/utility_items/_utility_items.dme +++ b/mods/utility_items/_utility_items.dme @@ -4,8 +4,12 @@ #include "_utility_items.dm" +#include "code/colony_random.dm" #include "code/multimeter.dm" +#include "code/living_adv.dm" #include "code/noose.dm" #include "code/wires.dm" +#include "code/reagents.dm" +#include "code/cell_charger.dm" #endif diff --git a/mods/utility_items/code/cell_charger.dm b/mods/utility_items/code/cell_charger.dm new file mode 100644 index 0000000000000..3ec6e8885c34a --- /dev/null +++ b/mods/utility_items/code/cell_charger.dm @@ -0,0 +1,44 @@ +/obj/item/stock_parts/circuitboard/cell_charger + name = "circuit board (cell_charger)" + board_type = "machine" + origin_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 3) + build_path = /obj/machinery/cell_charger + req_components = list( + /obj/item/stock_parts/capacitor = 2) + +/obj/item/stock_parts/circuitboard/recharger + name = "circuit board (recharger)" + board_type = "machine" + origin_tech = list(TECH_DATA = 2, TECH_ENGINEERING = 4) + build_path = /obj/machinery/recharger + req_components = list( + /obj/item/stock_parts/capacitor = 2) + +/obj/item/stock_parts/circuitboard/wallcharger + name = "circuit board (wall recharger)" + board_type = "machine" + origin_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 5) + build_path = /obj/machinery/recharger/wallcharger + req_components = list( + /obj/item/stock_parts/capacitor = 2) + +/datum/design/circuit/cell_charger + name = "cell charger" + id = "cellcharger" + req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 3) + build_path = /obj/item/stock_parts/circuitboard/cell_charger + sort_string = "BOOOB" + +/datum/design/circuit/recharger + name = "recharger" + id = "recharger" + req_tech = list(TECH_DATA = 3, TECH_ENGINEERING = 5) + build_path = /obj/item/stock_parts/circuitboard/recharger + sort_string = "BOBOB" + +/datum/design/circuit/wallcharger + name = "wall recharger" + id = "wallrecharger" + req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 6) + build_path = /obj/item/stock_parts/circuitboard/wallcharger + sort_string = "BBOBO" diff --git a/mods/utility_items/code/colony_random.dm b/mods/utility_items/code/colony_random.dm new file mode 100644 index 0000000000000..78bcb3d44b613 --- /dev/null +++ b/mods/utility_items/code/colony_random.dm @@ -0,0 +1,240 @@ +/obj/random/colony_flag + name = "Colony flag" + +/obj/random/colony_armor + name = "random colony armor" + +/obj/random/colony_helmet + name = "random colony helmet" + +/obj/random/colony_smg + name = "random colony smg" + +/obj/random/colony_rifle + name = "random colony rifle" + +/obj/structure/sign/colony + name = "Independent colony" + icon = 'mods/colony_fractions/icons/colony.dmi' + icon_state = "colony" + +/obj/random/colony_paper + name = "Colony instructions paper" + +/obj/random/colony2_paper + name = "Colony instructions paper" + +/obj/submap_landmark/spawnpoint/ship_leader_spawn + name = "Ship Leader" + +/obj/submap_landmark/spawnpoint/colonist_leader_spawn + name = "Colonist Leader" + +/obj/structure/sign/iccg_colony + name = "\improper ICCG Colonial Seal" + desc = "A sign which signifies who this colony belongs to." + icon = 'mods/_maps/farfleet/icons/iccg_flag.dmi' + icon_state = "iccg_seal" + +//Actual weapons, armor, etc. Colonial versions becauses reasons. + +/obj/item/gun/projectile/automatic/mbr_colony + name = "MBR" + desc = "A shabby bullpup carbine. Despite its size, it looks a little uncomfortable, but it is robust. HelTek MBR is a standart equipment of ICCG Space-assault Forces, designed in a bullpup layout. Possesses autofire and is perfect for the ship's crew." + icon = 'mods/_maps/farfleet/icons/obj/mbr_bullpup.dmi' + icon_state = "mbr_bullpup" + item_state = "mbr_bullpup" + item_icons = list( + slot_r_hand_str = 'mods/_maps/farfleet/icons/mob/righthand.dmi', + slot_l_hand_str = 'mods/_maps/farfleet/icons/mob/lefthand.dmi', + ) + wielded_item_state = "mbr_bullpup-wielded" + force = 10 + caliber = CALIBER_RIFLE + origin_tech = list(TECH_COMBAT = 6, TECH_MATERIAL = 1, TECH_ESOTERIC = 5) + slot_flags = SLOT_BACK + load_method = MAGAZINE + magazine_type = /obj/item/ammo_magazine/rifle + allowed_magazines = /obj/item/ammo_magazine/rifle + bulk = GUN_BULK_RIFLE + 1 + mag_insert_sound = 'sound/weapons/guns/interaction/ltrifle_magin.ogg' + mag_remove_sound = 'sound/weapons/guns/interaction/ltrifle_magout.ogg' + + firemodes = list( + list(mode_name="semi auto", burst=1, fire_delay=null, one_hand_penalty=8, burst_accuracy=null, dispersion=null), + list(mode_name="2-round bursts", burst=2, fire_delay=null, one_hand_penalty=9, burst_accuracy=list(0,-1,-1), dispersion=list(0.0, 0.6, 1.0)), + list(mode_name="full auto", burst=1, fire_delay=1.7, burst_delay=1.3, one_hand_penalty=7, burst_accuracy=list(0,-1,-1), dispersion=list(1.3, 1.5, 1.7, 1.9, 2.2), autofire_enabled=1) + ) + +/obj/item/gun/projectile/automatic/mbr_colony/on_update_icon() + ..() + if(ammo_magazine) + icon_state = "mbr_bullpup" + else + icon_state = "mbr_bullpup-empty" + +/obj/item/gun/projectile/automatic/assault_rifle/heltek_colony + name = "LA-700" + desc = "HelTek LA-700 is a standart equipment of ICCG Space-assault Forces. Looks very similiar to STS-35." + icon = 'mods/_maps/farfleet/icons/obj/iccg_rifle.dmi' + icon_state = "iccg_rifle" + +/obj/item/gun/projectile/automatic/assault_rifle/heltek_colony/on_update_icon() + ..() + if(ammo_magazine) + icon_state = "iccg_rifle" + wielded_item_state = "arifle-wielded" + else + icon_state = "iccg_rifle-empty" + wielded_item_state = "arifle-wielded-empty" + +/obj/item/gun/projectile/automatic/mr735_colony + name = "MR-735" + desc = "A cheap rifle for close quarters combat, with an auto-firing mode available. HelTek MR-735 is a standard rifle for ICCG Space-assault Forces, designed without a stock for easier storage and combat in closed spaces. Perfect weapon for some ship's crew." + icon = 'mods/_maps/farfleet/icons/obj/mr735.dmi' + icon_state = "nostockrifle" + item_state = "nostockrifle" + item_icons = list( + slot_r_hand_str = 'mods/_maps/farfleet/icons/mob/righthand.dmi', + slot_l_hand_str = 'mods/_maps/farfleet/icons/mob/lefthand.dmi', + ) + wielded_item_state = "nostockrifle_wielded" + force = 10 + caliber = CALIBER_RIFLE + origin_tech = list(TECH_COMBAT = 6, TECH_MATERIAL = 1, TECH_ESOTERIC = 5) + slot_flags = SLOT_BACK + load_method = MAGAZINE + magazine_type = /obj/item/ammo_magazine/rifle + allowed_magazines = /obj/item/ammo_magazine/rifle + bulk = GUN_BULK_RIFLE + mag_insert_sound = 'sound/weapons/guns/interaction/ltrifle_magin.ogg' + mag_remove_sound = 'sound/weapons/guns/interaction/ltrifle_magout.ogg' + + //Assault rifle, burst fire degrades quicker than SMG, worse one-handing penalty, slightly increased move delay + firemodes = list( + list(mode_name="semi auto", burst=1, fire_delay=null, one_hand_penalty=8, burst_accuracy=null, dispersion=null), + list(mode_name="2-round bursts", burst=2, fire_delay=null, one_hand_penalty=9, burst_accuracy=list(0,-1,-1), dispersion=list(0.0, 0.6, 1.0)), + list(mode_name="full auto", burst=1, fire_delay=1.7, burst_delay=1.3, one_hand_penalty=7, burst_accuracy=list(0,-1,-1), dispersion=list(1.3, 1.5, 1.7, 1.9, 2.2), autofire_enabled=1) + ) + +/obj/item/gun/projectile/automatic/mr735_colony/on_update_icon() + ..() + if(ammo_magazine) + icon_state = "nostockrifle" + wielded_item_state = "nostockrifle-wielded" + else + icon_state = "nostockrifle-empty" + wielded_item_state = "nostockrifle-wielded-empty" + +/obj/item/gun/projectile/automatic/nt41_colony + name = "NT41 submachine gun" + desc = "The NT41 Enforcer is a self-defense weapon made on bullpup system. Produced by NanoTrasen for it's Security Force. Looks cool and stylish, but sometimes too uncomfortably to run with it. Uses 5.7x28mm rounds." + icon_state = "nt41" + item_state = "nt41" + icon = 'packs/infinity/icons/obj/guns.dmi' + wielded_item_state = "nt41-wielded" + item_icons = list( + slot_r_hand_str = 'packs/infinity/icons/mob/onmob/righthand.dmi', + slot_l_hand_str = 'packs/infinity/icons/mob/onmob/lefthand.dmi', + ) + + caliber = CALIBER_PISTOL_FAST + origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 3) + slot_flags = SLOT_BELT + ammo_type = /obj/item/ammo_casing/nt28mm + load_method = MAGAZINE + magazine_type = /obj/item/ammo_magazine/n10mm + allowed_magazines = /obj/item/ammo_magazine/n10mm + screen_shake = 0.5 //SMG + + firemodes = list( + list(mode_name="semiauto", burst=1, fire_delay=0, one_hand_penalty=1, burst_accuracy=null, dispersion=null), + list(mode_name="2-round bursts", burst=2, fire_delay=null, one_hand_penalty=3, burst_accuracy=list(0,-1), dispersion=list(0.0, 0.8)), + list(mode_name="short bursts", burst=4, fire_delay=null, one_hand_penalty=4, burst_accuracy=list(0,-1,-1.5,-2), dispersion=list(0.6, 0.8, 1.0, 1.4)), + ) + + bulk = GUN_BULK_CARABINE + w_class = ITEM_SIZE_NORMAL + one_hand_penalty = 2 + +/obj/item/gun/projectile/automatic/nt41_colony/on_update_icon() + ..() + icon_state = (ammo_magazine)? "nt41" : "nt41-e" + +/obj/item/clothing/head/helmet/solgov_colony + accessories = list(/obj/item/clothing/accessory/helmet_cover/blue) + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_head_solgov_unathi.dmi' + ) + +/obj/item/clothing/head/helmet/solgov_colony/security + name = "security helmet" + desc = "A helmet with 'POLICE' printed on the back in silver lettering." + icon_state = "helmet_security" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + +/obj/item/clothing/head/helmet/solgov_colony/command + name = "command helmet" + desc = "A helmet with 'SOL CENTRAL GOVERNMENT' printed on the back in gold lettering." + icon_state = "helmet_command" + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + +/obj/item/clothing/head/helmet/solgov_colony/pilot + name = "pilot's helmet" + desc = "A pilot's helmet for operating the cockpit in style. For when you want to protect your noggin AND look stylish." + icon_state = "pilotgov" + accessories = null + +/obj/item/clothing/head/helmet/solgov_colony/pilot/fleet + name = "fleet pilot's helmet" + desc = "A pilot's helmet for operating the cockpit in style. This one is worn by members of the SCG Fleet." + icon = 'maps/torch/icons/obj/obj_head_solgov.dmi' + icon_state = "pilotfleet" + item_icons = list(slot_head_str = 'maps/torch/icons/mob/onmob_head_solgov.dmi') + accessories = null + +/obj/item/clothing/suit/armor/vest/solgov_colony + name = "\improper Sol Central Government armored vest" + desc = "A synthetic armor vest. This one is marked with the crest of the Sol Central Government." + icon_state = "solvest" + icon = 'maps/torch/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'maps/torch/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_suit_solgov_unathi.dmi' + ) + +/obj/item/clothing/suit/storage/vest/solgov_colony + name = "\improper Sol Central Government heavy armored vest" + desc = "A synthetic armor vest with PEACEKEEPER printed in distinctive blue lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "solwebvest" + icon = 'maps/torch/icons/obj/obj_suit_solgov.dmi' + item_icons = list(slot_wear_suit_str = 'maps/torch/icons/mob/onmob_suit_solgov.dmi') + sprite_sheets = list( + SPECIES_UNATHI = 'maps/torch/icons/mob/unathi/onmob_suit_solgov_unathi.dmi' + ) + +/obj/item/clothing/suit/storage/vest/solgov_colony/security + name = "master at arms heavy armored vest" + desc = "A synthetic armor vest with MASTER AT ARMS printed in silver lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "secwebvest" + +/obj/item/clothing/suit/storage/vest/solgov_colony/command + name = "command heavy armored vest" + desc = "A synthetic armor vest with SOL CENTRAL GOVERNMENT printed in gold lettering on the chest. This one has added webbing and ballistic plates." + icon_state = "comwebvest" + +/obj/item/clothing/suit/armor/pcarrier/medium/sol_colony + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches) + +/obj/item/clothing/suit/armor/pcarrier/troops_colony + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/storage/pouches) + +/obj/item/clothing/suit/armor/pcarrier/troops_colony/heavy + accessories = list(/obj/item/clothing/accessory/armor_plate/medium, /obj/item/clothing/accessory/arm_guards, /obj/item/clothing/accessory/leg_guards, /obj/item/clothing/accessory/storage/pouches) + +/obj/item/clothing/suit/armor/pcarrier/tactical_colony + accessories = list(/obj/item/clothing/accessory/armor_plate/tactical, /obj/item/clothing/accessory/arm_guards, /obj/item/clothing/accessory/leg_guards) diff --git a/mods/utility_items/code/living_adv.dm b/mods/utility_items/code/living_adv.dm new file mode 100644 index 0000000000000..76bffebbaf6ce --- /dev/null +++ b/mods/utility_items/code/living_adv.dm @@ -0,0 +1,9 @@ +//Здесь я добавил переменную и проверку для того чтоб с некоторыми мобами +//НИКОГДА не свапались, в случае нужды. +/mob/living + var/mob_never_swap = FALSE + +/mob/living/can_swap_with(mob/living/tmob) + if(tmob.mob_never_swap) + return 0 + .=..() diff --git a/mods/utility_items/code/reagents.dm b/mods/utility_items/code/reagents.dm new file mode 100644 index 0000000000000..8d98d70ce9cfa --- /dev/null +++ b/mods/utility_items/code/reagents.dm @@ -0,0 +1,660 @@ +#define IC_SMOKE_REAGENTS_MINIMUM_UNITS 10 +#define IC_REAGENTS_DRAW 0 +#define IC_REAGENTS_INJECT 1 +#define IC_HEATER_MODE_HEAT "heat" +#define IC_HEATER_MODE_COOL "cool" + +/obj/item/integrated_circuit/reagent + category_text = "Reagent" + unacidable = TRUE + cooldown_per_use = 10 + var/volume = 0 + +/obj/item/integrated_circuit/reagent/Initialize() + . = ..() + if(volume) + create_reagents(volume) + push_vol() + +/obj/item/integrated_circuit/reagent/proc/push_vol() + set_pin_data(IC_OUTPUT, 1, reagents.total_volume) + push_data() + +/obj/item/integrated_circuit/reagent/smoke + name = "smoke generator" + desc = "Unlike most electronics, creating smoke is completely intentional." + icon_state = "smoke" + extended_desc = "This smoke generator creates clouds of smoke on command. It can also hold liquids inside, which will go \ + into the smoke clouds when activated. The reagents are consumed when the smoke is made." + ext_cooldown = 1 + atom_flags = ATOM_FLAG_OPEN_CONTAINER + volume = 100 + + complexity = 20 + cooldown_per_use = 1 SECONDS + inputs = list() + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "self reference" = IC_PINTYPE_REF + ) + activators = list( + "create smoke" = IC_PINTYPE_PULSE_IN, + "on smoked" = IC_PINTYPE_PULSE_OUT, + "push ref" = IC_PINTYPE_PULSE_IN + ) + spawn_flags = IC_SPAWN_RESEARCH + power_draw_per_use = 20 + var/smoke_radius = 5 + var/notified = FALSE + +/obj/item/integrated_circuit/reagent/smoke/on_reagent_change() + push_vol() + +/obj/item/integrated_circuit/reagent/smoke/do_work(ord) + switch(ord) + if(1) + if(!reagents || (reagents.total_volume < IC_SMOKE_REAGENTS_MINIMUM_UNITS)) + return + var/location = get_turf(src) + var/datum/effect/smoke_spread/chem/S = new + S.attach(location) + playsound(location, 'sound/effects/smoke.ogg', 50, 1, -3) + if(S) + S.set_up(reagents, smoke_radius, 0, location) + if(!notified) + notified = TRUE + S.start() + reagents.clear_reagents() + activate_pin(2) + if(3) + set_pin_data(IC_OUTPUT, 2, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/injector + name = "integrated hypo-injector" + desc = "This scary looking thing is able to pump liquids into, or suck liquids out of, whatever it's pointed at." + icon_state = "injector" + extended_desc = "This autoinjector can push up to 30 units of reagents into another container or someone else outside of the machine. The target \ + must be adjacent to the machine, and if it is a person who is not carrying it in their pockets or belt, they cannot be wearing thick clothing. Negative given amounts makes the injector suck out reagents instead." + + atom_flags = ATOM_FLAG_OPEN_CONTAINER + volume = 30 + + complexity = 20 + cooldown_per_use = 6 SECONDS + inputs = list( + "target" = IC_PINTYPE_REF, + "injection amount" = IC_PINTYPE_NUMBER + ) + inputs_default = list( + "2" = 5 + ) + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "self reference" = IC_PINTYPE_REF + ) + activators = list( + "inject" = IC_PINTYPE_PULSE_IN, + "on injected" = IC_PINTYPE_PULSE_OUT, + "on fail" = IC_PINTYPE_PULSE_OUT, + "push ref" = IC_PINTYPE_PULSE_IN + + ) + spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH + power_draw_per_use = 15 + var/direction_mode = IC_REAGENTS_INJECT + var/transfer_amount = 10 + var/busy = FALSE + +/obj/item/integrated_circuit/reagent/injector/on_reagent_change(changetype) + push_vol() + +/obj/item/integrated_circuit/reagent/injector/on_data_written() + var/new_amount = get_pin_data(IC_INPUT, 2) + if(new_amount < 0) + new_amount = -new_amount + direction_mode = IC_REAGENTS_DRAW + else + direction_mode = IC_REAGENTS_INJECT + if(isnum(new_amount)) + new_amount = clamp(new_amount, 0, volume) + transfer_amount = new_amount + + +/obj/item/integrated_circuit/reagent/injector/do_work(ord) + switch(ord) + if(1) + inject() + if(4) + set_pin_data(IC_OUTPUT, 2, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/injector/proc/target_nearby(weakref/target) + var/mob/living/L = target.resolve() + if(!L || get_dist(src,L) > 1) + return + return L + +/obj/item/integrated_circuit/reagent/injector/proc/inject_after(weakref/target) + busy = FALSE + var/mob/living/L = target_nearby(target) + if(!L) + activate_pin(3) + return + var/atom/movable/acting_object = get_object() + log_admin("[key_name(L)] was successfully injected with " + reagents.get_reagents() + " by \the [acting_object]") + L.visible_message(SPAN_WARNING("\The [acting_object] injects [L] with its needle!"), \ + SPAN_WARNING("\The [acting_object] injects you with its needle!")) + reagents.trans_to_mob(L, transfer_amount, CHEM_BLOOD) + activate_pin(2) + +/obj/item/integrated_circuit/reagent/injector/proc/draw_after(weakref/target, amount) + busy = FALSE + var/mob/living/carbon/C = target_nearby(target) + if(!C) + activate_pin(3) + return + var/atom/movable/acting_object = get_object() + + C.visible_message(SPAN_WARNING("\The [acting_object] draws blood from \the [C]"), + SPAN_WARNING("\The [acting_object] draws blood from you.") + ) + C.take_blood(src, amount) + activate_pin(2) + + +/obj/item/integrated_circuit/reagent/injector/proc/inject() + set waitfor = FALSE // Don't sleep in a proc that is called by a processor without this set, otherwise it'll delay the entire thing + var/atom/movable/AM = get_pin_data_as_type(IC_INPUT, 1, /atom/movable) + var/atom/movable/acting_object = get_object() + + if(busy || !check_target(AM)) + activate_pin(3) + return + + if(!AM.reagents) + activate_pin(3) + return + + if(direction_mode == IC_REAGENTS_INJECT) + if(!reagents.total_volume || !AM.reagents || !AM.reagents.get_free_space()) + activate_pin(3) + return + + if(isliving(AM)) + var/mob/living/L = AM + var/injection_status = L.can_inject(null, BP_CHEST) + if(L.isEquipped(assembly, slot_l_hand)) + injection_status = L.can_inject(null, BP_L_HAND) + if(L.isEquipped(assembly, slot_r_hand)) + injection_status = L.can_inject(null, BP_R_HAND) + if(L.isEquipped(assembly, slot_l_store) || L.isEquipped(assembly, slot_r_store) || L.isEquipped(assembly, slot_belt)) + injection_status = L.can_inject(null, BP_CHEST, ignore_thick_clothing = TRUE) //The injector has been put under the thick layer + log_world("Injection status? [injection_status]") + var/injection_delay = 3 SECONDS + if(injection_status == INJECTION_PORT) + injection_delay += INJECTION_PORT_DELAY + if(!injection_status) + activate_pin(3) + return + //Always log attemped injections for admins + log_admin("[key_name(L)] is getting injected with " + reagents.get_reagents() + " by \the [acting_object]") + L.visible_message(SPAN_DANGER("\The [acting_object] is trying to inject [L]!"), \ + SPAN_DANGER("\The [acting_object] is trying to inject you!")) + busy = TRUE + addtimer(new Callback(src, .proc/inject_after, weakref(L)), injection_delay) + return + else + if(!AM.is_open_container()) + activate_pin(3) + return + + + reagents.trans_to(AM, transfer_amount) + + else if(direction_mode == IC_REAGENTS_DRAW) + if(reagents.total_volume >= reagents.maximum_volume) + acting_object.visible_message("\The [acting_object] tries to draw from [AM], but the injector is full.") + activate_pin(3) + return + + var/tramount = abs(transfer_amount) + + if(istype(AM, /mob/living/carbon)) + var/mob/living/carbon/C = AM + var/injection_status = C.can_inject(null, BP_CHEST) + if(C.isEquipped(assembly, slot_l_hand)) + injection_status = C.can_inject(null, BP_L_HAND) + if(C.isEquipped(assembly, slot_r_hand)) + injection_status = C.can_inject(null, BP_R_HAND) + if(C.isEquipped(assembly, slot_l_store) || C.isEquipped(assembly, slot_r_store) || C.isEquipped(assembly, slot_belt)) + injection_status = C.can_inject(null, BP_CHEST, ignore_thick_clothing = TRUE) + var/injection_delay = 3 SECONDS + if(injection_status == INJECTION_PORT) + injection_delay += INJECTION_PORT_DELAY + if(istype(C, /mob/living/carbon/slime) || !C.dna || !injection_status) + activate_pin(3) + return + C.visible_message(SPAN_DANGER("\The [acting_object] is trying to take a blood sample from [C]!"), \ + SPAN_DANGER("\The [acting_object] is trying to take a blood sample from you!")) + busy = TRUE + addtimer(new Callback(src, .proc/draw_after, weakref(C), tramount), injection_delay) + return + + else + if(!AM.reagents.total_volume) + acting_object.visible_message(SPAN_NOTICE("\The [acting_object] tries to draw from [AM], but it is empty!")) + activate_pin(3) + return + + if(!AM.is_open_container()) + activate_pin(3) + return + tramount = min(tramount, AM.reagents.total_volume) + AM.reagents.trans_to(src, tramount) + activate_pin(2) + + + +/obj/item/integrated_circuit/reagent/pump + name = "reagent pump" + desc = "Moves liquids safely inside a machine, or even nearby it." + icon_state = "reagent_pump" + extended_desc = "This is a pump which will move liquids from the source ref to the target ref. The third pin determines \ + how much liquid is moved per pulse, between 0 and 50. The pump can move reagents to any open container inside the machine, or \ + outside the machine if it is adjacent to the machine." + + complexity = 8 + inputs = list("source" = IC_PINTYPE_REF, "target" = IC_PINTYPE_REF, "injection amount" = IC_PINTYPE_NUMBER) + inputs_default = list("3" = 5) + outputs = list() + activators = list("transfer reagents" = IC_PINTYPE_PULSE_IN, "on transfer" = IC_PINTYPE_PULSE_OUT) + spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH + var/transfer_amount = 10 + var/direction_mode = IC_REAGENTS_INJECT + power_draw_per_use = 10 + +/obj/item/integrated_circuit/reagent/pump/on_data_written() + var/new_amount = get_pin_data(IC_INPUT, 3) + if(new_amount < 0) + new_amount = -new_amount + direction_mode = IC_REAGENTS_DRAW + else + direction_mode = IC_REAGENTS_INJECT + if(isnum(new_amount)) + new_amount = clamp(new_amount, 0, 50) + transfer_amount = new_amount + +/obj/item/integrated_circuit/reagent/pump/do_work() + var/atom/movable/source = get_pin_data_as_type(IC_INPUT, 1, /atom/movable) + var/atom/movable/target = get_pin_data_as_type(IC_INPUT, 2, /atom/movable) + + // Check for invalid input. + if(!check_target(source) || !check_target(target)) + return + + // If the pump is pumping backwards, swap target and source. + if(!direction_mode) + var/temp_source = source + source = target + target = temp_source + + if(!source.reagents) + return + + if(!source.is_open_container()) + return + + source.reagents.trans_to(target, transfer_amount) + activate_pin(2) + +/obj/item/integrated_circuit/reagent/storage + cooldown_per_use = 1 + name = "reagent storage" + desc = "Stores liquid inside the device away from electrical components. It can store up to 60u." + icon_state = "reagent_storage" + extended_desc = "This is effectively an internal beaker." + + atom_flags = ATOM_FLAG_OPEN_CONTAINER + volume = 60 + + complexity = 4 + inputs = list() + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "self reference" = IC_PINTYPE_REF + ) + activators = list("push ref" = IC_PINTYPE_PULSE_IN) + spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH + + + +/obj/item/integrated_circuit/reagent/storage/do_work() + set_pin_data(IC_OUTPUT, 2, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/storage/on_reagent_change(changetype) + push_vol() + +/obj/item/integrated_circuit/reagent/storage/big + name = "big reagent storage" + icon_state = "reagent_storage_big" + desc = "Stores liquid inside the device away from electrical components. Can store up to 180u." + + volume = 180 + + complexity = 16 + spawn_flags = IC_SPAWN_RESEARCH + +/obj/item/integrated_circuit/reagent/storage/cryo + name = "cryo reagent storage" + desc = "Stores liquid inside the device away from electrical components. It can store up to 60u. This will also prevent reactions." + icon_state = "reagent_storage_cryo" + extended_desc = "This is effectively an internal cryo beaker." + + atom_flags = ATOM_FLAG_NO_TEMP_CHANGE | ATOM_FLAG_OPEN_CONTAINER | ATOM_FLAG_NO_REACT + complexity = 8 + spawn_flags = IC_SPAWN_RESEARCH + +/obj/item/integrated_circuit/reagent/storage/grinder + name = "reagent grinder" + desc = "This is a reagent grinder. It accepts a ref to something, and refines it into reagents. It cannot grind materials. It can store up to 100u." + icon_state = "blender" + extended_desc = "" + inputs = list( + "target" = IC_PINTYPE_REF, + ) + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "self reference" = IC_PINTYPE_REF + ) + activators = list( + "grind" = IC_PINTYPE_PULSE_IN, + "on grind" = IC_PINTYPE_PULSE_OUT, + "on fail" = IC_PINTYPE_PULSE_OUT, + "push ref" = IC_PINTYPE_PULSE_IN + ) + volume = 100 + power_draw_per_use = 150 + complexity = 16 + spawn_flags = IC_SPAWN_RESEARCH + + +/obj/item/integrated_circuit/reagent/storage/grinder/do_work(ord) + switch(ord) + if(1) + grind() + if(4) + set_pin_data(IC_OUTPUT, 2, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/storage/grinder/proc/grind() + if(reagents.total_volume >= reagents.maximum_volume) + activate_pin(3) + return FALSE + var/obj/item/I = get_pin_data_as_type(IC_INPUT, 1, /obj/item) + + if(isnull(I)) + return FALSE + + if(!I.reagents || !I.reagents.total_volume) + activate_pin(3) + return FALSE + + I.reagents.trans_to(src,I.reagents.total_volume) + if(!I.reagents.total_volume) + qdel(I) + + activate_pin(2) + return FALSE + + + +/obj/item/integrated_circuit/reagent/storage/scan + name = "reagent scanner" + desc = "Stores liquid inside the device away from electrical components. It can store up to 60u. On pulse this beaker will send list of contained reagents." + icon_state = "reagent_scan" + extended_desc = "Mostly useful for filtering reagents." + + complexity = 8 + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "self reference" = IC_PINTYPE_REF, + "list of reagents" = IC_PINTYPE_LIST + ) + activators = list( + "scan" = IC_PINTYPE_PULSE_IN, + "push ref" = IC_PINTYPE_PULSE_IN + ) + spawn_flags = IC_SPAWN_RESEARCH + +/obj/item/integrated_circuit/reagent/storage/scan/do_work(ord) + switch(ord) + if(1) + var/cont[0] + for(var/datum/reagent/RE in reagents.reagent_list) + cont += RE.name + set_pin_data(IC_OUTPUT, 3, cont) + push_data() + if(2) + set_pin_data(IC_OUTPUT, 2, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/filter + name = "reagent filter" + desc = "Filters liquids by list of desired or unwanted reagents." + icon_state = "reagent_filter" + extended_desc = "This is a filter which will move liquids from the source to its target. \ + If the amount in the fourth pin is positive, it will move all reagents except those in the unwanted list. \ + If the amount in the fourth pin is negative, it will only move the reagents in the wanted list. \ + The third pin determines how many reagents are moved per pulse, between 0 and 50. Amount is given for each separate reagent." + + complexity = 8 + inputs = list( + "source" = IC_PINTYPE_REF, + "target" = IC_PINTYPE_REF, + "injection amount" = IC_PINTYPE_NUMBER, + "list of reagents" = IC_PINTYPE_LIST + ) + inputs_default = list( + "3" = 5 + ) + outputs = list() + activators = list( + "transfer reagents" = IC_PINTYPE_PULSE_IN, + "on transfer" = IC_PINTYPE_PULSE_OUT + ) + spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH + var/transfer_amount = 10 + var/direction_mode = IC_REAGENTS_INJECT + power_draw_per_use = 10 + +/obj/item/integrated_circuit/reagent/filter/on_data_written() + var/new_amount = get_pin_data(IC_INPUT, 3) + if(new_amount < 0) + new_amount = -new_amount + direction_mode = IC_REAGENTS_DRAW + else + direction_mode = IC_REAGENTS_INJECT + if(isnum(new_amount)) + new_amount = clamp(new_amount, 0, 50) + transfer_amount = new_amount + +/obj/item/integrated_circuit/reagent/filter/do_work() + var/atom/movable/source = get_pin_data_as_type(IC_INPUT, 1, /atom/movable) + var/atom/movable/target = get_pin_data_as_type(IC_INPUT, 2, /atom/movable) + var/list/demand = get_pin_data(IC_INPUT, 4) + + // Check for invalid input. + if(!check_target(source) || !check_target(target)) + return + + if(!source.reagents || !target.reagents) + return + + if(!source.is_open_container() || istype(source, /mob)) + return + + if(target.reagents.maximum_volume - target.reagents.total_volume <= 0) + return + + for(var/datum/reagent/G in source.reagents.reagent_list) + if(!direction_mode) + if(G.name in demand) + source.reagents.trans_type_to(target, G.type, transfer_amount) + else + if(!(G.name in demand)) + source.reagents.trans_type_to(target, G.type, transfer_amount) + activate_pin(2) + push_data() + +// This is an input circuit because attackby_react is only called for input circuits +/obj/item/integrated_circuit/input/funnel + category_text = "Reagent" + name = "reagent funnel" + desc = "A funnel with a small pump that lets you refill an internal reagent storage." + icon_state = "reagent_funnel" + + inputs = list( + "target" = IC_PINTYPE_REF + ) + activators = list( + "on transfer" = IC_PINTYPE_PULSE_OUT + ) + + unacidable = TRUE + spawn_flags = IC_SPAWN_DEFAULT|IC_SPAWN_RESEARCH + complexity = 4 + power_draw_per_use = 5 + +/obj/item/integrated_circuit/input/funnel/attackby_react(obj/item/I, mob/living/user, intent) + var/atom/movable/target = get_pin_data_as_type(IC_INPUT, 1, /atom/movable) + var/obj/item/reagent_containers/container = I + + if(!check_target(target)) + return FALSE + + if(!istype(container)) + return FALSE + + // Messages are provided by standard_pour_into + if(container.standard_pour_into(user, target)) + activate_pin(1) + return TRUE + + return FALSE + +// Most of this is just chemical heater code refitted for ICs +/obj/item/integrated_circuit/reagent/temp + inputs = list( + "target temperature" = IC_PINTYPE_NUMBER + ) + outputs = list( + "volume used" = IC_PINTYPE_NUMBER, + "temperature" = IC_PINTYPE_NUMBER, + "enabled" = IC_PINTYPE_BOOLEAN, + "self reference" = IC_PINTYPE_REF + ) + activators = list( + "toggle" = IC_PINTYPE_PULSE_IN, + "on toggle" = IC_PINTYPE_PULSE_OUT, + "push ref" = IC_PINTYPE_PULSE_IN + ) + + atom_flags = ATOM_FLAG_OPEN_CONTAINER + complexity = 12 + cooldown_per_use = 1 + power_draw_per_use = 50 + volume = 30 + + var/active = 0 + var/min_temp = 40 CELSIUS + var/max_temp = 200 CELSIUS + var/heating_power = 5 + var/target_temp = T20C + var/last_temperature = 0 + var/mode = IC_HEATER_MODE_HEAT + +/obj/item/integrated_circuit/reagent/temp/Initialize() + . = ..() + + set_pin_data(IC_OUTPUT, 2, temperature - T0C) + push_data() + +/obj/item/integrated_circuit/reagent/temp/do_work(ord) + switch(ord) + if(1) + target_temp = get_pin_data(IC_INPUT, 1) + if(isnull(target_temp)) + return + + // +/- T0C to convert to/from kelvin + target_temp = clamp(target_temp + T0C, min_temp, max_temp) + set_pin_data(IC_INPUT, 1, target_temp - T0C) + + active = !active + set_pin_data(IC_OUTPUT, 3, active) + push_data() + activate_pin(2) + + // begin processing temperature + if(active) + QUEUE_TEMPERATURE_ATOMS(src) + if(3) + set_pin_data(IC_OUTPUT, 4, weakref(src)) + push_data() + +/obj/item/integrated_circuit/reagent/temp/on_reagent_change() + push_vol() + +/obj/item/integrated_circuit/reagent/temp/power_fail() + active = 0 + +/obj/item/integrated_circuit/reagent/temp/ProcessAtomTemperature() + if(!active) + return PROCESS_KILL + + last_temperature = temperature + + if(mode == IC_HEATER_MODE_HEAT && temperature < target_temp) + temperature = min(temperature + heating_power, max_temp) + else if(mode == IC_HEATER_MODE_COOL && temperature > target_temp) + temperature = max(temperature - heating_power, min_temp) + + if(temperature != last_temperature) + // Lost power + if(!check_power()) + power_fail() + return ..() + + set_pin_data(IC_OUTPUT, 2, temperature - T0C) + push_data() + + return TRUE + +/obj/item/integrated_circuit/reagent/temp/heater + name = "reagent heater" + desc = "A small reagent container capable of heating reagents. It can hold up to 30u." + icon_state = "reagent_heater" + extended_desc = "This is effectively an internal beaker. It has a heating coil wrapped around it, which allows it to heat the contents of the beaker. Temperature is given in celsius." + + spawn_flags = IC_SPAWN_RESEARCH + +/obj/item/integrated_circuit/reagent/temp/cooler + name = "reagent cooler" + desc = "A small reagent container capable of cooling reagents. It can hold up to 30u." + icon_state = "reagent_cooler" + extended_desc = "This is effectively an internal beaker. It has a cooling mechanism wrapped around it, which allows it to cool the contents of the beaker. Temperature is given in celsius." + + spawn_flags = IC_SPAWN_RESEARCH + + min_temp = -80 CELSIUS + max_temp = 30 CELSIUS + mode = IC_HEATER_MODE_COOL + +//undefs + +#undef IC_HEATER_MODE_HEAT +#undef IC_HEATER_MODE_COOL +#undef IC_REAGENTS_DRAW +#undef IC_REAGENTS_INJECT diff --git a/mods/utility_items/icons/munitions.dmi b/mods/utility_items/icons/munitions.dmi new file mode 100644 index 0000000000000..3fe4261ea6660 Binary files /dev/null and b/mods/utility_items/icons/munitions.dmi differ diff --git a/packs/infinity/__defines/guns.dm b/packs/infinity/__defines/guns.dm index 77fdc3fa1ea90..e7a1e1e88f969 100644 --- a/packs/infinity/__defines/guns.dm +++ b/packs/infinity/__defines/guns.dm @@ -1,11 +1,3 @@ -#define GUN_BULK_PISTOL 1 -#define GUN_BULK_REVOLVER 2 -#define GUN_BULK_SMG 3 -#define GUN_BULK_CARABINE 4 -//#define GUN_BULK_RIFLE 5 определено в оригинале ~bear1ake -#define GUN_BULK_SNIPER_RIFLE 6 -#define GUN_BULK_MACHINEGUN 7 - #define CALIBER_PISTOL_TINY "5.6mmP" //#define CALIBER_PISTOL "10mm" //#define CALIBER_PISTOL_FAST "5.7mmP" diff --git a/packs/infinity/_pack.dm b/packs/infinity/_pack.dm index db292e4dff234..f1bbae16d6c99 100644 --- a/packs/infinity/_pack.dm +++ b/packs/infinity/_pack.dm @@ -62,7 +62,6 @@ #include "structures\holoplants.dm" #include "structures\l3closets.dm" #include "structures\ladder_mobile.dm" -#include "structures\signs.dm" #include "structures\table_presets.dm" #endif diff --git a/packs/infinity/items/projectile/guns/automatic.dm b/packs/infinity/items/projectile/guns/automatic.dm index 3e5eab69cf8ed..330818e32c6e2 100644 --- a/packs/infinity/items/projectile/guns/automatic.dm +++ b/packs/infinity/items/projectile/guns/automatic.dm @@ -1,39 +1,3 @@ -/obj/item/gun/projectile/automatic/nt41 - name = "NT41 submachine gun" - desc = "The NT41 Enforcer is a self-defense weapon made on bullpup system. Produced by NanoTrasen for it's Security Force. Looks cool and stylish, but sometimes too uncomfortably to run with it. Uses 5.7x28mm rounds." - icon_state = "nt41" - item_state = "nt41" - icon = 'packs/infinity/icons/obj/guns.dmi' - wielded_item_state = "nt41-wielded" - item_icons = list( - slot_r_hand_str = 'packs/infinity/icons/mob/onmob/righthand.dmi', - slot_l_hand_str = 'packs/infinity/icons/mob/onmob/lefthand.dmi', - ) - - caliber = CALIBER_PISTOL_FAST - origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 3) - slot_flags = SLOT_BELT - ammo_type = /obj/item/ammo_casing/nt28mm - load_method = MAGAZINE - magazine_type = /obj/item/ammo_magazine/n10mm - allowed_magazines = /obj/item/ammo_magazine/n10mm - screen_shake = 0.5 //SMG - - firemodes = list( - list(mode_name="semiauto", burst=1, fire_delay=0, one_hand_penalty=1, burst_accuracy=null, dispersion=null), - list(mode_name="2-round bursts", burst=2, fire_delay=null, one_hand_penalty=3, burst_accuracy=list(0,-1), dispersion=list(0.0, 0.8)), - list(mode_name="short bursts", burst=4, fire_delay=null, one_hand_penalty=4, burst_accuracy=list(0,-1,-1.5,-2), dispersion=list(0.6, 0.8, 1.0, 1.4)), - ) - - bulk = GUN_BULK_CARABINE - w_class = ITEM_SIZE_NORMAL - one_hand_penalty = 2 - -/obj/item/gun/projectile/automatic/nt41/on_update_icon() - ..() - icon_state = (ammo_magazine)? "nt41" : "nt41-e" - - /obj/item/gun/projectile/automatic/bullpup_rifle/light firemodes = list( list( diff --git a/sound/effects/inhale.ogg b/sound/effects/inhale.ogg new file mode 100644 index 0000000000000..a55f4d88d6e50 Binary files /dev/null and b/sound/effects/inhale.ogg differ